mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-25 23:24:15 +01:00
421d0438f3
This PR completely removes `task.c / task.h` from `sw/controller` STM32 code. Additionally, these changes were implemented: - Updated IPL3 - Added new diagnostic data (voltage and temperature) readout commands for USB and N64 - Fixed some issues with FlashRAM save type - Joybus timings were relaxed to accommodate communication with unsynchronized master controller (like _Datel Game Killer_, thanks @RWeick) - N64 embedded test program now waits for release of button press to proceed - Fixed issue where, in rare circumstances, I2C peripheral in STM32 would get locked-up on power-up - LED blinking behavior on SD card access was changed - LED blink duration on save writeback has been extended - Minor fixes through the entire of hardware abstraction layer for STM32 code - Primer now correctly detects issues with I2C bus during first time programming - `primer.py` script gives more meaningful error messages - Fixed bug where RTC time was always written on N64FlashcartMenu boot - sc64deployer now displays "Diagnostic data" instead of "MCU stack usage"
52 lines
904 B
C
52 lines
904 B
C
#include <stdbool.h>
|
|
#include "button.h"
|
|
#include "cfg.h"
|
|
#include "cic.h"
|
|
#include "dd.h"
|
|
#include "flashram.h"
|
|
#include "fpga.h"
|
|
#include "hw.h"
|
|
#include "isv.h"
|
|
#include "led.h"
|
|
#include "rtc.h"
|
|
#include "sd.h"
|
|
#include "timer.h"
|
|
#include "usb.h"
|
|
#include "writeback.h"
|
|
|
|
|
|
void app (void) {
|
|
hw_app_init();
|
|
|
|
timer_init();
|
|
|
|
while (fpga_id_get() != FPGA_ID);
|
|
|
|
rtc_init();
|
|
|
|
button_init();
|
|
cfg_init();
|
|
cic_init();
|
|
dd_init();
|
|
flashram_init();
|
|
isv_init();
|
|
led_init();
|
|
sd_init();
|
|
usb_init();
|
|
writeback_init();
|
|
|
|
while (true) {
|
|
button_process();
|
|
cfg_process();
|
|
cic_process();
|
|
dd_process();
|
|
flashram_process();
|
|
isv_process();
|
|
led_process();
|
|
rtc_process();
|
|
sd_process();
|
|
usb_process();
|
|
writeback_process();
|
|
}
|
|
}
|