I'm attempting to write a c++ class for handling the SCI modules in a TMS320F28335.
So far I've got a class defined which has two circular buffers, one for tx and one for rx. Now I want to include the ISR routines to handle receiving and transmitting data. I'm not sure if I should use the Hwitask within sys bios or even how to set it up to handle interrupts from one of the SCI modules.
There is a small example in the BIOS users guide but it is still a little vague.
I want my SCI ISR code implemented dynamically in code, not in the cfg file. Any good examples of using the SCI with SYS/BIOS?
A real example on how to use the HWI type would help alot. I'm quite lost. I've written many MSP430 programs but I'm just learning sys bios and the TMS320.