Hi Steve,I checked the test sketch on the Maple mini Board, everything works with quartz, but it doesn't work without quartz
#define USE_HSI_CLOCK 1
void setup() {
// put your setup code here, to run once:
pinMode(PA0,OUTPUT);
pinMode(PA1,OUTPUT);
}
void loop() {
// put your main code here, to ...
Search found 7 matches
- Mon Jan 27, 2020 12:02 pm
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
- Fri Jan 24, 2020 1:27 pm
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
Re: Using the internal (HSI) generator f103c8t6
ok, I'll try it
- Fri Jan 24, 2020 1:21 pm
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
Re: Using the internal (HSI) generator f103c8t6
yep, the board is custom
- Fri Jan 24, 2020 1:15 pm
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
Re: Using the internal (HSI) generator f103c8t6
I use a processor without usb. Programming via st-link v2
#define USE_HSI_CLOCK 1
void setup() {
// put your setup code here, to run once:
pinMode(PA0,OUTPUT);
pinMode(PA1,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(PA0,HIGH);
digitalWrite(PA1,HIGH ...
#define USE_HSI_CLOCK 1
void setup() {
// put your setup code here, to run once:
pinMode(PA0,OUTPUT);
pinMode(PA1,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(PA0,HIGH);
digitalWrite(PA1,HIGH ...
- Fri Jan 24, 2020 11:42 am
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
Re: Using the internal (HSI) generator f103c8t6
I just tried adding
but it didn't help, the processor doesn't work. I use Roger's core
Code: Select all
#define USE_HSI_CLOCK 1
- Fri Jan 24, 2020 9:52 am
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
Re: Using the internal (HSI) generator f103c8t6
Hi Steve, thanks,I'll try it
- Thu Jan 23, 2020 6:44 pm
- Forum: General discussion
- Topic: Using the internal (HSI) generator f103c8t6
- Replies: 12
- Views: 16670
Using the internal (HSI) generator f103c8t6
Hello everyone, coul'd you please tell me how to initialize the internal clock generator when using generic f103c8t6 in arduino ide 1.8.10?