Posted on May 17, 2011 at 13:46Thomas, I am using:arm-none-eabi-gcc (Sourcery G++ 4.4-92) 4.4.1Copyright (C) 2009 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTA...
Posted on May 17, 2011 at 13:46How are you measuring the object size? Run readelf on the object file to see how big each section is. Obviously, not all of the sections below go into the final image. I believe sections 7-11 will be left out of the f...
Posted on May 17, 2011 at 13:46Tom, I used something like this: http://www.siwawi.arubi.uni-kl.de/avr_projects/arm_projects/arm_memcards/stm32_chanfat_mthomas_20100114.zip, although this is newer than the one I used. This sample now supports DMA tr...
Posted on May 17, 2011 at 13:46Thomas, I am using http://elm-chan.org/fsw/ff/00index_e.html to do MMC card access. The portion of the code which does the SPI interface is tiny -- you can modify it to use the latest std peripheral library easily. I ...
Posted on May 17, 2011 at 13:46Ian, I have used the STM32's CRC module, and it produces the same CRC32 result as the crc32 in python's zlib module, and other crc32 calculators. bit-reverse 0xC704DD7B = 0xDEBB20E3 0xDEBB20E3 ^ 0xFFFFFFFF = 0x2144DF1C...