This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 | |
* | |
* | |
****************************************************************************/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* GpioControler.cpp | |
* | |
* Created on: Sep 30, 2019 | |
* Author: M0nteCarl0 | |
*/ | |
#include "GpioControler.h" | |
GpioControler::GpioControler():MaxCountBank(0),MaxCountLinesPerBank(0),Iter(nullptr),Chip(nullptr){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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) | |
* | |
* | |
****************************************************************************/ |
NewerOlder