This commit is contained in:
rusefillc 2023-05-24 11:20:56 -04:00
parent e96f0e13bf
commit 45d8004703
1 changed files with 12 additions and 0 deletions

View File

@ -30,3 +30,15 @@ brain_pin_e parseBrainPin(const char *str) {
int pin = atoi(pinStr);
return (brain_pin_e)(basePin + pin);
}
ioportid_t * getGpioPorts() {
return nullptr;
}
uint32_t getTimeNowLowerNt() {
return 0;// TODO: at32 port_rt_get_counter_value();
}
unsigned int getBrainPinOnchipNum(void) {
return BRAIN_PIN_ONCHIP_PINS;
}