summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDave Hodder <dave.hodder@focusrite.com>2018-11-13 13:28:22 +0000
committerDave Hodder <dave.hodder@focusrite.com>2018-11-13 13:28:22 +0000
commit665a064c16e902344eaf3f1a1c62c8cea35bf22c (patch)
treea6c1cae573620415d647d496e32ade91e6f27f61 /tools
parent165dddc42bf05b53f8e8ce4511681e289f043705 (diff)
downloadlaunchpad-polymaker-665a064c16e902344eaf3f1a1c62c8cea35bf22c.tar.gz
launchpad-polymaker-665a064c16e902344eaf3f1a1c62c8cea35bf22c.zip
implemented hal_read_led(), removed debug symbols bloating the library
Diffstat (limited to 'tools')
-rw-r--r--tools/simulator.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/simulator.c b/tools/simulator.c
index ab4eee1..cec1ede 100644
--- a/tools/simulator.c
+++ b/tools/simulator.c
@@ -41,8 +41,11 @@
41 41
42void hal_plot_led(u8 type, u8 index, u8 red, u8 green, u8 blue) 42void hal_plot_led(u8 type, u8 index, u8 red, u8 green, u8 blue)
43{ 43{
44 // wire this up to MIDI out... 44 // wire this up to MIDI out...?
45 printf("...hal_plot_led(%d, %d, %d, %d, %d);\n", type, index, red, green, blue); 45}
46
47void hal_read_led(u8 type, u8 index, u8 *red, u8 *green, u8 *blue)
48{
46} 49}
47 50
48void hal_send_midi(u8 port, u8 status, u8 d1, u8 d2) 51void hal_send_midi(u8 port, u8 status, u8 d1, u8 d2)