WIP Browser example; WIP init API; Partial update keys API

This commit is contained in:
2023-11-26 01:06:18 +01:00
parent 27a0d9dba1
commit 80f9b7e76a
12 changed files with 231 additions and 82 deletions

View File

@ -0,0 +1,18 @@
#include "../../LibMultiSpacc/MultiSpacc.h"
#define AppName "Clock"
int main( int argc, char *argv[] )
{
// ... do setup things
if( !MultiSpacc_SystemClockAvailable )
{
// ... make the user set time in-app
}
// ... retrieve system time by common API or keep a clock manually
// ... display and update a clock
}

View File

@ -0,0 +1 @@
include ../Common.mk