Search found 131 matches

by stas2z
Sat May 02, 2020 5:41 pm
Forum: General discussion
Topic: Wait Serial1 transmission to complete CODE
Replies: 19
Views: 13316

Re: Wait Serial1 transmission to complete CODE

ive made a simple test using classic bluepill board and logic analyzer here the sample code void setup() { Serial.begin(115200); Serial1.begin(115200); pinMode(PA3, OUTPUT); pinMode(LED_BUILTIN, OUTPUT); } void loop() { Serial.println("Starting..."); digitalWrite(LED_BUILTIN, HIGH); digita...
by stas2z
Sat May 02, 2020 1:21 pm
Forum: General discussion
Topic: Wait Serial1 transmission to complete CODE
Replies: 19
Views: 13316

Re: Wait Serial1 transmission to complete CODE

@fpiSTM it's implemented in libmaple/roger's core and do the same, at least last time ive tried it with rs485 using roger's core
by stas2z
Sat May 02, 2020 12:18 pm
Forum: General discussion
Topic: Wait Serial1 transmission to complete CODE
Replies: 19
Views: 13316

Re: Wait Serial1 transmission to complete CODE

it's working and shouldn't stuck
by stas2z
Sat May 02, 2020 9:46 am
Forum: General discussion
Topic: Starting ADC with DMA Mode causes chip to freeze
Replies: 8
Views: 6709

Re: Starting ADC with DMA Mode causes chip to freeze

that ino you posted have separate .c/.h files with init code

check it
https://github.com/palmerr23/Black-F407 ... c#L81-L108
that's the main part you missing imho
by stas2z
Sat May 02, 2020 8:19 am
Forum: General discussion
Topic: Starting ADC with DMA Mode causes chip to freeze
Replies: 8
Views: 6709

Re: Starting ADC with DMA Mode causes chip to freeze

i can't see important parts in your code
at least i can't find init of analog pins, dma init and linking dma with adc
by stas2z
Thu Apr 30, 2020 10:26 pm
Forum: Projects
Topic: STM32F103C and arduino IDE
Replies: 1
Views: 2489

Re: STM32F103C and arduino IDE

Oh, come on, you've implemented CAN and stucked with basic GPIO?
pinMode/digitalRead will help you
by stas2z
Thu Apr 30, 2020 3:57 pm
Forum: Projects
Topic: STM32F10x light HID driverless bootloader supporting HD devices
Replies: 27
Views: 18004

Re: STM32F10x light HID driverless bootloader supporting HD devices

Nice. But that needs, again, a special driver to be installed on the host system right? Otherwise you cannot use DFUse or dfu-util or cubeprog. The HID or CDC bootloaders do not require any special driver. ;) Sure, and we already discussed it) 1. it's needed only once to install a driver, and also,...
by stas2z
Thu Apr 30, 2020 11:10 am
Forum: Projects
Topic: STM32F10x light HID driverless bootloader supporting HD devices
Replies: 27
Views: 18004

Re: STM32F10x light HID driverless bootloader supporting HD devices

Im sure, implementing cdc triggered jump to sysbl for yours or roger's core which supports limited amount of mcus will not be difficult, at least its easier than writing your own bl. For hal based core its wip and im using it for several months already.
by stas2z
Thu Apr 30, 2020 9:57 am
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Nucleo F072
Topic: Nucleo F072
Replies: 5
Views: 4998

Re: Nucleo F072

BTW: if the systemCore clock uses the HSE on a board not having any quartz, it should work anyway because the internal clock HSI is switched only if the HSE is ready and running. I've tested this on a F030R8 MCU try to force the use of the HSE in a board with the Quartz not populated. But the worki...
by stas2z
Thu Apr 30, 2020 9:52 am
Forum: Projects
Topic: STM32F10x light HID driverless bootloader supporting HD devices
Replies: 27
Views: 18004

Re: STM32F10x light HID driverless bootloader supporting HD devices

Most f4's have internal system dfu bl, so its not necessary unless you need some specific functions for your own project

Go to advanced search