Tagged Questions

3
votes
10answers
2k views

Keeping time using timer interrupts an embedded microcontroller

This question is about programming small microcontrollers without an OS. In particular, I'm interested in PICs at the moment, but the question is general. I've seen several times the following ...
2
votes
2answers
469 views

Netmf SPI master to Pic18f4550 slave synchronization problem (C18)

A .NET Micro Framework device (ChipworkX in this case) sends a byte through the SPI interface to a Pic18f. Having PIE1bits.SSPIE enabled the following code is executed on interrrupt: void high_isr ...
2
votes
3answers
705 views

USART transmit problems on a PIC

I'm trying to send data to an SD card from a PIC18f4580, but the PIC is not sending what it should be. related global variables: unsigned char TXBuffer[128]; //tx buffer unsigned char TXCurrentPos = ...
1
vote
2answers
215 views

What is a normal interrupt latency and context saving time on Microchip C18?

I am using the Microchip C18 compiler and on occurrence of an interrupt I am experiencing a quite long delay before the ISR code starts running. As an experiment, this is in my main function: ...