Skip to main content
TVard.1
Associate III
December 14, 2020
Question

I have developed the custom board for stm32F103 series. now i want to replace F103 series with L07 series. i am using Arduino IDE and STM package

  • December 14, 2020
  • 3 replies
  • 1540 views

..

This topic has been closed for replies.

3 replies

Tesla DeLorean
Guru
December 14, 2020

Ok, is there a question in there somewhere?

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
TVard.1
TVard.1Author
Associate III
December 15, 2020

I have 2 copy of PCB ,one with stm32F103 and other with stm32L071. The stm32L0 doesn't work! By looking at datasheet both have same pin compatibility.

Do stm32L0 require different crystal oscillator?

waclawek.jan
Super User
December 15, 2020

What exactly doesn't work?

Blinking a LED works?

JW

TVard.1
TVard.1Author
Associate III
December 16, 2020

Blinking doesn't work!

waclawek.jan
Super User
December 16, 2020

How do you program the L0?

Show us the LED blinking program.

JW

TVard.1
TVard.1Author
Associate III
December 16, 2020
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 the voltage level)
 delay(1000); // wait for a second
 digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
 delay(1000); // wait for a second
}

PC 13 is the default LED pin.

i got PWM working on only pins which are assigned in Thunderpack . https://cdn.hackaday.io/images/7315331605831459582.png.

pin like PA15 or pin which are not assign in this board are unresponsive.