mirror of
https://github.com/LIV2/pistorm.git
synced 2025-12-06 07:02:48 +00:00
16 lines
354 B
C
16 lines
354 B
C
// SPDX-License-Identifier: MIT
|
|
|
|
int handle_register_read_dummy(unsigned int addr, unsigned char type, unsigned int *val) {
|
|
if (addr) {}
|
|
if (type) {}
|
|
if (val) {}
|
|
return -1;
|
|
}
|
|
|
|
int handle_register_write_dummy(unsigned int addr, unsigned int value, unsigned char type) {
|
|
if (addr) {}
|
|
if (type) {}
|
|
if (value) {}
|
|
return -1;
|
|
}
|