• bit-banding
    STM32f103 (cortex) anyone seen any advantage from bit-banding. I have employed it a few places and always found it to be no savings in time or space. Erik
  • Asm bit banding macro
    Good day. I try to create asm bit bannding macro. it's only macro and invocation code: MACRO ;macro definition sram_bit_band_set $p1,$p2 LDR R4,=0x22000000+p1*32+4*p2 MOV R5,#1 STR R5,[R4]...
  • Defining a variable in the bit-band area
    I wonder to know is there anyone who define a variable in bit-band area in c programming language for cortex-M3. I have followed the compiler attribute based on the below link www.keil.com/...
  • Ethernet Clarification
    Thanks to all, As you all said above suggestion i moved to framing packet,,now i am on ARP sections going well... thanks once again to all...
  • Algorithm clarification
    I am writing code to calculate the baud rate registers for UART1. There is a flow chart on page 336 of the manual that I am using as a guide. There is a block that says: int(PCLK / (16 * BR * FREST...