• Using a register both in timer and main
    I had a code like below to make some Flgas set/clear; unsigned short FlagReg; int main(void) { ... FlagReg = FlagReg | 0x0001; // makes first bit TRUE ... } void Timer1Handler(void) _irq { ...
  • Using a register both in timer and main
    I had a code like below to make some Flgas set/clear; unsigned short FlagReg; int main(void) { ... FlagReg = FlagReg | 0x0001; // makes first bit TRUE ... } void Timer1Handler(void) _irq { ...
  • How to configure one same pin as input and output both
    Hi All, I am trying to implement I2C (using bit banging) protocol on TI-MSC1210Y5 micorcontroller. For implementation, I am using two pins of port 1 for providing clocking and receiving/sending...
  • How to configure one same pin as input and output both
    Hi All, I am trying to implement I2C (using bit banging) protocol on TI-MSC1210Y5 micorcontroller. For implementation, I am using two pins of port 1 for providing clocking and receiving/sending...
  • Need Help for configuring the GPDMA for both SD/MMC and SPI for ADC Read
    Hi All, We are developing an application in which we are using SD Card Interfaced using MCI and DMA and SSP0 is confiugred as SPI with DMA to read the data from the ADC to USB RAM. But i have...