FYI
From VoltLog:
STM32 Programmers Wanted For Open Source Project
Search found 12 matches
- Tue Oct 06, 2020 1:22 pm
- Forum: Off topic
- Topic: STM32 Programmers Wanted For Open Source Project
- Replies: 0
- Views: 664
- Fri Jun 26, 2020 4:20 pm
- Forum: Installation and OS related
- Topic: Mac Mojave STM32CubeProgrammer Install Tips
- Replies: 2
- Views: 1918
Re: Mac Mojave STM32CubeProgrammer Install Tips
The version of the JRE is also important: STM32CubeProgrammer Java version
I got caught out by this.
I got caught out by this.
- Wed Jun 17, 2020 12:08 pm
- Forum: STM32F4 based boards
- Topic: F411 (and F401) bootloaders
- Replies: 24
- Views: 9904
Re: F411 (and F401) bootloaders
*STM32duino-bootloader [available on github from mfgr] Can you please post a link to this? I could not find it. I see they do now have an HID Bootloader: WeAct_HID_Bootloader_F4x1 base on STM32_HID_Bootloader The actual .hex file is here: https://github.com/WeActTC/MiniF4-STM32F4x1/tree/master/Soft...
- Wed Jun 03, 2020 4:01 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Nucleo F411RE and serial
- Replies: 4
- Views: 1456
- Wed Jun 03, 2020 1:49 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Nucleo F411RE and serial
- Replies: 4
- Views: 1456
Re: Nucleo F411RE and serial
Thank you for the reply, Under /dev are two entries related to the F411RE: /dev/tty.usbmodemFA13123 /dev/cu.usbmodemFA13123 Under Arduino -> Tools I have the following settings: Arduino_Tools_Settings.jpg /dev/cu.usbmodemFA1312 3 is automatically selected and is also the only option available. The s...
- Mon Jun 01, 2020 4:12 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Nucleo F411RE and serial
- Replies: 4
- Views: 1456
Nucleo F411RE and serial
Hello everyone I dusted off my Nucleo F411RE board today to get it working again with STM32 Core. I can upload via the onboard ST-Link (after the firmware update) and Mass Storage. My question is where does Serial.print output go? There is a serial port (/dev/cu.XXXX) but no output appears there. Wh...
- Mon May 25, 2020 8:35 am
- Forum: STM32 HID bootloader
- Topic: How to use with PlatformIO?
- Replies: 3
- Views: 2384
Re: How to use with PlatformIO?
Thank you for your reply. I started working on a custom uploader, which was able to find the PB and started uploading, but the blink program never executed and the serial port was missing after the upload. I knew it had to do with some build flags, but I had no idea which ones, so I put it on ice. B...
- Mon May 18, 2020 7:53 am
- Forum: General discussion
- Topic: New APM32F103CB
- Replies: 44
- Views: 10397
Re: New APM32F103CB
Thank you for the feedback. Currently, I do not have any of these boards, but I am interested in buying some since Robotdyn products are better quality than most no name products on eBay/AliExpress.
- Sun May 17, 2020 1:33 pm
- Forum: General discussion
- Topic: New APM32F103CB
- Replies: 44
- Views: 10397
Re: New APM32F103CB
FPU issues aside, does it work under STM32 Core and if so, which option did you select under Board part number? If it works as a standard Blue/BlackPill with confirmed 128k flash, then it is still a good board to buy, IMHO.
TIA
TIA
- Sun May 17, 2020 1:03 pm
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 3159
Re: blue pill and ILI9341 tft
by using constructor for hardware spi Adafruit_ILI9341(int8_t _CS, int8_t _DC, int8_t _RST = -1); Thank you for this, and just to confirm that I could only get hardware SPI working using the three parameter constructor with RST specified, and not the two parameter constructor with only CS and DC . ;)