Board: Nano RP2040
Product Link: https://www.flyrobo.in/openlog-cleanflight-naze32-f3-blackbox-flash-recorder-module?search=openlog&description=true
Issue: I am getting garbage values in log files on default openlog config. I also tried printing like this : Serial1.print("2022-AS050I,1:2:24,43,4654,765,8,8,7:4:6,345,324,213,1,21,335,432,443.4535,434.23545,245,34,232,2,3,4,5,2,4,2,32,4,3\r"); but still I get garbage values only.
LOG File:
LOG00010.TXT (3.9 KB)
Config:
config.txt (59 Bytes)
Photos:
Code:
void setup() {
Serial1.begin(9600);
// put your setup code here, to run once:
}
void loop() {
Serial1.println("2022-AS050I,1:2:24,43,4654,765,8,8,7:4:6,345,324,213,1,21,335,432,443.4535,434.23545,245,34,232,2,3,4,5,2,4,2,32,4,3");
delay(1000);
// put your main code here, to run repeatedly:
}

