| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- // Helpers for log messages.
- #pragma once
- #include <stdint.h>
- #include <stddef.h>
- // Get total number of bytes that have been written to log
- uint32_t log_get_buffer_len();
- // Get log as a string.
- // If startpos is given, continues log reading from previous position and updates the position.
- // If available is given, number of bytes available is written there.
- const char *log_get_buffer(uint32_t *startpos, uint32_t *available = nullptr);
- // Whether to enable debug messages
- extern bool g_log_debug;
- // Enables output test mode
- extern bool g_test_mode;
- // Firmware version string
- extern const char *g_log_firmwareversion;
- // Log string
- void log_raw(const char *str);
- // Log byte as hex
- void log_raw(uint8_t value);
- // Log integer as hex
- void log_raw(uint32_t value);
- // Log integer as hex
- void log_raw(uint64_t value);
- // Log integer as decimal
- void log_raw(int value);
- // Log double
- void log_raw(double value);
- // Log bool
- void log_raw(bool value);
- // Log array of bytes
- struct bytearray {
- bytearray(const uint8_t *data, size_t len): data(data), len(len) {}
- const uint8_t *data;
- size_t len;
- };
- void log_raw(bytearray array);
- inline void log_raw()
- {
- // End of template recursion
- }
- #ifdef __cplusplus
- extern "C" {
- #endif
- void log_buf(const unsigned char *buf, unsigned long size);
- // Log formatted string
- void log_f(const char *format, ...);
- #ifdef __cplusplus
- }
- #endif
- extern "C" unsigned long millis();
- // Variadic template for printing multiple items
- template<typename T, typename T2, typename... Rest>
- inline void log_raw(T first, T2 second, Rest... rest)
- {
- log_raw(first);
- log_raw(second);
- log_raw(rest...);
- }
- // Format a complete log message
- template<typename... Params>
- inline void log(Params... params)
- {
- if (g_log_debug)
- {
- log_raw("[", (int)millis(), "ms] ");
- }
- log_raw(params...);
- log_raw("\n");
- }
- // Format a complete debug message
- template<typename... Params>
- inline void debuglog(Params... params)
- {
- if (g_log_debug)
- {
- log_raw("[", (int)millis(), "ms] DBG ");
- log_raw(params...);
- log_raw("\n");
- }
- }
|