Will the CircleOS documentation be updated to version 1.6?
Will the CircleOS documentation be updated to version 1.6, or will you wait for a more substantial revision before updating the documentation? The version currently available is for CircleOS version 1.5.
Thanks,
Dale Wheat
Offline
#
2
2007-11-03 21:58:55Will the CircleOS documentation be updated to version 1.6?
Re: Will the CircleOS documentation be updated to version 1.6?
You are right. We should regenerate (using doxygen) the documentation. Note that the change between 1.5 and 1.6 is very minor: only 2 functions have been introduced to redirect the irq (and the irq table is now set into the RAM instead of FLASH). These functions (located in util.c) are: tHandler UTIL_GetIrqHandler( int Offs ); void UTIL_SetIrqHandler( int Offs, tHandler pHDL ); where: typedef void (*tHandler) ( void );
Ofs is the offset of the handler in the NVIC table. These functions are used in the MousePrimer project to redirect the LP_USB interrupt to the application.