Skip to content

Instantly share code, notes, and snippets.

@hlord2000
hlord2000 / nboot0.c
Created August 20, 2023 07:06
Disregarding BOOT0 Pin on STM32L4 Microcontroller
#define OPTION_BYTES_BASE 0x40022020
#define FLASH_STATUS_REGISTER_OFFSET 0x10
volatile uint32_t * FLASH_STATUS_REGISTER = (volatile uint32_t *)(OPTION_BYTES_BASE + FLASH_STATUS_REGISTER_OFFSET);
#define FLASH_STATUS_REGISTER_BUSY (1 << 16)
#define FLASH_CONTROL_REGISTER_OFFSET 0x14
volatile uint32_t * FLASH_CONTROL_REGISTER = (volatile uint32_t *)(OPTION_BYTES_BASE + FLASH_CONTROL_REGISTER_OFFSET);
@hlord2000
hlord2000 / NOOTS.TXT
Created July 18, 2023 17:02
NOOT STACK
LIONS MANE : https://www.amazon.com/Lions-Mushroom-Capsules-Month-Supply/dp/B07PM8X5CG/ref=sr_1_6?keywords=Lions+Mane&qid=1689699585&sr=8-6
ASHWAGANDA : https://www.amazon.com/Futurebiotics-Ashwagandha-Capsules-Strength-Serving/dp/B09KHK2FPF/ref=sr_1_6?keywords=ashwagandha&qid=1689699578&rdc=1&sr=8-6
GINGKO : https://www.amazon.com/Natures-Bounty-Supplement-Supports-Alertness/dp/B002Y27JYM/ref=sr_1_4?c=ts&keywords=Ginkgo+Biloba+Herbal+Supplements&qid=1689699566&s=hpc&sr=1-4&ts_id=3765701
GINSENG : https://www.amazon.com/Bronson-Supports-Endurance-Vitality-Performance/dp/B08ZYKS5QF/ref=sr_1_7?keywords=ginseng&qid=1689699548&rdc=1&sr=8-7
LECITHIN : https://www.amazon.com/Carlyle-Sunflower-Lecithin-1200mg-Softgels/dp/B07G7HSQK9/ref=sr_1_5?keywords=Lecithin&qid=1689699259&sr=8-5
VINPOCETINE : https://www.amazon.com/Piping-Rock-Vinpocetine-Supplement-Super-Strength/dp/B0BM53Y7MZ/ref=sr_1_3?keywords=vinpocetine+10mg&qid=1689699450&sr=8-3
DMAE BITARTRATE : https://www.amazon.com
/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/audio/dmic.h>
#include <zephyr/drivers/pwm.h>