This the change log. As raw as it is, it is what it is.
There a host of changes, new capabilities and fixes. This is a big release.
Evan
Read each row as follows:
1. The first number is a simple index number.
2. Fix or New
3. Scope/Impact area
4. Description, if with [] where [nnn] is the SVN commit number, No [] means not commited yet. We have to do this as many parts of the solution need to go out as a complete release,
Read each row as follows:
1. The first number is a simple index number.
2. Fix or New
3. Scope/Impact area
4. Description, if with [] where [nnn] is the SVN commit number, No [] means not commited yet. We have to do this as many parts of the solution need to go out as a complete release,
690FixDATUpdatedPIC10f320/PIC10f322andPIC10f220/PIC10f222fortheCPUinternaloscline[973,974]691NewRWORDSFormalreleaseofReservedMethodsasreservedwords.txt[975,976]692FixGSToolsRevisedmakeHEX.battoimprovecompilationperformancebyremovalATTRIBandchangedtoDIRsearchtodeterminefilesofinterest.[]693FixPULSEOUTCorrectedPULSEOUTpulsewidthtocorrectextraclockcycle.Existingprogramswillnowhavethecorrectpulsehoweverprogramthathavespecifictimingusingpulseoutmayneedcorrecting.694NewPPSTOOLUpdatedtorecogniselatestxmlfilesfromMicrochipv0.0.5.29andMemoryusageandperformanceimprovements[29]695QAALLQualityimprovementstolibraries[987,981]696NewSPIRAMNewSPIRAMlibrary[986,982]697NewGLCDNewUC1601library[987]698NewGLCDNewADAFRUITST7735Rx160x80GLClibrary[983]699NewGLCDNewePaperlibrary[983]700FixGLCDUpdatedallGLCDtosupportGLCDFntDefaultHeight[][983]-CorrectedDimGLCDPixelCountAsLonginFilledBoxmethod,wasaWord.Awordcanoverflow.701FixUSARTAddednewoverloadedmethodforHSerSend[980]-AddednewhandlerinHSerSendforUSARTmoduleswiththeTXREGregistertoimproveperformance-AddedUSARTHasDataSettoworkaroundtheevaluationissueinIfUSARTHasDataThenissue-Revised#ifdef Var(TXREG) section of HSerReceive methods to ensure that previous data has been transmitted-Revisedinittoimprovedocumentation702FixLCDImprovedMethodfortoggling"E"insubLCDNormalWriteByte[979]-AppliesonlytoIC2/HI2C(LCD_I0,12)-ImprovesLCDI2Cperformanceby~25%-RemovedinaccuratespeedcommentsforLCD_I010,12-ImproveddelayinLCDHome703NewHWSPINewMasterSSPADDModeforPICtosupportfastmodeSPI[978]704FixHWI2C(2)Functionalchange:Improvedtohandleoutofbandfrequencyselectionbaseduponchipfrequency,correctedSSPADDmask[977]
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The next release has a major change with respect to the setting up of the oscillator when NOT using the internal oscillator.
Some background
We need enable the user to use other internal oscillators like LFINT, and, to expose the oscillator type (with frequency) and class to the user. So, the users know what is going on.
So we needed to
1. A method to enable setting of alternative internal oscillators.
1. NOT set the Oscillator when using a non-internal Oscillator
Changes
A constant so we can change the setup (within initsys() ) to handle non-internal and other clock sources specifically LFINT (which is an internal Oscillator).
A constant that specifies the oscillator type. We need to be able to determine what is INT (as is today), what is external – so, we can set the internal clock sources, and, if external let the use the user do it as we would be guessing.
A consistent method of exposing the selected oscillator and frequency for reporting to the user, with the frequency.
A method of automatically selecting internal SOSC when the selected 0.03268 is the operating frequency. Therefore the compiler needs to set the config appropriately.
Using the latest compiler.
What does the user now see?
In the IDE the following are examples. Note the clock source, the frequency and more key information.
Compiler Version (YYYY-MM-DD): 0.98.<<>> 2020-01-28 (Windows 32 bit) Program Memory: 81/65536 words (0.12%) RAM: 0/2048 bytes (0.0%) OSC: HFINTOSC_1MHZ, 64 (Internal oscillator) Chip: 18LF67K40
Compiler Version (YYYY-MM-DD): 0.98.<<>> 2020-01-28 (Windows 32 bit) Program Memory: 59/65536 words (0.09%) RAM: 0/2048 bytes (0.0%) OSC: Default Oscillator Source, 0.031 (External oscillator, clock source must be connected to PIC oscillator pins) Chip: 18LF67K40
Compiler Version (YYYY-MM-DD): 0.98.<<>> 2020-01-28 (Windows 32 bit) Program Memory: 59/65536 words (0.09%) RAM: 0/2048 bytes (0.0%) OSC: LFINT, 0.031 (Internal oscillator) Chip: 18LF67K40
New constants ChipUsingIntOsc and ChipOsc
Two new chip specific constants now exist.
ChipUsingIntOsc
ChipOsc
ChipUsingIntOsc will exist if the internal oscillator is selected by the compiler. ChipOsc constant gives the actual oscillator chosen, which matches what is displayed during compilation. ChipOsc is the user specified or compiler select oscillator, Use ChipOsc the same as the constant ChipName. ChipOsc matches whatever is shown for the Osc in verbose mode, so for example when the 16F88 is configured for internal, it uses INTRC_IO in the assembly, and this tests true:
#ifdef ChipOsc INTRC_IO….…..#endif
Usage
Users we be able to use #if ChipUsingIntOsc in the source code to handle internal oscillator in initsys, and the ChipOSC constant as a fallback.
Note: If there is some new type of internal oscillator that the ConfigValueMatch() routine in gcbasic.bas does not correctly recognise as an internal oscillator we will have to update the compiler
The following changes have been made uses these new constants.
When a user specifies a frequency of 0.031, at the moment, ONLY this frequency, and the chip has an internal LFINTOSC the compiler will automatically setup the clock.
When a user specifies a frequency that is NOT an internal chip frequency the compiler will NO LONGER setup the oscillator registers. The user will no longer be confused by the compiler trying to setup the internal oscillator.
When a user specifies a clock source the constants will match the selected clock source
Prerequisites
To make this all work.... you will need a compiler version 0.98.07 or greater AND new dat dated 30 Jan 2020 or later.
Question
Should we add a new user constant to stop ANY setup of the oscillator registers? Leaving the oscillator register setup totally to the user.
Last edit: Anobium 2020-01-30
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Edited... I made a bit of error.. not SOSC but LFINTOSC. Correct below.
During testing I found specifying the LFINTOSC clock frequency as non-intutive... getting 0.031 correct is hard. I had even incorrectly typed in these posts.
So, we may (not this is passive) add another feature where you can specify 31k as the frequency to aid usage. So, the following could be implemented.
#chip 16f18326, 31k
Last edit: Anobium 2020-01-31
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Should we add a new user constant to stop ANY setup of the oscillator registers? Leaving the oscillator register setup totally to the user.
Not a bad Idea, Something like..
#Option UserOSC
As it is not feasible for the compiler to be able to preempt or handle all of the possible clock options having an override will let the user manually configure the Internal or External OSC to allow fringe cases, accurate timing or synchronised clock situations.
GCBASIC’s ability to use Direct register access will allow the user to setup the Internal and External options to suit their own application or hardware specification.
Cheers
Chris
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Frank has updated the IDE to support the two new frequency as constants. Which means these specific chip frequences will be shown in black and not as numerical values.
This changes help you get these constants correct.
#chip 16f18326, 32.768k
#chip 16f18326, 31k
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
We are close to the release. And, I need folks to test, compile code and try to use the new release.
So, if you are a Windows user - please ping me. You need to be willing to compile existing projects and test again what you know works. We need to be assured that we have no broken anything. We have 1000s of static and closed loop feedback tests (we know what the output should be with the static tests) but there is nothing like users testing the code.
In the past I emailed many of you. Not this time.
Please offer your help - your level of skill is not critical - we need you compile your code and to tell us that all is good.
Cheers
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
USB Library updated. Demonstration code will need to fixed.
WIP
12
New
Support for AVRrc chips. With Hugh to complete development to handle systempN variables. AVRrc chips are: ATtiny10,ATtiny20,ATtiny4,ATtiny40.ATtiny5,ATtiny9
WIP
13
Fix
AVR simple numeric maths fails when constant is first part of the calcuation
Complete
Last edit: Anobium 2020-08-07
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
704FixHWI2C(2)Functionalchange:Improvedtohandleoutofbandfrequencyselectionbaseduponchipfrequency,correctedSSPADDmask[977,1012]705NewCompilerAddedsettingofChipOscandChipUsingIntOscconstantsbasedonoscillatorinuse(PIConly)[988]706FixCompilerFixedbuginparsingofbinaryliteralsstartingwith0bwhenattheverystartofaline[988]707NewLanguageUpdatedmessage.dat[989]708NewSYSTEMUpdatedtochangethesetup(withininitsys())tohandlenon-internalandotherclocksourcesspecificallyLFINT(whichisaninternalOscillator).AutomaticallysetsinternalLFINTwhentheselected0.031istheoperatingfrequency.Thereforethecompilerneedstosettheconfigappropriately[990,993,1004,1003,1002,1001,1000,999,998,997,995,1077]709NewCompilerUpdatedtosupportLFINTOSCvia"32.768K"and"31K"and125,250kand500kreplacingforfrequency[991,992,1007,996,1010]CompilerissesawarningwhenanunknownxxKisspecified.710NewPPSToolUpdatedtocaterforK42warningmessages.[30,31]Also,updatedtoincludeamethodtoautomaticallydownloadandupdatetheXMLfilesfromMicrochip-butyouneedatleast.netframework4.5forittowork.If4.0isashighasyoucango(i.e.windowsXP)itstillworksasbeforesodon't worry XP users.711NewDATAddedLFINTvaluecalledLFINTOSCClockSourceRegisterValue(sourcedfromCSVfile)forinternalOSCandcorrectHelpentries[994,1005]Resolved16f15313familychipswithincongruousdataentries.712NewIDEHelperlxlfilenowsupportsthefollowingasconstantsintheIDE.31kand32.768k[]713FixUSE.INIUpdatedUSE.INICorrectedtypoinAVR_Chips_Using_PK2.Replaced"Filename"with%Filename%Also,changedPK+toPICKIT+indescriptionfield.714NewPPSToolUpdatedtphandleXMLfilesavailable(v1.79.0).[31]715NewCompilerImplementationreservedwordslistforGOTO.RemovedEND.[1006,1018]716FixCompilerResolvedbugwithvariablesthatstartwithReturnlikeReturnValue[1008]717FixSWI2CAddedLEFTtorotateI2CByteleftonline421toexplicitlystaterotation[1011].718NewCompilerAdded"XINST"tothedefaultASM.UsinganalternativelikeMPLABIDEexplicitly'set'theXINSTasitwasnotspecified.AddingXINST=OFFresolvesforthefuture.[1014]719FixGLCDILI9341andILI9340.CorrectedtheINITtohandleDIport[1015]720FixDATLargememoryQ10andK42nowhaveavalidDATfile.[1016]AllQ10havedebugbitremovedAllupdatedinformationlanguage721FixSystemRemovalofpersonalcomments[1017]722FixCompilerAddedCPD=OFFasadefaultfor18F[1019]723FixCompilerFixedtoforTABLEcreationerrorwherethetabledatawascorruptedwhenhexdatawasdefinedlike0x4B'comment or -0x3B'comment.ThetrailingBwasbeingpickedupasBinarydata.[1020,1025]724NewCompilerSupportfor//and/*BLOCKCOMMENTS*/[1021,1022]725NewIDESupportfor//and/*BLOCKCOMMENTS*/inIDE(?s)/\*.*?(\*/|\Z)#all chars after ' or ; to end of line#all chars after rem plus whitespace to end of line'.*|;.*|rem\s.*|//.*|726NewCompilerNewcapability#option REQUIRED [1023]Syntax#option REQUIRED PIC|AVR Constant|Register Message.Dat Entry|String#option REQUIRED PIC CHipEEPROM %NoEEProm%#option REQUIRED AVR CHipEEPROM "String Value"727NewLibrariesUpdatedlibariesfor#option required [1024,1030]NewspecificHEFandSAFlibrariesreplacingtheexistinghefsaf.h728NewDATAllDATfilereissuedwithUSARTinchipsection[1027,1028,1054]729NewUSART.HAdded#option required []730NewCompilerCompilernowsupports#pragma config. This is to support using MPLAB-IDE source code within compiler. [1021]731NewGLCDTwinSS1306GLCDlibrary[1029]732FixGLCDUpdatedILI9341xlibariestofixbittestissue[1031]733NewUSARTNewcapabilityUSART.h#option REQUIRED [1032, 1037, 1038]734NewCompilerImprovedCompilationReportwithclockinformation[1033,1034,1035]735NewCompilerCompilerchanges-supportforsettingvariablebitsbyindex.Seebitsonly.[1026]736FixCompilerCompilerfix:ShowerrorforbadOnInterruptmode.[1039]737FixCompilerResolvedcasesensitive'USEIF'statementsinProgrammerEditor[1040]738FixCompilerFixedincorrecterrormessagewhenoptionexplicitused,andvariablesseenbeforedefinition,resolvedundeclaredOPTION_REGerror[1041]FixedRAMassignmenttopreventaccessestohigherbytesofvariablesusing_HandsimilarfromleadingtoadditionalRAMlocationsbeingallocated,partofchange735Erroraddedifbitsofanaliasareaddressedusingavariableindex,andthealiasbytesarenotconsecutivelylocated,partofchange735739NewReservedAddedReserved.csvandReserved.csvtomanageReservedword[1042,1048,1072]740FixEEPromCorrectedsupportfor16f88xxchips[1043]741NewLCDAddedK107SerialLCDsupport[1044]742FixTimerImprovedsupportforsettingTimer0TMRHbytefor16f183xxchips(8/16bittimer)[1045,1078]743FixMillisRemovedquerytextinlibrary.[1046]744FixUSARTRevisedHSerSendtocorrectTRMTblockingerror[1047,1073]745NewDS18B20DS18B20.hnewsubtosettheresolution.D18B20SetResolution(DS18B20_TEMP_9_BIT|DS18B20_TEMP_10_BIT,DS18B20_TEMP_11_BIT,DS18B20_TEMP_12_BIT)[1048]746NewGLCDNewADAFruit_mini_colorTFT_joystick_featherwing.hlibrary.[1050]747FixCompilerMinorcompilerchange:ChangedtoensureASMSHOWDEBUGisnotprocessedbycompilerbutascomments.[1051]748FixSSD1306FixforGLCDINITtoensurethecodedoesnotimpactotherGLCDs.[1053]749FixHWI2CRevisedhwi2c.htocorrectSIC2ReceivereceivecountimpactedK42HWIC2Receiveoperations.[1054]750FixHWI2CUpdatedtoSI32CDisovery.NowusingI2C1PIR.7todetectpartandrenamedHIC2InittoHI2CInit[1055]751NewHWI2C2NewHWI2C2forK42andQ43parts.HWI2C2.hremovalofconstantsthatarenotused.RevisedLCD.HtosupportHWIC2CRevisedlowlevel.dattoincludehwi2c2.hautomatically.752NewSYSTEMAdaptedProgramErase,ProgramReadandProgramWritetosupportPMADRH,PMADRLfornewerchips.[1061]TestedProgramErase,ProgramReadandProgramWritewithEEWriteorHEFWriteonthefollowingchips12f1840,12f1822,12f1571,12f1572,12f1522and12f1501753FixADCIsolationofANSELxtoreducevariablescreation[1062]754FixHWPWMRevisedtoisolateTimer4andTimer6inHPWM()[1063,1064]755FixUSARTSoftwareSerialupdatedtodecreasememoryusage.[1066]756FixLCDRevisedLCD.htosupportVFDinitialisation.NewConstantLCD_VFD_DELAYimplementedtosetadelaybetweentransmissionofnibbleswhenusingLCD_IO4757NewLCDNewLCDsubtypesupported1601a.A16character/onerowLCDwithoddmemory.See.hformemorydetails[1068]757NewLCDNewLCDsubtypesupported1601a.A16character/onerowLCDwithoddmemory.See.hformemorydetails[1068]Use#define LCD_VARIANT 1601a to use this sub variant. Requires a LCD_IO then this sub type modifier.758NewUSARTMinorupdatetoreduceRAMconsumptionusingSerprint()withstringconstants.[1067]759FixDATRevisedmemoryandadded16F19197parts,and,correctedQ10UserIDsize/FreeRAM[1068,1070,1071]760NewDATNewChipSectorRAMAddressconstantisusedinuserprogramstoprovidethevaluetoSectorRAMAddress[1076]NewChipSectorRAMAddressSizeconstantisusedinuserprogramstoprovidethesizeoftheSectorRAM761NewCompilerImprovedWinTelprocessordeterminationtosupport64bitWinTelcompiler.Installerupdatedtosupport32bitand64bit.[1075]Installationnowincluded32bitand64bitcompilerwheretheinstallerdeterminesoperatingsystemsupportfor64bit.UsingFreeBASICcompilerversionsarefollows:FreeBASICCompiler-Version1.07.1(2019-09-27),builtforwin32(32bit)FreeBASICCompiler-Version1.07.1(2019-09-27),builtforwin64(64bit)762FixCompilerUpdatedmessage.dattocorrectOSClanguage[1074]763NewTimerImproveSettimertobettersupportnewclassoftimersfortimer0.AddedoverloadedSettimertoresolvethethepartswithselectable8or16bittimer.[1079]764NewCompilerSupportforATMELchipswith16GPRs.[1080,1081,1082,1085,1102]CompilernowgeneratescorrectinstructionsforAVR8Lreducedcorechips(ATtiny10andATtiny5,ATtiny20chips)-GeneratedfortheAVR8Lreducedcorechips-Changesystemvariablestor16tor31-ChangetoLDSandSTS7-bithandlingRequiresupdated.DATfilewithcorrectGPRvalue.765FixDatSupportforATMELchipswith16GPRs.Updated.DATfilewithcorrectGPRvalue.[1083,1084]Allwerere'gened with the following GPR=16 and ChipFamily=121ATtiny10ATtiny20ATtiny4ATtiny40ATtiny5ATtiny9766NewSystemStringSupportandOSCsupportforChipFamily121[1087,1095]767NewCore121IntroducecforATTinyRCdevices.ThisisasubsetoftheChipFamily120[1086,1091,1090,1100]RevisedtablesupportforChipFamily121.767NewIncludeImplementedmax848xdigitalpotlibrary[1092]768NewPWMRevisedtosupportChipFamily121-removalofexplicitASM[1094]769NewADCSupportforChipFamily121andtidyupinLLREADADandchangedtoADLAR=ADLeftAdjustsupport121andreducecodesize[1093]770NewAVRDUDEAddedsupportforChipFamily121parts771NewCompilerUpdatedtodisplayprogrammerselectedduringprogrammingoperation[1098]772NewCompilerUpdateforChipfamily121changestosupportthat"All of USART registers are NOT accessible using SBI and CBI instructions".Seethedatasheet.usart.hupdatedtoreducememoryusageforChipfamily121[1099]773NewEEPROMMajorupdatetosupport18FxxQ43family[1103]774NewSAFAddedSAFsupportforQ43.SAFlibraryupdatedtohandletheQ43memorymanagement[1104]775NewPROGMEMAddedQ43supportinProgramWriteandProgramRead[1105]776FixSELECTFixforSELECTCASEwherenovariableisspecified[1101]777FixCompilerTBLPTRUwordnowsetbystringanddatatableoperationsonPIC18FxxQ10withover16kw(32kB)ofprogrammemory,alsoseechange804[1106]778NewConverterLatestconverters[1096]-BMP2GCBhandleslargeBMPsbyusingconvererwithextensionof.bmp640asin#include "resources\640384_2.bmp640"-ePaperBMPconverters.Therecreatehighlyoptimized/compressedtables.Seee-PaperGLCDforexampleusage.-ThecreatesaGCBTableasfollows:-Table<Name>asWORD-' start data-640' dibHeader.Width = 640-384' dibHeader.Height = 384-0Setcolorstate-<valueofbytesatinitialcolorstate>-<valueofbytesatNOTpreviouscolorstate>-<valueofbytesatNOTpreviouscolorstate>-<valueofbytesatNOTpreviouscolorstate>-....-0xFFFF'end of table marker-0x001E'end of table marker-EndTable779NewGLCDGLCDSH1106SPISupportandROTATEadded.SetContrastcorrected[1107,1108]
This is huge release. :-)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This the change log. As raw as it is, it is what it is.
There a host of changes, new capabilities and fixes. This is a big release.
Evan
Read each row as follows:
1. The first number is a simple index number.
2. Fix or New
3. Scope/Impact area
4. Description, if with [] where [nnn] is the SVN commit number, No [] means not commited yet. We have to do this as many parts of the solution need to go out as a complete release,
Last edit: Anobium 2020-01-28
Updated outstanding fixes/new capabilities in the pipe.
Last edit: Anobium 2020-01-28
Adding changes 690-704
Read each row as follows:
1. The first number is a simple index number.
2. Fix or New
3. Scope/Impact area
4. Description, if with [] where [nnn] is the SVN commit number, No [] means not commited yet. We have to do this as many parts of the solution need to go out as a complete release,
Is this changelog available somewhere as a file? It's hard to read using the scrollbar to go left and right.
No. I can give you access to the private SVN for all the changes, but, if you have an RC release you have this file in your GreatCowBASIC folder.
It is maintained as we progress through the backlog,
Are you going to fix the binary table problem I brought up some time ago?
https://sourceforge.net/p/gcbasic/discussion/596084/thread/adc1781daf/
I've taken to using the "old" method b'00000000' instead of 0b00000000 to get round this bug.
Last edit: David Stephenson 2020-01-27
Resolved. See the release notes.
It was in the change backlog. But, it is added, #8, and is now resolved.
Jim, you can copy and paste from this thread to any editor to get full width.
I just figured out... this a huge release!!!
Lots of great new capabilities, changes and fixes plus quality improvements.
:-)
Status of outstanding items for this release as at 1700 28 Jan
Last edit: Anobium 2020-01-28
The next release has a major change with respect to the setting up of the oscillator when NOT using the internal oscillator.
Some background
We need enable the user to use other internal oscillators like LFINT, and, to expose the oscillator type (with frequency) and class to the user. So, the users know what is going on.
So we needed to
1. A method to enable setting of alternative internal oscillators.
1. NOT set the Oscillator when using a non-internal Oscillator
Changes
Using the latest compiler.
What does the user now see?
In the IDE the following are examples. Note the clock source, the frequency and more key information.
New constants ChipUsingIntOsc and ChipOsc
Two new chip specific constants now exist.
ChipUsingIntOscwill exist if the internal oscillator is selected by the compiler.ChipOscconstant gives the actual oscillator chosen, which matches what is displayed during compilation.ChipOscis the user specified or compiler select oscillator, UseChipOscthe same as the constantChipName.ChipOscmatches whatever is shown for the Osc in verbose mode, so for example when the 16F88 is configured for internal, it uses INTRC_IO in the assembly, and this tests true:Usage
Users we be able to use
#if ChipUsingIntOscin the source code to handle internal oscillator in initsys, and theChipOSCconstant as a fallback.Note: If there is some new type of internal oscillator that the ConfigValueMatch() routine in gcbasic.bas does not correctly recognise as an internal oscillator we will have to update the compiler
Example compilation
Example user code
Changes to core setup
The following changes have been made uses these new constants.
Prerequisites
To make this all work.... you will need a compiler version 0.98.07 or greater AND new dat dated 30 Jan 2020 or later.
Question
Should we add a new user constant to stop ANY setup of the oscillator registers? Leaving the oscillator register setup totally to the user.
Last edit: Anobium 2020-01-30
Chip listed in the attachment will have the LFINTOSC clock source set correctly when the frequency is
31kfor LFINT or LFINTOSCThe 96 chips are essentially the following chip classes
Enjoy when you get your hands on the release.
Thanks to all involved in supporting this functional change - Hugh, Jim, Pierre and me!
Last edit: Anobium 2020-01-30
Edited... I made a bit of error.. not SOSC but LFINTOSC. Correct below.
During testing I found specifying the LFINTOSC clock frequency as non-intutive... getting 0.031 correct is hard. I had even incorrectly typed in these posts.
So, we may (not this is passive) add another feature where you can specify
31kas the frequency to aid usage. So, the following could be implemented.#chip 16f18326, 31kLast edit: Anobium 2020-01-31
Not a bad Idea, Something like..
As it is not feasible for the compiler to be able to preempt or handle all of the possible clock options having an override will let the user manually configure the Internal or External OSC to allow fringe cases, accurate timing or synchronised clock situations.
GCBASIC’s ability to use Direct register access will allow the user to setup the Internal and External options to suit their own application or hardware specification.
Cheers
Chris
Added new frequency option for crystal clock sources.
#chip 16f18326, 32.768kFor crystal clock sources.So, I have have added two options, the one above and this one.
#chip 16f18326, 31kFor LFINTOSC clock sources.Frank has updated the IDE to support the two new frequency as constants. Which means these specific chip frequences will be shown in black and not as numerical values.
This changes help you get these constants correct.
#chip 16f18326,
32.768k#chip 16f18326,
31kStatus of outstanding items for this release as at 1700 30 Jan
So, making progress.
Last edit: Anobium 2020-01-31
Status of outstanding items for this release as at 1700 1 Feb
Added item #10
So, making progress.
Last edit: Anobium 2020-02-03
WANTED
Looking for people to review the next release.
We are close to the release. And, I need folks to test, compile code and try to use the new release.
So, if you are a Windows user - please ping me. You need to be willing to compile existing projects and test again what you know works. We need to be assured that we have no broken anything. We have 1000s of static and closed loop feedback tests (we know what the output should be with the static tests) but there is nothing like users testing the code.
In the past I emailed many of you. Not this time.
Please offer your help - your level of skill is not critical - we need you compile your code and to tell us that all is good.
Cheers
Status of outstanding items for this release as19 Feb
Added item #11
Last edit: Anobium 2020-04-02
Status of outstanding items for this release as 31 March
Last edit: Anobium 2020-04-02
Status of outstanding items for this release as 6th August 2020
Last edit: Anobium 2020-08-07
Changes add since #704.
This is huge release. :-)