Skip to content

Instantly share code, notes, and snippets.

View M0nteCarl0's full-sized avatar
evolve or repeat

Alex M0nteCarl0

evolve or repeat
View GitHub Profile
@M0nteCarl0
M0nteCarl0 / DAC.c
Created January 23, 2023 09:57
MAX1932 8 bit DAC Driver
include "DAC.h"
/******************************************************************************/
void InitDAC(void)
{
RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2,ENABLE);
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB,ENABLE);
RCC_AHB1PeriphClockCmd(CS_RCC,ENABLE);
GPIO_PinAFConfig(GPIOB, GPIO_PinSource15, GPIO_AF_SPI2);
@M0nteCarl0
M0nteCarl0 / FM25.c
Created January 23, 2023 09:54
Driver for RAMTRON FM2504 F-RAM Memory
#include "FM25.h"
/******************************************************************************
* @file FM25.c
* @author Molotaliev A.O([email protected])
* @version V 0.0.1
* @date 1-october-2016
* @brief This Driver for RAMTRON FM2504 F-RAM Memory
*
*
****************************************************************************/
@M0nteCarl0
M0nteCarl0 / GpioControler.cpp
Created January 23, 2023 09:28
STM32MP1 GpioControler HAL driver
/*
* GpioControler.cpp
*
* Created on: Sep 30, 2019
* Author: M0nteCarl0
*/
#include "GpioControler.h"
GpioControler::GpioControler():MaxCountBank(0),MaxCountLinesPerBank(0),Iter(nullptr),Chip(nullptr){
@M0nteCarl0
M0nteCarl0 / Control_ST_L6258.c
Last active June 7, 2023 18:26
STM L6258 PWM controlled high current DMOS universal motor driver HAL module
#include "Control_ST_L6258.h"
/******************************************************************************
* @file Control_ST_L625.c
* @author Molotaliev A.O([email protected])
* @version V 0.5.1
* @date 10-May-2016
* @brief This Driver for H-Bridge ST L6258(LGPL)
*
*
****************************************************************************/