platform for developing on SQFMI's Watchy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
409 B

#ifndef _WATCHOS2_h
#define _WATCHOS2_h
#include <Arduino.h>
#include "watchos_config.h"
#include "watchos_consts.h"
#include "watchos_hw.h"
#include "watchos_types.h"
#include "Kernel.h"
class watchos
{
private:
static Kernel* s_kernel;
public:
static void initialize();
static Kernel* kernel();
static void panic(char* fmt...);
static void debug(char* fmt...);
};
#endif