• Cannot copy values from code array to another array which is a struct member (both global)
    I have the following variables: #define X ... ... code unsigned char pin[X] = { ... }; // there are values here, no 0xFF ... struct { unsigned char pin[X]; } info; and I need to copy the...
  • Cannot copy values from code array to another array which is a struct member (both global)
    I have the following variables: #define X ... ... code unsigned char pin[X] = { ... }; // there are values here, no 0xFF ... struct { unsigned char pin[X]; } info; and I need to copy the...
  • difference between saved copy and banked copy
    Note: This was originally posted on 15th January 2013 at http://forums.arm.com Hi there, I am reading ARM architecture manual v7, part B. In the discretion of system register banks on page 1144, it refers...
  • difference between saved copy and banked copy
    Note: This was originally posted on 15th January 2013 at http://forums.arm.com Hi there, I am reading ARM architecture manual v7, part B. In the discretion of system register banks on page 1144, it refers...
  • Fastest memory copy approach: CMSIS Vectory Copy or Memcpy
    Hi, I have a large vector that resides in STM32F407 Core Coupled Memory (CCM) while another vector in SRAM. Am looking for a better way to copy from one to another besides the traditional memcpy...