Now serving jiffies!

This commit is contained in:
Neale Pickett 2013-03-07 23:55:05 -07:00
parent 343b5f057e
commit 0849647400
3 changed files with 61 additions and 38 deletions

View File

@ -1 +1,7 @@
main: CC = msp430-gcc
CFLAGS += -mmcu=msp430g2553
CFLAGS += -Wall
CFLAGS += -Os
CFLAGS += -g
all: main blink

21
blink.c Normal file
View File

@ -0,0 +1,21 @@
#include <msp430.h>
unsigned int i = 0;
int
main(void)
{
WDTCTL = WDTPW + WDTHOLD;
P1DIR |= BIT0 + BIT6;
P1OUT = (P1OUT & ~BIT6) | BIT0;
for (;;) {
i = (i + 1) % 1000;
if (i == 0) {
P1OUT ^= BIT0 + BIT6;
}
}
return 0;
}

70
main.c
View File

@ -1,52 +1,48 @@
#include <stdio.h> #include <msp430.h>
#include <stdint.h> #include <stdint.h>
#include <unistd.h>
/*
bit 7 = A
bit 6 = B
bit 5 = select
bit 4 = start
bit 3 = up
bit 2 = down
bit 1 = left
bit 0 = right
*/
uint8_t
read_gamepad()
{
return 0;
}
const uint8_t digits[] = { const uint8_t digits[] = {
0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f,
0x77, 0x7c, 0x39, 0x5e, 0x79, 0x71 0x77, 0x7c, 0x39, 0x5e, 0x79, 0x71
}; };
// in deciseconds // seconds/60
uint16_t period; volatile uint16_t jiffies = 0;
uint16_t jam; unsigned int i = 0;
void
update_display()
{
printf("%06u %06u\r", period, jam);
fflush(stdout);
}
int int
main(int argc, char *argv[]) main(void)
{ {
period = 30 * 600; WDTCTL = WDTPW + WDTHOLD; // Disable Watchdog Timer
jam = 2 * 600; P1DIR |= BIT0 + BIT6; // P1.0 output
P1OUT = (P1OUT & ~BIT6) | BIT0;
#if 1
CCTL0 |= CCIE; // Trigger interrup on Timer A checkpoint
TACTL = TASSEL_2 + MC_1; // Set timer A to SMCLCK, up mode
TACCR0 = 0x4444;
__enable_interrupt();
#endif
for (;;) { for (;;) {
period -= 1; i = (i + 1) % 1000;
jam -= 1; if ((jiffies / 60) % 2) {
P1OUT &= ~BIT0;
update_display(); } else {
usleep(100000); P1OUT |= BIT0;
}
} }
return 0;
} }
// Timer A0 interrupt service routine
__attribute__((interrupt(TIMER0_A0_VECTOR)))
void timer_a(void)
{
jiffies += 1;
if ((jiffies / 60) % 2) {
P1OUT |= BIT6;
} else {
P1OUT &= ~BIT6;
}
}