mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 15:37:03 +00:00
23 lines
442 B
C
23 lines
442 B
C
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#ifndef _AMSSTORAGE_H
|
|
#define _AMSSTORAGE_H
|
|
|
|
#define FILE_FIRMWARE "/firmware.bin"
|
|
|
|
#define FILE_MQTT_CA "/mqtt-ca.pem"
|
|
#define FILE_MQTT_CERT "/mqtt-cert.pem"
|
|
#define FILE_MQTT_KEY "/mqtt-key.pem"
|
|
|
|
#define FILE_DAYPLOT "/dayplot.bin"
|
|
#define FILE_MONTHPLOT "/monthplot.bin"
|
|
#define FILE_ENERGYACCOUNTING "/energyaccounting.bin"
|
|
|
|
#define FILE_CFG "/configfile.cfg"
|
|
|
|
#endif
|