• libffi (Foreign Function Interface) for AMR7 and Cortex-M3
    I am looking for a library that enables calling a function on target (ARM7 or/and Cortex-M3) at run time by knowing the function's declaration (arguments and their types as well as return type) and entry...
  • Special character languages for webserver
    Hi Everyone, I am currently using Keil MDK ARM along with a STM32F4 micro. I am using nearly all library functions : TCP/IP, FFS, USB, RTOS... I host a webserver for which I use language files...
  • Logic Characters code
    Hi What is the code used to say port2 = port2 anded with 0x7f This will clear all bits of port 2 but bit 7? I thought it was P2 &= 0x7f this doesnt work, so i tried P2 = (P2 && x7f) ...
  • Hex To Character Conversion Problem
    I am Trying to Split a hexa value and read it over the serial port let me show you what i mean by that : <per> char arr[10]=(0); int i,k,l; arr[0]=0x11; arr[1]=0x12; : : arr[7]=0x59; arr...
  • problem with character pointer
    Hello, 1) I am declaring a pointer to a string as Xdata Unsigned char *sTemperature [4] = {"NIL","25 ","30 ","37 "}; This is shown in the .lst file as a array occupying only 12 bytes where as it...