source: ctrl/firmware/Main/SES/Core/Inc/gps.h

Last change on this file was 82, checked in by Zed, 3 months ago

DMA transfer to µSD-card was implemented.

File size: 360 bytes
Line 
1#ifndef __GPS_H_
2#define __GPS_H_
3
4#include <stdint.h>
5
6//! Struktur zur Aufnahme der RTC Zeit/Datum
7//! signed damit atoi korrekt funktioniert
8typedef struct
9{
10        int8_t  year;
11        int8_t  month;
12        int8_t  day;
13        int8_t  hour;
14        int8_t  minute;
15        int8_t  second;
16        int8_t  timezone;
17        uint8_t daylight_saving_time;
18} lokal_time_t;
19
20
21
22
23#endif // __GPS_H_
Note: See TracBrowser for help on using the repository browser.