Hi Community, To keep you informed about my first issue. Angel bring me the solution today, thank to him, btw, pretty simple. GCSTUDIO have a max file size limitation per default to 256KB, but my source file is much bigger, near to 600KB (have a lots of comments/explanations inside). So, to get timeline working again, just needed to increase the parameter from 256 to 1024 (I assume I will not reach source file size of 1MB for my GCBASIC projects). "workbench.localHistory.maxFileSize": 1024
Hi Community, To keep you informed about my first issue. Angel bring me the solution today, thank to him, btw, pretty simple. GCSTUDIO have a max file size limitation to 256KB, but my source file is much bigger, near to 600KB (have a lots of comments/explanations inside). So, to get timeline working again, just needed to increase the parameter from 256 to 1024 (I assume I will not reach source file size of 1MB for my GCBASIC projects). "workbench.localHistory.maxFileSize": 1024
Hi Community, To keep you informed about my first issue. Angel bring me the solution today, thank to him, btw, pretty simple. GCSTUDIO have a max file size limitation to 256KB, but my source file is much bigger, near to 600KB (have a lots of comments/explanations inside). So, to get timeline working again, just needed to increase the parameter from 256 to 1024 (I assume I will not reach source file size of 1MB for my GCBASIC projects). "workbench.localHistory.maxFileSize": 1024
Thank a lot for your good explanation, I will try later, I assume some time needed to do it, as the point with the right position (I am using some sub procedure in multiple blocks, need to learn how to handle it).
Hi Community, to let you know my latest status. I have a computer with pretty fresh Windows installation and where GCBASIC was never installed on. So, I installed latest one (2.019) and made my tests. I have the same situation as explaned before. My project code is near 6000 lines long and build for PIC18F16Q41. It uses 75% of Prog memory actually, and I am still not complete with the functionnality I want to build in. Now another question, can I split the code im multiple files and use includes...
Maybe I should reinstall fully GCSTUDIO from scratch. What is the best way to cleanly remove the installed environment ? Does some registry entries must be manually cleaned ? Thank
Good Day Community, I worked a lot these last days on my project, and I noticed an issue I have with the timeline functionality of GCSTUDIO. Not always every .gcb source file have an active save timeline. I have that situation mostly with my large .gcb files. For example the case that Anobium processed yesterday for the I2C issue, the test .gcb file have multiple entries in the timeline, but my project various source files (incremented by version in the file name) have no single entry in the timeline....
Hi Anobium, let me report successfully implementation of new hwi2c.h library. I made multiple I2C speed test compilations, and it works. Also on my big project it was correctly added with a speed of 200Khz: ;Source: hwi2c.h (1147) SI2CINIT ;This method sets the MSSP modules for K-mode family chips ;Dir HI2C_DATA out bcf TRISB,4,ACCESS ;Dir HI2C_CLOCK out bcf TRISB,6,ACCESS ;I2C1CON1 = I2C1I2C1CON1Default movlw 128 banksel I2C1CON1 movwf I2C1CON1,BANKED ;I2C1CON2 = I2C1I2C1CON2Default movlw 33 movwf...