2023-07-07 09:42 AM
Hi,
I'm using TESEO-LIV3F. I would like to know how to power this device when using the internal battery and how to log data to the SD card.
Sincerely,
Aviad
2023-09-05 07:17 AM
Hi
Sorry but what do you mean with internal battery? the Teseo-LIV3F has No internal battery.
VBAT is a pin where an external power supply has to be provided for internal module subsystem
On SD card you can log NMEA data using an external micros
2023-09-05 09:35 AM
You'd have to write an application on your host platform to write files to a MicroSD / SD Card.
Embedded Linux would likely facilitate this by way of the usual C STDIO functions for files, and on STM32 like platforms the use of FATFS and a SDMMC/SDIO interface layer.
What exactly you write to your files is up to you. The NMEA sentences as basic ASCII, you could write those as lines, perhaps buffering for efficiency. Or you could perhaps process the data and output a more compact form expressing latitude, longitude, etc in a different ASCII or Binary record form.