From f633ca9108a6bd90408930eeb367a33deeb6b91f Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 27 Jan 2025 22:02:13 -0500 Subject: configure stack and dict sizes --- msp430/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'msp430') diff --git a/msp430/main.c b/msp430/main.c index fd0489f..9d9cc83 100644 --- a/msp430/main.c +++ b/msp430/main.c @@ -2,6 +2,8 @@ #include "foci.h" +static intptr_t dict[100]; + int main() { WDTCTL = WDTPW | WDTHOLD; @@ -18,7 +20,7 @@ int main() UCA0MCTL = UCBRS0; // Modulation UCBRSx = 1 UCA0CTL1 &= ~UCSWRST; - init(); + init(dict); foci_putchar('o'); foci_putchar('k'); -- cgit v1.2.3