• C51: Bit arrays
    I'm using an array of ints in the bit addressable memory area as a crude bit array bdata unsigned int sample_window[SAMPLE_WINDOW_LENGTH]; //bit addressable array in bit memory I'm using a mask...
  • in C51 ,SFR Bit ??
    Programe is following #,,,, sfr p0 = 0x80; sbit p10 = p0^0; sbit p11 = p0^1; void main(void) { ... fc(p10); } void fc(bit bv) { bv=1; ..... // delay bv=0; } but output of p10 is...
  • about FFT USE C51!
    5 , who has same utility code about FFT . paste here or send it to me using email ! my email ymq8328@163.com thank you in any way !
  • About C51 library
    What is the result: memcmp(s1, s2, len) when len = 0?
  • about interrupts
    hi., can we activate or deactivate an interrupt at any where in the program.? thanks in advance..!