15 lines
219 B
C
15 lines
219 B
C
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <msp430g2553.h>
|
||
|
#include "generator.h"
|
||
|
|
||
|
|
||
|
void generatorInit() {
|
||
|
P1DIR |= BIT0 | BIT1 | BIT2 | BIT3;
|
||
|
P1OUT |= BIT0 | BIT1 | BIT2 | BIT3;
|
||
|
|
||
|
|
||
|
genShifter(0, 0x8001);
|
||
|
}
|
||
|
|