46 #ifndef SDLOG_START_DELAY
47 #define SDLOG_START_DELAY 30
51 #ifndef SDLOG_AUTO_FLUSH_PERIOD
52 #define SDLOG_AUTO_FLUSH_PERIOD 10
56 #ifndef SDLOG_CONTIGUOUS_STORAGE_MEM
57 #define SDLOG_CONTIGUOUS_STORAGE_MEM 50
60 #if (!defined USE_ADC_WATCHDOG) || (USE_ADC_WATCHDOG == 0)
61 #error sdlog_chibios need USE_ADC_WATCHDOG in order to properly close files when power is unplugged
71 static __attribute__((noreturn))
void thd_startlog(
void *arg);
79 #if FLIGHTRECORDER_SDLOG
80 static const char FLIGHTRECORDER_LOG_NAME[] =
"fr_";
81 static const char FR_LOG_DIR[] =
"FLIGHT_RECORDER";
82 FileDes flightRecorderLogFile = -1;
105 #ifdef SDLOG_PREFLIGHT_ERROR
116 #if PERIODIC_TELEMETRY
128 size = strlen(filenames);
130 pprz_msg_send_LOGGER_STATUS(trans,
dev, AC_ID, &
status, &errno, &used, size, filenames);
153 sdLogSeekBufferFromSDB(sdb, 1);
159 memcpy(sdLogGetBufferFromSDB(sdb), data, len);
160 sdLogSeekBufferFromSDB(sdb, len);
166 sdLogWriteSDB(*(
p->file), sdb);
177 sdlog->
device.periph = (
void *)(sdlog);
190 #if PERIODIC_TELEMETRY
202 chThdCreateStatic(wa_thd_startlog,
sizeof(wa_thd_startlog),
217 #if FF_FS_REENTRANT == 0
218 sdLogCloseAllLogs(flush);
225 #if FLIGHTRECORDER_SDLOG
226 flightRecorderLogFile = -1;
232 #if defined(SDLOG_BAT_ADC) && defined(SDLOG_BAT_CHAN)
237 static __attribute__((noreturn))
void thd_bat_survey(
void *arg);
238 static void powerOutageIsr(
void);
239 event_source_t powerOutageSource;
240 event_listener_t powerOutageListener;
242 #define DefaultAdcOfVoltage(voltage) ((uint32_t) (voltage/(DefaultVoltageOfAdc(1))))
243 static const uint16_t V_ALERT = DefaultAdcOfVoltage(5.5f);
248 static void powerOutageIsr(
void)
250 chEvtBroadcastI(&powerOutageSource);
253 static void thd_bat_survey(
void *arg)
256 chRegSetThreadName(
"battery survey");
257 chEvtRegister(&powerOutageSource, &powerOutageListener, 1);
258 chThdSleepMilliseconds(2000);
262 chEvtWaitOne(EVENT_MASK(1));
285 chRegSetThreadName(
"start log");
286 char tmpFilename[32];
292 chThdSleepSeconds(20000);
311 #if FLIGHTRECORDER_SDLOG
313 if (sdLogOpenLog(&flightRecorderLogFile, FR_LOG_DIR, FLIGHTRECORDER_LOG_NAME,
323 #if defined(SDLOG_BAT_ADC) && defined(SDLOG_BAT_CHAN)
325 chEvtObjectInit(&powerOutageSource);
326 chThdCreateStatic(wa_thd_bat_survey,
sizeof(wa_thd_bat_survey),
327 NORMALPRIO + 2, thd_bat_survey, NULL);
340 chThdSleepMilliseconds(
sdOk ==
true ? 1000 : 200);
341 if (sdLogGetStorageStatus() !=
SDLOG_OK) {
349 #if HAL_USE_RTC && USE_GPS
353 if (chVTGetSystemTime() - timestamp > TIME_S2I(5)) {
354 timestamp = chVTGetSystemTime();
357 const uint32_t unixToGpsEpoch = 315964800;
359 time_t univTime = ((
gps.
week * 7 * 24 * 3600) + (
gps.
tow / 1000)) + unixToGpsEpoch;
360 gmtime_r(&univTime, &time_tm);
363 rtcConvertStructTmToDateTime(&time_tm, 0, &date);
364 rtcSetTime(&RTCD1, &date);
374 uint8_t ac_id = pprzlink_get_DL_INFO_MSG_UP_ac_id(buf);
375 if(ac_id != AC_ID && ac_id != 0xFF) {
378 uint8_t fd = pprzlink_get_DL_INFO_MSG_UP_fd(buf);
380 uint8_t len = pprzlink_get_INFO_MSG_UP_msg_length(buf);
arch independent ADC (Analog to Digital Converter) API
#define SDLOG_USB_VBUS_PIN
#define SDLOG_USB_VBUS_PORT
struct GpsState gps
global GPS state
Device independent GPS code (interface)
uint32_t tow
GPS time of week in ms.
void chsnprintf(char *buffer, size_t size, const char *fmt,...)
void mcu_reboot(enum reboot_state_t reboot_state)
Reboot the MCU.
void mcu_energy_save(void)
Save energy for performing operations on shutdown Used for example to shutdown SD-card logging.
@ MCU_REBOOT_POWEROFF
Poweroff the device.
uint8_t msg[10]
Buffer used for general comunication over SPI (out buffer)
arch independent LED (Light Emitting Diodes) API
THD_WORKING_AREA(wa_thd_ap, THD_WORKING_AREA_MAIN)
Arch independent mcu ( Micro Controller Unit ) utilities.
void preflight_error(struct preflight_result_t *result, const char *fmt,...)
Register a preflight error used inside the preflight checking functions.
void preflight_success(struct preflight_result_t *result, const char *fmt,...)
Register a preflight success used inside the preflight checking functions.
void preflight_warning(struct preflight_result_t *result, const char *fmt,...)
Register a preflight warning used inside the preflight checking functions.
void preflight_check_register(struct preflight_check_t *check, preflight_check_f func)
Register a preflight check and add it to the linked list.
Mini printf-like functionality.
SdioError sdLogFinish(void)
unmount filesystem
SdioError removeEmptyLogs(const char *directoryName, const char *prefix, const size_t sizeConsideredEmpty)
remove spurious log file left on sd
SdioError sdLogInit(uint32_t *freeSpaceInKo)
initialise sdLog
struct _SdLogBuffer SdLogBuffer
#define LOG_APPEND_TAG_AT_CLOSE_DISABLED
#define LOG_PREALLOCATION_DISABLED
static void sdlog_send(struct chibios_sdlog *p, long fd)
static int null_function(struct chibios_sdlog *p)
static void send_sdlog_status(struct transport_tx *trans, struct link_device *dev)
static int sdlog_check_free_space(struct chibios_sdlog *p, long *fd, uint16_t len)
void logger_log_msg_up(uint8_t *buf)
static IN_DMA_SECTION(THD_WORKING_AREA(wa_thd_startlog, 4096))
static void thd_startlog(void *arg)
#define SDLOG_AUTO_FLUSH_PERIOD
static const char PPRZ_LOG_DIR[]
void sdlog_chibios_finish(const bool flush)
static void sdlog_transmit(struct chibios_sdlog *p, long fd, uint8_t byte)
static enum @298 chibios_sdlog_status
sdlog status
#define SDLOG_START_DELAY
static char NO_FILE_NAME[]
static const char PPRZ_LOG_NAME[]
#define SDLOG_CONTIGUOUS_STORAGE_MEM
void chibios_sdlog_init(struct chibios_sdlog *sdlog, FileDes *file)
init chibios_sdlog structure
static char chibios_sdlog_filenames[68]
sdlog filenames
static uint8_t null_byte_function(struct chibios_sdlog *p)
static void sdlog_transmit_buffer(struct chibios_sdlog *p, long fd, uint8_t *data, uint16_t len)
void sdlog_chibios_init(void)
#define DEST_INFO_MSG_PPRZLOG
#define DEST_INFO_MSG_ALL
struct link_device device
Generic device interface.
static const struct usb_device_descriptor dev
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
Periodic telemetry system header (includes downlink utility and generated code).
#define DefaultPeriodic
Set default periodic telemetry.
Dynamic memory allocation based on TLSF library.
void usbStorageStartPolling(void)
bool usbStorageIsItRunning(void)
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.