I installed VS codium and integrated Claude AI. But getting the compile and upload buttons to integrate and upload via pickit3 or avr are failing. If you posted a script or guide it would be useful
I installed VS codium and integrated Claude AI. But getting the compile and upload buttons to integrate and upload via pickit3 or avr are failing. If you posted a script orguide it would be useful
I just moved from Windows to Linux and miss Synwrite and it's lexer. There is a similar program to Synwrite called Geany which I am using that integrates with MPLAP X 6.20 IDE and an avr programmer. You must use version 6.20 as it is the last version to support pickit3. So I made a universal script that runs in Linux and installs the latest gcbasic compiler + geany editor + pickit3 support + avr programmer from the web. It also adds a lexer to Geany which is essentially it's freebasic lexer modified...
I just moved from Windows to Linux and miss Synwrite and it's lexer. There is a similar program to Synwrite called Geany which I am using that integrates with MPLAP X 6.20 IDE and an avr programmer. You must use version 6.20 as it is the last version to support pickit3. So I made a universal script that runs in Linux and installs the latest gcbasic compiler + geany editor + pickit3 support + avr programmer from the web. It also adds a lexer to Geany which is essentially it's freebasic lexer modified...
Good tip thanks. This command was pasted into chatgpt: https://gcbasic.sourceforge.io/help/index.html scrape this link for all gcbasic syntax and examples and update memory for all syntax as necessary Also when chatgpt is issuing code ask it to add verbose comments
'---------------------------------------- ' PIC16F1705 - LM35 Temperature Reader ' Clock: 16 MHz ' FVR = 2.048V '---------------------------------------- #chip 16F1705, 16 '---------------------------------------- ' Variables '---------------------------------------- Dim adcVal As Word Dim tempCx10 As Word Dim tempC As Word '---------------------------------------- ' Pin setup '---------------------------------------- Dir PORTA.0 In ' AN0 input (LM35) '---------------------------------------- ' FVR...
~~~'---------------------------------------- ' PIC16F1705 - LM35 Temperature Reader ' Clock: 16 MHz ' FVR = 2.048V '---------------------------------------- #chip 16F1705, 16 '---------------------------------------- ' Variables '---------------------------------------- Dim adcVal As Word Dim tempCx10 As Word Dim tempC As Word '---------------------------------------- ' Pin setup '---------------------------------------- Dir PORTA.0 In ' AN0 input (LM35) '----------------------------------------...
~~~ ~~~'---------------------------------------- ' PIC16F1705 - LM35 Temperature Reader ' Clock: 16 MHz ' FVR = 2.048V '---------------------------------------- chip 16F1705, 16 '---------------------------------------- ' Variables '---------------------------------------- Dim adcVal As Word Dim tempCx10 As Word Dim tempC As Word '---------------------------------------- ' Pin setup '---------------------------------------- Dir PORTA.0 In ' AN0 input (LM35) '----------------------------------------...