Also....
Which UART is mapped to the arduino 'serial' depends upon which options you selected in the board configuration menu...
This could mean:
No serial
serial is presented to the GPIO pins specified in the variant file for your board
serial is presented over USB (CDC)
If you have a GENUINE ...
Search found 138 matches
- Wed Jul 03, 2024 5:17 pm
- Forum: General discussion
- Topic: ST-LINK V2.1 doesn't connect COM port for serial monitor
- Replies: 13
- Views: 7775
- Thu Jun 13, 2024 2:27 pm
- Forum: IDE's
- Topic: NVIM nvim-lspconfig arduino-cli arduino-language-server
- Replies: 1
- Views: 5891
Re: NVIM nvim-lspconfig arduino-cli arduino-language-server
I found out why the LSP wouldn't work - neovim 0.10.x has a breaking change. Reverting back to 0.9.5 works but the LSP capabilities must be configured to disable semanticTokens:
config.capabilities.textDocument.semanticTokens = vim.NIL
config.capabilities.workspace.semanticTokens = vim.NIL
Happy ...
config.capabilities.textDocument.semanticTokens = vim.NIL
config.capabilities.workspace.semanticTokens = vim.NIL
Happy ...
- Tue May 14, 2024 1:02 pm
- Forum: IDE's
- Topic: NVIM nvim-lspconfig arduino-cli arduino-language-server
- Replies: 1
- Views: 5891
NVIM nvim-lspconfig arduino-cli arduino-language-server
Any adventurous types out there using NVIM as their 'IDE'?
I've recently switched wholesale to linux (Arch) from Windows, and am finding nvim to increasingly be my preferred direction.
I've can easily invoke a shell from within nvim (I'm also using tmux) and compile or upload directly to my boards ...
I've recently switched wholesale to linux (Arch) from Windows, and am finding nvim to increasingly be my preferred direction.
I've can easily invoke a shell from within nvim (I'm also using tmux) and compile or upload directly to my boards ...
- Thu Oct 19, 2023 9:51 pm
- Forum: IDE's
- Topic: Arduino IDE 2.x (2.2)
- Replies: 9
- Views: 23797
Re: Arduino IDE 2.x (2.2)
Debug works fine as long as you edit the openocd.cfg supplied with the core release - change "reset_config srst_nogate" to "reset_config none"
- Thu Oct 19, 2023 9:59 am
- Forum: Off topic
- Topic: No one even mentioned the new Raspberry Pi Pico?
- Replies: 79
- Views: 2252896
- Sat Oct 14, 2023 9:02 pm
- Forum: General discussion
- Topic: Load Firmware from sd
- Replies: 6
- Views: 6591
Re: Load Firmware from sd
I wasn't, a spammer posted, and admins must have deleted the post.
- Fri Oct 13, 2023 9:48 am
- Forum: General discussion
- Topic: Load Firmware from sd
- Replies: 6
- Views: 6591
Re: Load Firmware from sd
spammers are back
- Fri Mar 03, 2023 12:08 pm
- Forum: General discussion
- Topic: BlackPill V3.1 Bootmode wrong USB VID/PID
- Replies: 19
- Views: 12058
Re: BlackPill V3.1 Bottmode wrong USB VID/PID
I think it probably does, yes.
It's only really an issue for developers though who are working on a tight cycle of build/upload/test, the vast majority of these devices are embedded and programmed once via SWD only, so I can see where ST's priority would lay.
It's only really an issue for developers though who are working on a tight cycle of build/upload/test, the vast majority of these devices are embedded and programmed once via SWD only, so I can see where ST's priority would lay.
- Fri Mar 03, 2023 10:23 am
- Forum: USB bootloader
- Topic: bootloader seems to get overwritten
- Replies: 10
- Views: 25163
Re: bootloader seems to get overwritten
And when you write "and allows you to flash your program" , well, it allows that via USB.
This is NOT true. The bootloader GETS INVOKED by the sketch that you upload ONLY if you have enabled USB Serial CDC in the compile time options of the sketch that you upload...
How it works is that YOUR ...
- Fri Mar 03, 2023 10:11 am
- Forum: General discussion
- Topic: BlackPill V3.1 Bootmode wrong USB VID/PID
- Replies: 19
- Views: 12058
Re: BlackPill V3.1 Bottmode wrong USB VID/PID
I find most of the bootloaders a complete pain in the rear to use and almost always just use an st-link clone, they're very cheap.
When I _did_ use the various DFU & HID bootloaders (I did a lot of messing around on these including porting the code for them into this core - with cleanup from fred ...
When I _did_ use the various DFU & HID bootloaders (I did a lot of messing around on these including porting the code for them into this core - with cleanup from fred ...