44 lines
783 B
C
44 lines
783 B
C
/*
|
|
* main.c
|
|
*
|
|
* Created on: Apr 25, 2015
|
|
* Author: mari
|
|
*/
|
|
#include <stm32f4xx.h>
|
|
#include <arm_math.h>
|
|
#include <system_stm32f4xx.h>
|
|
|
|
#include <ff.h>
|
|
|
|
#define OUTPUT(pin) (0b01 << (pin * 2))
|
|
|
|
FATFS SDfs;
|
|
FIL file;
|
|
|
|
void test(char a, char b, char c, char d, char e,char f, char g, char h, char i, char j);
|
|
void gna();
|
|
int main() {
|
|
RCC->AHB1ENR |= RCC_AHB1ENR_GPIODEN;
|
|
__DSB();
|
|
GPIOD->MODER = OUTPUT(12);
|
|
SysTick_Config(8*1680000);
|
|
test(1,2,3,4,5,6,7,8,9,10);
|
|
//f_mount(&SDfs, "0:/",1);
|
|
//f_open(&file, "0:/meow.txt", FA_READ);
|
|
while(1);
|
|
|
|
}
|
|
|
|
|
|
void test(char a, char b, char c, char d, char e,char f, char g, char h, char i, char j) {
|
|
gna();
|
|
GPIOD->ODR ^= a+b+c+d+e+f+g+h+i+j;
|
|
}
|
|
void gna() {
|
|
GPIOD->ODR = 0;
|
|
}
|
|
void SysTick_Handler()
|
|
{
|
|
GPIOD->ODR ^= (1<<12);
|
|
}
|