Skip to content
Snippets Groups Projects
uptime.cc 105 B
Newer Older
  • Learn to ignore specific revisions
  • #include "driver/uptime.h"
    #include <msp430.h>
    
    uint32_t Uptime::get()
    {
    	return TA0R;
    }
    
    Uptime uptime;