Other Parts Discussed in Thread: HALCOGEN
I'm trying to get a basic echo program going on the TMS470M. In the demo program I can edit the sci callback to do so
void sciNotification(unsigned flags){
sciSend(sciREG1,1,(unsigned char *)&command);
sciReceive(sciREG1,1,(unsigned char *)&command);
}
However, when I make my own program using halcogen (to enable interupts and sci drivers) and copy the sciNotification function. It wont write to the port or call the callback function. All I see on my terminal is Bad file descriptor.
Any Ideas how I can fix?
