2020-12-14 11:02 AM
2020-12-14 11:57 AM
Ok, is there a question in there somewhere?
2020-12-14 10:13 PM
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?
2020-12-14 11:55 PM
What exactly doesn't work?
Blinking a LED works?
JW
2020-12-15 10:05 PM
Blinking doesn't work!
2020-12-15 11:40 PM
How do you program the L0?
Show us the LED blinking program.
JW
2020-12-16 08:43 AM
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.