build: add the SIBO SDK

This commit is contained in:
2026-07-06 18:01:36 +01:00
parent d76326729c
commit 64e484448c
757 changed files with 97167 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
NAME lcdcomm
INCLUDE p_std.h
INCLUDE p_object.h
INCLUDE olib.g
INCLUDE comman.g
CLASS lcdcomm comman
LCD Test command manager
{
REPLACE com_init !
REPLACE com_exit ! Exit application
ADD cm_backlight ! Turn backlight on/off
ADD cm_sound ! Make a beep by calling p_sound()
TYPES
{
typedef struct
{
INT duration; ticks
INT pitch; frequency = 512/pitch kHz
} LCDCOMM_SOUND_INFO;
}
PROPERTY
{
UBYTE Status;
UBYTE Prefs;
LCDCOMM_SOUND_INFO sound;
}
}