38 lines
523 B
C
Raw Normal View History

2024-03-25 13:28:33 +01:00
#include <msp430g2553.h>
#include <stdint.h>
#include <stdlib.h>
2024-03-28 16:48:29 +01:00
#include "spi.h"
2024-03-26 14:43:02 +01:00
#include "psg.h"
2024-03-26 10:44:23 +01:00
#include "scheduler.h"
2024-03-26 15:58:45 +01:00
#include "sequencer.h"
2024-03-26 16:47:42 +01:00
#include "melody.h"
2024-03-26 10:44:23 +01:00
2024-03-25 13:28:33 +01:00
int main() {
WDTCTL = WDTPW | WDTHOLD;
__disable_interrupt();
// highest possible system clock
DCOCTL = DCO0 | DCO1 | DCO2;
BCSCTL1 = XT2OFF | RSEL0 | RSEL1 | RSEL2 | RSEL3;
BCSCTL2 = 0;
BCSCTL3 = 0;
2024-03-26 10:44:23 +01:00
schInit();
2024-03-28 16:48:29 +01:00
spiInit();
2024-03-26 14:43:02 +01:00
psgInit();
2024-03-26 15:58:45 +01:00
sequencerInit();
2024-03-25 23:13:33 +01:00
2024-03-26 14:43:02 +01:00
__enable_interrupt();
2024-03-25 22:11:15 +01:00
2024-03-26 16:47:42 +01:00
melodyInit();
2024-03-25 22:11:15 +01:00
2024-03-25 13:28:33 +01:00
while (1) {
2024-03-26 10:44:23 +01:00
schExec();
2024-03-25 13:28:33 +01:00
}
}