Re: Driver Headers

2020-09-19 Thread Gregory Nutt
drivers/ should be holding internal to the driver interfaces, such register definitions, low level communication interfaces readreg, writereg, etc... that might be shared across implementations. include/nuttx//.h should hold the interfaces/types required to interact with the driver, registra

Re: Driver Headers

2020-09-19 Thread Gregory Nutt
drivers/ should be holding internal to the driver interfaces, such register definitions, low level communication interfaces readreg, writereg, etc... that might be shared across implementations. include/nuttx//.h should hold the interfaces/types required to interact with the driver, registratio

Re: Driver Headers

2020-09-19 Thread Gregory Nutt
drivers/ should be holding internal to the driver interfaces, such register definitions, low level communication interfaces readreg, writereg, etc... that might be shared across implementations. include/nuttx//.h should hold the interfaces/types required to interact with the driver, registrati

Driver Headers

2020-09-19 Thread Brennan Ashton
I am a little confused by what should be stored in the header files for drivers in these two locations and I do not want to further any existing mistakes: include/nuttx//.h and drivers/ To mean it seems it should be organized like this: drivers/ should be holding internal to the driver interface