• accessing array's row 0
    I have a matrix for the keyboard layout in my program as follows: code unsigned char buttons[BUTTON_COUNT][KEY_TABLE_WIDTH] = { {'8', 'u', 'ü', 'v', EMPTY_CODE}, {'7', 'r', 's', 'ş', 't'}, {...
  • accessing array's row 0
    I have a matrix for the keyboard layout in my program as follows: code unsigned char buttons[BUTTON_COUNT][KEY_TABLE_WIDTH] = { {'8', 'u', 'ü', 'v', EMPTY_CODE}, {'7', 'r', 's', 'ş', 't'}, {...
  • The third party webserver
    We are investigating if it is possible to port a third party web server on top of Keil TCP/IP stack. Keil's http server is nice, but we need some features which it does not have. The one we are looking...
  • The third party webserver
    We are investigating if it is possible to port a third party web server on top of Keil TCP/IP stack. Keil's http server is nice, but we need some features which it does not have. The one we are looking...
  • usage of interrupt for the same interrupt vertor number
    hi when we write codes like this: void f1(void) interrupt 1 { } void f2(void) interrupt 1 { } There is a link problem because the different functions use the same interrupt vector number. But...