From d98f46ce647846b0aa30b2e16a30fd4e152a1bf5 Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Thu, 10 Jul 2025 22:55:07 +0200 Subject: Add new code Signed-off-by: Carlos Maiolino --- msp340/AndreiLEDs/main.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 msp340/AndreiLEDs/main.c (limited to 'msp340/AndreiLEDs/main.c') diff --git a/msp340/AndreiLEDs/main.c b/msp340/AndreiLEDs/main.c new file mode 100755 index 0000000..ace203c --- /dev/null +++ b/msp340/AndreiLEDs/main.c @@ -0,0 +1,31 @@ +#include + +#define DEVELOPMENT_MODE 0x5A80 +#define ENABLE_IO 0xFFFE +#define BTN_RED 0x10 + + +main() { + WDTCTL = DEVELOPMENT_MODE; + PM5CTL0 = ENABLE_IO; + P1DIR = 0x80; + P9DIR = 0x02; + + P2OUT = BIT4; + P2REN = BIT4; + + P9OUT = BIT4; + P9REN = BIT4; + + while (1) { + if ((BIT4 & P2IN) == 0) + P1OUT |= 0x80; + else + P1OUT = BIT4; + + if ((BIT4 & P9IN) == 0) + P9OUT |= 0x02; + else + P9OUT = BIT4; + } +} \ No newline at end of file -- cgit v1.2.3