• AT91SAM7X512 and stack init.
    I have the exmaple code from Atmel for the AT91SAM7X512, When compiled with real-view the startup code executed and jumps to Main via the __main code. However the __main code changes the Stack pointer...
  • Init
    void GpioInit(void) { // Set to inputs FIO0DIR = \ FIO1DIR = \ FIO2DIR = \ FIO3DIR = \ FIO4DIR = 0; // clear mask registers FIO0MASK =\ FIO1MASK =\ FIO2MASK =\ FIO3MASK =\ FIO4MASK = 0; /...
  • getting values at runtime in keil
    hello, anybody help me out.I want to take values at runtime in keil.
  • Runtime of if
    Hello, if there is code like if (condition) bla = blub; than the timming can be different if condition is true or false. How to make timing equal on both path? Is else dummy...
  • getting file info in keil with FATFS
    Hi All, I am writing a application for Tiva C series MCU where I need to write/read the file to/from SD card. If I read the directory by using FATFS library by calling fread as below iFResult...