Free Online Courses & Workshops For ARM Cortex-M Microcontrollers

STMicroelectronics and Digikey are co-sponsoring an EE Times University online training course entitled “Fundamentals of Microcontrollers (MCUs): Hands-On Workshop”. The first two 45-minutes sessions will be theoretical and provide and overview of micro-controllers, and explain methods to select an MCU for a given project. The first 1,000 persons based in the US or Canada, who attended the first 2 sessions, will receive a free STM32F4 Discovery Board (ARM Cortex M4). The three next sessions, conveniently taking place about a week later, hopefully after you’ve received your board, will be an actual workshop with STM32F429 Discovery Board. Here’s the detailed schedule for the training: December 2, 2013, 12PM (Eastern Time) –  Session 1 – Introduction to Microcontrollers Common microcontroller architectures Pipelining Peripherals: Timers, Communication, Analog December 3, 2013, 12PM (Eastern Time) – Session 2 – Selecting the Right Microcontroller 10 Steps to Selecting a microcontroller What to look for in a […]

ARM NEON Tutorial in C and Assembler

The Advanced SIMD extension (aka NEON or “MPE” Media Processing Engine) is a combined 64- and 128-bit single instruction multiple data (SIMD) instruction set that provides standardized acceleration for media and signal processing applications similar to MMX, SSE and 3DNow! extensions found in x86 processors. Doulos has a video tutorial showing how you can exploit NEON instructions in assembler, how to modify your C code and provides the compile options for gcc to enable NEON during the build. Abstract: With the v7-A architecture, ARM has introduced a powerful SIMD implementation called NEON™. NEON is a coprocessor which comes with its own instruction set for vector operations. While NEON instructions could be hand coded in assembler language, ideally we want our compiler to generate them for us. Automatic analysis whether an iterative algorithm can be mapped to parallel vector operations is not trivial not the least because the C language is […]