All public logs

Jump to navigation Jump to search

Combined display of all available logs of Embedded Workshop. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:38, 28 June 2024 JMerkle talk contribs created page Logger (Created page with "// Module: log.c // // logging library // ANSI escape codes: // gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797 #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <time.h> #include "log.h" #include <unistd.h> #ifndef u8 #define u8 uint8_t #define s8 int8_t #endif // Define ANSI colors, to be used within printf() text // The foreground colors 30 - 38, are the "normal" darker colors // The foreground colors 90 - 98, are the "bright" lighter colors...")