Skip to content

Instantly share code, notes, and snippets.

View J-Rios's full-sized avatar
😃

Jose J-Rios

😃
  • Málaga, Spain
  • 05:23 (UTC +01:00)
View GitHub Profile
@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]
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 / 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>
/*****************************************************************************/
@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 / stm32wl_resources.md
Created November 25, 2021 13:35
STM32WL Resources
@J-Rios
J-Rios / captchas.png
Last active June 28, 2021 14:52
[Image] TLG_JoinCaptchaBot Captchas
captchas.png
@J-Rios
J-Rios / CalidadSeñalLoRa.md
Last active September 27, 2024 18:05
Posible clasificación de nivel de calidad de señal LoRa mediante umbrales de RSSI y SNR

Calidad de Señal LoRa

RSSI

Rango: -50dBm a -140dBm
	-50dBm a -70dBm: Muy Bueno
	-70dBm a -85dBm: Bueno
	-85dBm a -105dBm: Regular
	-105dBm a -120dBm: Malo
@J-Rios
J-Rios / linux_mix_audio_streams.md
Created May 28, 2020 22:34
Linux Mixing Multiple Audio Streams (play audios from different applications at same time).

Linux Mixing Multiple Audio Streams

We are going to create a virtual sound device that allows mix audio streams from multiples sources, so it can let you play audios from different applications at same time.

First we need to install next alsa packages:

sudo apt-get install alsa-oss alsaplayer mpg321 alsaplayer-alsa alsa-base
@J-Rios
J-Rios / pandoc_examples.md
Created April 30, 2020 16:23
Pandoc Examples

Try pandoc online

You can try pandoc online here.

Examples

To see the output created by each of the commands below, click on the name of the output file:

@J-Rios
J-Rios / markdown_rules.md
Created April 30, 2020 14:58
Markdown Rules

Note

This document has been copied from DavidAnson Markdownlint Repository to keep it easy to check.

Rules

This document contains a description of all rules, what they are checking for, as well as an examples of documents that break the rule and corrected versions of the examples. Any rule whose heading is struck through is deprecated, but still provided for backward-compatibility.