steve-bate / ChibiOS-RPi

ChibiOS fork for Raspberry PI experimentation. See wiki for Pi-specific information.
http://chibios.org/
GNU General Public License v3.0
86 stars 23 forks source link

EXTDriver #6

Open opas350 opened 9 years ago

opas350 commented 9 years ago

I'm trying to use the EXTDriver on the RPi

example:

static void extcb1(EXTDriver *extp, expchannel_t channel)

but when I compile the code I get this error:

main.c:7:20: error: unknown type name 'EXTDriver' static void extcb1(EXTDriver extp, expchannel_t channel) { ^ main.c:7:37: error: unknown type name 'expchannel_t' static void extcb1(EXTDriver extp, expchannel_t channel) {

I think that the reason of this is because the ext_lld.c has not been ported for the RPi??