-
Next Club Meeting
Micromouse book
Categories
- Apec (8)
- AVR (5)
- dsPic (3)
- Hardware (22)
- Japan (25)
- Line Follower (9)
- Micromouse (92)
- minos (14)
- MMRC (1)
- News (16)
- Primus (19)
- RoboTIC (6)
- sensor (11)
- Software (2)
- STM32 (28)
- Taiwan (9)
- UK contest (15)
- Uncategorized (3)
Recent Comments
- Hamed on Improved Search Turns
- Peter Harrison on Improved Search Turns
- Hamed on Improved Search Turns
- patil rahul on Midlands Robotics and Micromouse Club
- Peter Harrison on Shapeways motor mounts arrive
-
Upcoming Events
-
May28Mon
-
Jun11Mon
-
Jun16Sat
View Calendar ✔ Subscribe
Add to Google
-
Meta
Popular Posts
- Simple ADC use on the STM32 (8,783)
- STM32 USART basics (6,004)
- STM32 Arm-Cortex bootloader (5,324)
- STM32F4 – the first taste of speed (3,390)
- Nokia 3410 LCD on the STM32 (2,804)
- Bit Banding in the STM32 (2,578)
- Micromouse Book (2,521)
- All Japan Micromouse 2011 – finals (2,491)
- STLINK SWD for STM32 (2,377)
- ARM STM32 JTAG (2,290)
Blogroll
Category Archives: STM32
Determine STM32 reset source
When your STM32 processor starts up from a reset, there are a number of possible sources for that reset. You may want to perform different initialisations depending on the exact source of the reset.
Posted in Hardware, STM32
4 Comments
Decimus 4 Begins
It has been more than two years since I promised myself that I would move on and build a new micromouse using the STM32 processor. Finally, I have done something about it. The new mouse is Decimus 4.
Posted in Micromouse, STM32
1 Comment
Adding DMA to the SPI driver with the STM32F4
Sending data over SPI with the STM32 using polling is simple and reliable but your processor is blocked, unable to do anything else until the transfer is complete. Direct Memory Access (DMA) allows you to initiate a transfer of a … Continue reading
STM32F4 uses SPI for the MAX6966 LED driver
The STM32F4xx devices are not short of pins and they can be more flexibly used than on the STM32F1xx types. On a micromouse though, there is not a lot of physical space and I am not good at routing lots … Continue reading
Posted in STM32
5 Comments
Using the STM32F4 internal oscillator
In an effort to minimise the amount of space taken up on my micromouse board, I wanted to use the internal oscillator (HSI) built in to the STM32F4 device I am using. As ever, working out how to set that … Continue reading
STLINK SWD for STM32
The standard JTAG connector for ARM processors is the huge 20 pin IDC header. It has a whole bunch of unused pins and takes up a lot of board space. There are a several alternatives that reduce the pin count … Continue reading
STM32F4 – the first taste of speed
The recently announced STM32F4 series of processors using the ARM Cortex M4 are very attractive. High speeds, large memory space and a floating point unit are among the obvious benefits although there are many other architectural changes in the ST … Continue reading
Worlds Most Powerful Cortex Microcontrollers
STMicroelectronics, today announced the introduction of its new STM32 F4 series of microcontrollers. This extension to the STM32 platform is based on the latest ARM Cortex-M4 core, which adds signal-processing capabilities and faster operations to the already outstanding portfolio of … Continue reading
Posted in STM32
Leave a comment
STM32 internal oscillator
The internal oscillator on the STM32 processors can be tuned so that an external crystal or oscillator isn’t necessary.
Bit Banding in the STM32
Wondrous though the STM32 (ARM Cortex M3) might be, it makes something of a meal of atomic access to individual bits in memory. The technique used is called bit-banding. Although it is simple enough in concept and pretty friendly to … Continue reading