Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: SoftSerial MAX14690 Buffer
Fork of rtos_threading_with_callback by
logger.h
00001 #pragma once 00002 00003 #include "rtos.h" 00004 class SDLogger; 00005 class Logger 00006 { 00007 friend SDLogger; 00008 public: 00009 static bool log(char* msg){ 00010 q.put(msg, osWaitForever); 00011 return true; 00012 } 00013 protected: 00014 static rtos::Queue<char, 24> q; //max sz == 24 00015 static const unsigned maxQueueSize = 24; 00016 };
Generated on Tue Sep 13 2022 05:19:36 by
 1.7.2
 1.7.2 
    