• look up table
    i am trying to use code memory space to store some constants patterns. to do this, i have defined an array in code memory space as follows: unsigned char code A[]={0x00,0x3F,0x50,0x90,0x50,0x3F,0xAA...
  • look up table
    i am trying to use code memory space to store some constants patterns. to do this, i have defined an array in code memory space as follows: unsigned char code A[]={0x00,0x3F,0x50,0x90,0x50,0x3F,0xAA...
  • static Look-up-table
    Can anybody suggest the best technique to use for storing a look-up table array in ROM? Right now I just have: unsigned char code LUT1[256] = { 0, 1, 2, ..., 255};
  • static Look-up-table
    Can anybody suggest the best technique to use for storing a look-up table array in ROM? Right now I just have: unsigned char code LUT1[256] = { 0, 1, 2, ..., 255};
  • Look up Table for XC164CS
    hello everyone, I just want to know if someone has any idea about look up table technique for sine or cosine function using keil simulator. I need to implement it in to my progam. I just want some...