This commit is contained in:
Wolfgang Hottgenroth 2024-04-15 17:02:09 +02:00
parent 0c4533bfac
commit 78c906ef26
Signed by: wn
GPG Key ID: 836E9E1192A6B132

View File

@ -2,7 +2,7 @@
#include <msp430g2553.h>
#include "spi.h"
#include "../game-ctrl/sound.h"
#include "scheduler.h"
volatile t_SoundCmd cmd;
@ -95,6 +95,8 @@ void spiInit() {
// enable RX interrupt
UC0IE |= UCB0RXIE;
schAdd(spiCmdHandler, NULL, 0, 10);
}