Skip to content

Instantly share code, notes, and snippets.

View J-Rios's full-sized avatar
😃

Jose J-Rios

😃
  • Málaga, Spain
  • 05:18 (UTC +02:00)
View GitHub Profile
@J-Rios
J-Rios / hex_str_2_byte_array.c
Last active February 26, 2022 14:10
C Hexadecimal String To Byte Array Conversion
/* Libraries */
// Standard libc Library
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
/*****************************************************************************/
@J-Rios
J-Rios / byte_array_2_hex_str.c
Created February 26, 2022 19:26
C Byte Array To Hexadecimal String Conversion
/* Libraries */
// Standard libc Library
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
/*****************************************************************************/
Development Status :: 1 - Planning
Development Status :: 2 - Pre-Alpha
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
Development Status :: 6 - Mature
Development Status :: 7 - Inactive
Environment :: Console
Environment :: Console :: Curses
Environment :: Console :: Framebuffer
@J-Rios
J-Rios / gist:b253f9a3277c17174ca73a7faabced46
Created November 26, 2023 14:42
STM32 IDCODE Memory Addresses
STM32F030: 0x40015800 [Register DBGMCU/IDCODE]
STM32F031x: 0x40015800 [Register DBGMCU/IDCODE]
STM32F042x: 0x40015800 [Register DBGMCU/IDCODE]
STM32F072x: 0x40015800 [Register DBGMCU/IDCODE]
STM32F091x: 0x40015800 [Register DBGMCU/IDCODE]
STM32F0xx: 0x40015800 [Register DBGMCU/IDCODE]
STM32F100xx: 0xe0042000 [Register DBG/IDCODE]
STM32F101xx: 0xe0042000 [Register DBG/IDCODE]
STM32F102xx: 0xe0042000 [Register DBG/IDCODE]
STM32F103xx: 0xe0042000 [Register DBG/IDCODE]