:D
Thinks ~! is Working
extern "C" void SystemClock_Config()
{
RCC_OscInitTypeDef RCC_OscInitStruct = {};
RCC_ClkInitTypeDef RCC_ClkInitStruct = {};
RCC_PeriphCLKInitTypeDef PeriphClkInit = {};
/** Initializes the RCC Oscillators according to the specified parameters
in the RCC ...
Search found 2 matches
- Wed Jun 23, 2021 2:44 am
- Forum: General discussion
- Topic: Arduino_Core_STM32 2.0.0 HSI invalid, NUCLEO F072RB
- Replies: 2
- Views: 1904
- Tue Jun 22, 2021 5:45 am
- Forum: General discussion
- Topic: Arduino_Core_STM32 2.0.0 HSI invalid, NUCLEO F072RB
- Replies: 2
- Views: 1904
Arduino_Core_STM32 2.0.0 HSI invalid, NUCLEO F072RB
test environment : Arduino_Core_STM32 1.9.0 and 2.0.0
test code
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is ...
test code
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is ...