Hello.
After a long time I come back with a problem.
I noticed that after several saves in the same or different location, no more data can be saved, when I read the eeprom all the addresses are... 65535. I can no longer save until ... Full chip erase.. . in the STM32Cube programmer, after that you ...
Search found 4 matches
- Sun Nov 19, 2023 6:17 pm
- Forum: General discussion
- Topic: "EEPROM" on f103cb/c8 rogers core, how to?
- Replies: 11
- Views: 25865
- Wed Jan 05, 2022 1:17 pm
- Forum: General discussion
- Topic: "EEPROM" on f103cb/c8 rogers core, how to?
- Replies: 11
- Views: 25865
Re: "EEPROM" on f103cb/c8 rogers core, how to?
Hello
I read it here first...
https://randomnerdtutorials.com/arduino-eeprom-explained-remember-last-led-state/
I wrote like that...
#include <EEPROM.h>
int a = 0;
int value;
void setup() {
}
void loop() {
value = EEPROM.read(a); //citire eeprom
Serial.print(a);
Serial.print("\t");
Serial ...
I read it here first...
https://randomnerdtutorials.com/arduino-eeprom-explained-remember-last-led-state/
I wrote like that...
#include <EEPROM.h>
int a = 0;
int value;
void setup() {
}
void loop() {
value = EEPROM.read(a); //citire eeprom
Serial.print(a);
Serial.print("\t");
Serial ...
- Wed Jan 05, 2022 7:01 am
- Forum: General discussion
- Topic: "EEPROM" on f103cb/c8 rogers core, how to?
- Replies: 11
- Views: 25865
Re: "EEPROM" on f103cb/c8 rogers core, how to?
libmaple is ok, and decently lightweight on stm32f103, but it is mainly designed around stm32f103.
for the gps and eeprom, I'd suggest get a better board and run the 'official' core
https://github.com/stm32duino/Arduino_Core_STM32
boards could include things like Nucleos f401 or f411 RE boards ...
- Tue Jan 04, 2022 5:34 pm
- Forum: General discussion
- Topic: "EEPROM" on f103cb/c8 rogers core, how to?
- Replies: 11
- Views: 25865
Re: "EEPROM" on f103cb/c8 rogers core, how to?
Happy Birthday !..
I have stm32F103C8T6 ... blue pill ... Arduio IDE.
I'm still trying to save GPS data to EEPROM and I can't do it at all. The data appears on the console and on the LCD. Does anyone have the patience to help me?
I've tried many eeprom emulators ... and nothing ...
Thank you....
Be ...
I have stm32F103C8T6 ... blue pill ... Arduio IDE.
I'm still trying to save GPS data to EEPROM and I can't do it at all. The data appears on the console and on the LCD. Does anyone have the patience to help me?
I've tried many eeprom emulators ... and nothing ...
Thank you....
Be ...