• sending numerical values to the hyper terminal
    hi, I am using a 8051 microcontroller in my project. The purpose of the project is to count the pulses using a controller. I have configured 8051 in the counter mode and the counted value is being sent...
  • Locating numerous copies of the code in the memory?
    Hi, I will really appreciate your help with the following problem. I wrote a program and I need to locate 2 copies of it in the memory of a CC1110 chip at 2 absolute,predefined addresses.Each of...
  • Hexadecimal Arithmetic
    I want to carry out following Hexadecimal Arithmetic operation using C code Multiplication...................................... char A[2] = { 0x01, 0x02}; char B[2] = { 0x03, 0x04}; I want...
  • numerical error handling with arm libraries
    It appears that the only math related system errors handled by errno in the arm C libraries are: EDOM, ERANGE, EILSEQ, The default behavior for divide by zero is stated as "not trapped, returns...
  • fopen fails after numerous successes
    Hello, I have trouble writing an file-copy function. My fcopy-function should read data from a file into a buffer, then write the buffer to another file. It works fine for several times in succession...