Open
Description
Problem
If you search through Logging.cpp in the platforms you'll see identical implementations of many logging functions:
eg:
void LogV(uint8_t module, uint8_t category, const char * aFormat, va_list v);
Proposed Solution
Many of which move around a lot of memory, and are naturally error prone. Let's have our bugs in one spot? :)
Activity