/**
* @file main.c
* Entry point for operating system
*
* Copyright (C) 2018 Clyne Sullivan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
extern uint8_t __bss_end__;
extern char *itoa(int, char *, int);
void kmain(void);
void task_interpreter(void);
void task_status(void);
int main(void)
{
asm("cpsid i");
// disable cached writes for precise debug info
//*((uint32_t *)0xE000E008) |= 2;
// prepare flash latency for 80MHz operation
FLASH->ACR &= ~(FLASH_ACR_LATENCY);
FLASH->ACR |= FLASH_ACR_LATENCY_4WS;
clock_init();
heap_init(&__bss_end__);
random_init();
gpio_init();
serial_init();
keypad_init();
flash_init();
//gpio_mode(GPIOA, 5, OUTPUT); // taken by sd
// enable FPU
SCB->CPACR |= (0xF << 20);
// enable MPU
//MPU->CTRL |= MPU_CTRL_PRIVDEFENA_Msk | MPU_CTRL_ENABLE_Msk;
task_init(kmain);
while (1);
}
void sleep(void)
{
dsp_sleep();
*((uint32_t *)0xE000ED10) |= 4; // SLEEPDEEP
PWR->CR1 |= 2;
asm("wfi");
}
void wakeup(void)
{
clock_init();
dsp_wakeup();
}
void kmain(void)
{
dsp_init();
sd_init();
fat_find();
dsp_cursoron();
keypad_start();
task_start(task_interpreter, 4096);
task_start(task_status, 512);
while (1) {
extern uint32_t sleep_pending;
if (sleep_pending != 0) {
sleep();
while (sleep_pending)
delay(1);
}
//gpio_dout(GPIOA, 5, 1);
//delay(250);
//gpio_dout(GPIOA, 5, 0);
delay(100);
}
}
instance *load_program(const char *name)
{
// load file
file_t *file = fat_findfile(name);
if (file == 0) {
dsp_puts("can't find ");
dsp_puts(name);
goto fail;
}
char *s = fat_readfile(file);
instance *it = inewinstance();
script_loadlib(it);
// read in, parse into script code
char *linebuf = (char *)malloc(120);
uint32_t i = 0, prev = 0, lc;
uint32_t size = file->size;
int ret = 0;
while (i < size) {
for (; s[i] != '\n' && s[i] != '\0'; i++);
lc = i - prev;
if (lc == 0) {
prev = ++i;
continue;
}
strncpy(linebuf, s + prev, lc + 1);
linebuf[lc] = '\0';
ret = iaddline(it, linebuf);
if (ret != 0)
goto fail;
prev = ++i;
}
free(linebuf);
free(s);
free(file);
return it;
fail:
while (1);
return 0;
}
void task_status(void)
{
extern int keypad_insert;
int lastInsert = -1;
int16_t bg = dsp_color(0x3F, 0x3F, 0x3F);
int16_t red = dsp_color(0xFF, 0, 0);
int16_t green = dsp_color(0, 0xFF, 0);
dsp_rect(0, 300, 480, 20, bg);
while (1) {
if (lastInsert != keypad_insert) {
lastInsert = keypad_insert;
dsp_rect(0, 300, 480, 20, bg);
if (lastInsert > 0)
dsp_rect(4, 304, 12, 12, green);
else
dsp_rect(4, 304, 12, 12, red);
}
delay(500);
}
}
void task_interpreter(void)
{
instance *it = load_program("init");
// run the script
/*int ret =*/ irun(it);
//if (ret != 0)
//goto end;
idelinstance(it);
//end:
while (1)
delay(10);
/*fail:
if (ret < 0) {
dsp_puts("\nError: ");
dsp_puts(itoa(ret, linebuf, 10));
}
goto end;*/
}