• Lookup Table
    Hi, I am new to lookup table. how can I create and call the lookup table's content. For example, I want to create a delay(); then the value of delay I want to take from the table. How can I do that...
  • LOOKUP TABLES
    I need to know about what a lookup table exactly is. I'm studying the 8051 uC, I am following the book "The 8051 Microcontroller, by I. Scott MacKenzie". There's nothing much mentioned about lookup tables...
  • Lookup Tables
    Hello, I am writing a program that has to multiply the incoming DAC data on the ADuC812 8051 by a sixth order polynomial equation. I was wondering if anyone had any information regarding using look up...
  • Lookup Table Using Array
    Hi, This is my code: #define NUMBER_OF_ROWS 50 #define NUMBER_OF_COLS 2 unsigned int Array[NUMBER_OF_ROWS] [NUMBER_OF_COLS] = { {100,50}, {20 ,10 }, {16 , 8 }, {14 , 7 }, {12 , 6 }, ...
  • lookup table in code segment
    Hi there, I had a font bitmap table which is 1088 bytes. The Ram in chip is not big enough. So I am thinking to put it in code segment. My questions are How do I do it in C and If the lut were in code...