Firmware

Dependencies:   BMI160 ADT7410 Thermistor DS1621 max32630fthr Adafruit_FeatherOLED

Committer:
condato_mbed
Date:
Thu Jul 09 16:04:25 2020 +0000
Revision:
2:b802b30cc7d2
Parent:
0:556294574340
coldchainlogger

Who changed what in which revision?

UserRevisionLine numberNew contents of line
condato_mbed 0:556294574340 1 #include "mbed.h"
condato_mbed 0:556294574340 2
condato_mbed 0:556294574340 3 void turnON();
condato_mbed 0:556294574340 4 void reboot();
condato_mbed 0:556294574340 5 void messdaten_count();
condato_mbed 0:556294574340 6 void set_time();
condato_mbed 0:556294574340 7 int set_app_time(unsigned long device_time);
condato_mbed 0:556294574340 8 void write_to_sd_log_single(char log_string[]);
condato_mbed 0:556294574340 9 void write_to_sd_messdaten_single(float buffer_temp, struct timestamp current);
condato_mbed 0:556294574340 10 void write_to_sd_messdaten_all(float *buffer_temp, struct timestamp *current);
condato_mbed 0:556294574340 11 void get_save_Messpunkt(float temperatur);
condato_mbed 0:556294574340 12 float get_Messwert();
condato_mbed 0:556294574340 13 int create_file_messdaten();
condato_mbed 0:556294574340 14 int create_file_log();
condato_mbed 0:556294574340 15 int min_max_avr();
condato_mbed 0:556294574340 16 int delete_file_messdaten();
condato_mbed 0:556294574340 17 int delete_file_log();
condato_mbed 0:556294574340 18 int file_copy(const char *src, const char *dst);
condato_mbed 0:556294574340 19 int load_user_config();
condato_mbed 0:556294574340 20 int load_standard_config();
condato_mbed 0:556294574340 21 int read_id();
condato_mbed 0:556294574340 22 int create_user_config(char params[]);
condato_mbed 0:556294574340 23 void led_blink(int led, int anzahl, int lang, int pause);
condato_mbed 0:556294574340 24 void error_handler(int error);
condato_mbed 0:556294574340 25 int check_devices();
condato_mbed 0:556294574340 26 void mess_handler();
condato_mbed 0:556294574340 27 int RTC_check();
condato_mbed 0:556294574340 28 void max14690_init();
condato_mbed 0:556294574340 29 void initCallback(void);
condato_mbed 0:556294574340 30 void init();
condato_mbed 0:556294574340 31
condato_mbed 0:556294574340 32 struct user_config_struct
condato_mbed 0:556294574340 33 {
condato_mbed 0:556294574340 34 int interval;
condato_mbed 0:556294574340 35 int alert;
condato_mbed 0:556294574340 36 int minimum;
condato_mbed 0:556294574340 37 int maximum;
condato_mbed 0:556294574340 38 int wait_mode;
condato_mbed 0:556294574340 39 int pre_delay;
condato_mbed 0:556294574340 40 int advertise;
condato_mbed 0:556294574340 41 int connected;
condato_mbed 0:556294574340 42 };