#include"chimera_ortho_plus.h"voiduart_init(void){SERIAL_UART_INIT();}voidled_init(void){setPinOutput(D1);setPinOutput(F4);setPinOutput(F5);writePinHigh(D1);writePinHigh(F4);writePinHigh(F5);}voidmatrix_init_kb(void){// put your keyboard start-up code here// runs once when the firmware starts upmatrix_init_user();uart_init();led_init();}