#include <stddef.h>
#include <stdint.h>
+#define RAMFUNC __attribute((long_call, section(".ramfunc")))
+
+#define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
+
#define LED_RED 1
#define LED_ORANGE 2
#define LED_GREEN 4
int BUTTON_HELD(int ms);
void FormatVersionInformation(char *dst, int len, const char *prefix, void *version_information);
+void StartTickCount();
+uint32_t RAMFUNC GetTickCount();
+
+void StartCountUS();
+uint32_t RAMFUNC GetCountUS();
+uint32_t RAMFUNC GetDeltaCountUS();
+
#endif