Inicio » Entradas etiquetadas como «STM32»

Archivos de la etiqueta: STM32

Simulation & emulation of the STM32F4-discovery board

Rationale The reason for using an STM32 discovery board is its affordability. That’s why I suggested in class that it be purchased for home play. The course’s lab activity has been designed in such a way as to enhance that possibility, so open-source software and/or limited versions of commercial software are used to allow you […]

Sigue leyendo →

ARM Cortex-M práctico. 1 – Introducción a los microcontroladores STM32 de St

¿Qué es esto? Estoy poniendo por escrito las clases, cacharreos, explicaciones, etc. sobre microcontroladores ARM Cortex-M. Como hay gente que me lo pide, he decidido dejar aquí un borrador de las anotaciones junto con el material adicional. Los apuntes Ten en cuenta la licencia con la que se publican estos apuntes. Descarga «ARM Cortex-M práctico. […]

Sigue leyendo →

STM32F4 Discovery and printf() redirection to debug viewer in Keil MDK-ARM

Objective The ARM Cortex-M architecture includes a facility for sending/receiving user data through special debug ports. This facility is well suited for typical printf() debug practices, where a typical serial port is utiliced. In theses cases, the idea is to write in my program something like this, #include <stdio.h> void main (void) { printf("Hello, world!"); […]

Sigue leyendo →