Uwe Hermann
99f4ca3b22
lm3s: Cosmetics.
13 years ago
Gareth McMullin
30e188cf07
Only allow one packet in TX fifos.
This fixes a problem where packets were written too quickly.
The hardware disabled the endpoint after the fist packet is sent,
and others just waited in the queue.
13 years ago
Gareth McMullin
7546ad9736
Fixed loading of .data in linker scripts.
This fixes a problem where the linker included some padding
bytes between the end of the .text section (_etext) and the
start of the .data section.
The C runtime copies from _etext, so all static initialised data
was corrupted. This change forces the .data section to be written
at _etext to avoid this problem.
13 years ago
Uwe Hermann
6ce8d61097
stm32f4-discovery/miniblink: Fix board name typo.
13 years ago
Uwe Hermann
e626a72561
stm32/dbgmcu.h: Document reserved bits, cosmetic fixes.
13 years ago
Uwe Hermann
6967a02576
stm32/iwdg.h: Document reserved bits.
13 years ago
Uwe Hermann
581084dd39
stm32/pwr.h: Document reserved bits.
13 years ago
Uwe Hermann
1d592c1627
stm32/wwdg.h: Document reserved bits, add WWDG_CFG_W.
13 years ago
Uwe Hermann
45581dc220
stm32/fsmc.h: Document reserved bits.
13 years ago
Uwe Hermann
e4dc82879e
stm32/fsmc.h: s/FSMC_PMEM_MEMHOLDX/FSMC_PMEM_MEMWAITX/.
This was a copy-paste error.
13 years ago
Uwe Hermann
b874da24f2
stm32/f4/pwr.h: Document reserved bits.
13 years ago
Uwe Hermann
b05eff8dbf
stm32/f2/pwr.h: Document reserved bits.
13 years ago
Uwe Hermann
db3c0870bb
stm32/crc.h: Document reserved bits.
13 years ago
Uwe Hermann
257fc810cb
STM32F4: Fix typos, s/F2/F4/.
13 years ago
Uwe Hermann
47a116ef4f
HACKING: Document the examples/ directory layout.
13 years ago
Uwe Hermann
6c278b19b4
Makefile: Add 'doxy' target for doxygen docs.
A top-level 'make clean' will remove the whole doxygen/ output directory.
13 years ago
Uwe Hermann
23a6f154cd
common.h: Add Doxygen main page text.
13 years ago
Uwe Hermann
ef908e0725
Doxyfile: Configure for libopencm3 needs.
13 years ago
Uwe Hermann
9a2dacd3b4
Add auto-generated Doxygen config file.
13 years ago
Uwe Hermann
6462a646d1
stm32/spi.c: Coding style fixes and typo fixes.
13 years ago
Uwe Hermann
74fcd70f93
stm32/spi.h: Fix typos, add comments.
13 years ago
Uwe Hermann
46f90a54ae
STM32F2/F4: SPI fixes.
- Rename SPI_CR2_FRF_TI to SPI_CR2_FRF_TI_MODE to match datasheet.
- Rename SPI_CR2_FRF_MOTOROLA to SPI_CR2_FRF_MOTOROLA_MODE (see above).
- Fix SPI_CR2_FRF_MOTOROLA_MODE bit definition, must be (0 << 4).
- Change SPI_SR_RXNE to SPI_SR_TIFRFE; this was probably a copy-paste
error. Also, the bit definition is (1 << 8).
13 years ago
Uwe Hermann
e797fd978b
Cosmetic fixes in license headers.
13 years ago
Stephen Caudle
4c18313da6
Fix alignment issue in data section
13 years ago
Uwe Hermann
42e531c7c4
Makefile: Fix 'install' target.
Thanks to CheBuzz on IRC for pointing this out.
13 years ago
Stephen Caudle
3c9ba2ac2d
Add usart example for STM32F4 discovery board
13 years ago
Stephen Caudle
30b5c89726
Add USART6 definitions to STM32F3 & STM32F4
13 years ago
Uwe Hermann
44bf853e6e
stm32-h103 examples: Cosmetic and coding style fixes.
13 years ago
Uwe Hermann
a3ce2924df
stm32f1/f2: Update to recent OpenOCD syntax.
Newer versions of OpenOCD expect
stm32f1x mass_erase 0
or
stm32f2x mass_erase 0
instead of
stm32x mass_erase 0
So far, there doesn't seem to be an explicit F4 command, so leave that
untouched for now.
13 years ago
Uwe Hermann
bc320f5453
stm32/f1/lisa-m/usb_hid: Fix compiler warning.
BUILD examples/stm32/f1/lisa-m/usb_hid
usbhid.c: In function 'main':
usbhid.c:316:10: warning: unused variable 'x'
13 years ago
Uwe Hermann
cc3565a544
Various cosmetic and whitespace fixes.
13 years ago
Stephen Caudle
dc19a4ecfb
Rename STM32 discovery folders to be more specific
13 years ago
Stephen Caudle
d9a76c75c2
Add timer support for STM32F2 & STM32F4
13 years ago
Stephen Caudle
505a05ccf4
Add STM32F4 fancyblink example
13 years ago
Stephen Caudle
d17e548c6f
Add STM32F4 button example
13 years ago
Stephen Caudle
62c105abeb
Fix APB1 & APB2 frequencies in STM32F4 RCC table
13 years ago
Stephen Caudle
c26abb6c25
Add pwr to STM32F4 makefile
13 years ago
Uwe Hermann
9f821a5dd4
Minor whitespace fixes.
13 years ago
Uwe Hermann
25e30fab8e
README: Update wiki and mailing list URLs.
13 years ago
Uwe Hermann
01314bbe50
README: Fix obsolete names.
13 years ago
Uwe Hermann
8cbe4030e1
README: Mention STM32F2 and STM32F4 series.
13 years ago
Piotr Esden-Tempski
3fb95ad685
Added license header to cdcacm test python script.
13 years ago
Gareth McMullin
97fa5ff815
Lisa-M HID example uses accelerometer to move mouse.
13 years ago
Piotr Esden-Tempski
990109ef47
Fixed an application side buffer issue where resending the data failed. Now the example will retry to send the mirror data untill it succeeds.
Also decreased the buffer back to 64 as it needs to be changed in more
then one place.
13 years ago
Piotr Esden-Tempski
4c26739ea2
Improved the script to give a better error count reporting.
13 years ago
Piotr Esden-Tempski
2e5f3338c0
Decreased serial read timeout on the test script to increase throughput.
13 years ago
Piotr Esden-Tempski
baa3acf116
Increased cdcacm serial buffer to 128.
13 years ago
Piotr Esden-Tempski
30d1aa957e
Added cdcacm (usb serial) example for lisa-m with a small basic stresstesting python script.
13 years ago
Gareth McMullin
e0fe43357d
usb_f107: Fixed lost 4 bytes on control OUT transaction.
13 years ago
Stephen Caudle
1fea1df39a
Fix more STM32 whitespace issues
13 years ago