mirror of
https://github.com/ayabusa/Numworks-zeta-os.git
synced 2025-04-27 04:01:21 +00:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
#include "main.h"
|
|
|
|
// this is our main function, I separated it from the c++ code because I don't like this language
|
|
void main_entry(){
|
|
// init all the peripherals
|
|
laplace_init();
|
|
|
|
// infinite loop
|
|
while (1){
|
|
/*
|
|
struct button * keyboard_state = keyboard_scan();
|
|
|
|
for(int i =0; i < 54; i++){
|
|
if(keyboard_state[i].column == 4 && keyboard_state[i].row == 'H'){
|
|
if(keyboard_state[i].state){
|
|
set_led_blue(true);
|
|
}else{
|
|
set_led_blue(false);
|
|
}
|
|
}
|
|
if(keyboard_state[i].column == 3 && keyboard_state[i].row == 'H'){
|
|
if(keyboard_state[i].state){
|
|
set_led_green(true);
|
|
}else{
|
|
set_led_green(false);
|
|
}
|
|
}
|
|
}*/
|
|
/*
|
|
if(get_key('G', 3)){
|
|
set_led_red(true);
|
|
}else{
|
|
set_led_red(false);
|
|
}*/
|
|
|
|
set_led_blue(true);
|
|
ms_wait(5000);
|
|
set_led_blue(false);
|
|
ms_wait(5000);
|
|
}
|
|
|
|
} |