Search found 7 matches
- Sat Feb 18, 2023 5:41 am
- Forum: Off topic
- Topic: GPIO toggling led not working after use Bypass clock source
- Replies: 4
- Views: 11652
Re: GPIO toggling led not working after use Bypass clock source
ok i will continoue on github, thanks.
- Sun Feb 12, 2023 9:59 pm
- Forum: Off topic
- Topic: GPIO toggling led not working after use Bypass clock source
- Replies: 4
- Views: 11652
Re: GPIO toggling led not working after use Bypass clock source
thanks for your reply, after i change the setting (use crystal/ceramic resonator), my code is working.
but its just working when i use gpio and usb only, but i need other peripheral also.
i also try to make new project with only usb and gpio enabled, its working, but after i change to my other ...
but its just working when i use gpio and usb only, but i need other peripheral also.
i also try to make new project with only usb and gpio enabled, its working, but after i change to my other ...
- Sun Feb 12, 2023 12:11 pm
- Forum: Off topic
- Topic: GPIO toggling led not working after use Bypass clock source
- Replies: 4
- Views: 11652
GPIO toggling led not working after use Bypass clock source
hey all,
recently i started new project (STM32F407VGT6) use USB FS with stm32 CUBE IDE, i choose clock source from bypass(cause usb cant use internal clock), after code is generated by cube ide, i check by blink led on PA1, but the led is not blinking at all. but after i disable USB and change ...
recently i started new project (STM32F407VGT6) use USB FS with stm32 CUBE IDE, i choose clock source from bypass(cause usb cant use internal clock), after code is generated by cube ide, i check by blink led on PA1, but the led is not blinking at all. but after i disable USB and change ...
- Wed Aug 03, 2022 9:55 pm
- Forum: General discussion
- Topic: why i need SetRx/SetTx before use Serial?
- Replies: 2
- Views: 3402
Re: why i need SetRx/SetTx before use Serial?
thanks for reply.
even though the definition is above exactly, thank you for the help
// UART Definitions
#ifndef SERIAL_UART_INSTANCE
#define SERIAL_UART_INSTANCE 4 //<<<<<<<<<<<<<<<<<<
#endif
// Default pin used for generic 'Serial' instance
// Mandatory for Firmata
#ifndef PIN_SERIAL_RX ...
even though the definition is above exactly, thank you for the help
// UART Definitions
#ifndef SERIAL_UART_INSTANCE
#define SERIAL_UART_INSTANCE 4 //<<<<<<<<<<<<<<<<<<
#endif
// Default pin used for generic 'Serial' instance
// Mandatory for Firmata
#ifndef PIN_SERIAL_RX ...
- Sat Jul 30, 2022 9:45 pm
- Forum: General discussion
- Topic: why i need SetRx/SetTx before use Serial?
- Replies: 2
- Views: 3402
why i need SetRx/SetTx before use Serial?
i don't know if this question already answered, but.
when i try to doing serial communication(STM32F407VGTx) in default Serial instance i need to set
Serial.setRx(PA10);
Serial.setTx(PA9);
even i already change default pin on variant_generic.h (i use generic board), and i have use --board ...
when i try to doing serial communication(STM32F407VGTx) in default Serial instance i need to set
Serial.setRx(PA10);
Serial.setTx(PA9);
even i already change default pin on variant_generic.h (i use generic board), and i have use --board ...
- Sat Jul 30, 2022 9:59 am
- Forum: General discussion
- Topic: where is variant_config.json??
- Replies: 3
- Views: 1714
Re: where is variant_config.json??
i got it, iam newbie sorry for stupid question.
thanks
thanks

- Wed Jul 27, 2022 1:33 pm
- Forum: General discussion
- Topic: where is variant_config.json??
- Replies: 3
- Views: 1714
where is variant_config.json??
recently i started learn stm32f407vgt6 with arduino core, then i want to try make my own variant, i have read this on manual https://github.com/stm32duino/wiki/wiki/Add-a-new-variant-%28board%29 , but on generated variant files section, i don't know how to generate this file, then.
based from this ...
based from this ...