STM32 W25Qxx QuadSPI Driver  0.1a
https://github.com/Crazy-Geeks/STM32-W25Q-QSPI
libs.h
Go to the documentation of this file.
1 
9 #ifndef LIBS_H_
10 #define LIBS_H_
11 
12 #include "main.h"
13 #include <stdint.h>
14 #include <stdbool.h>
15 #include <string.h>
16 
17 typedef uint8_t u8_t;
18 typedef int8_t i8_t;
19 typedef uint16_t u16_t;
20 typedef int16_t i16_t;
21 typedef uint32_t u32_t;
22 typedef int32_t i32_t;
23 typedef float_t fl_t;
24 
25 #define delay(x) HAL_Delay(x)
26 
27 #endif /* LIBS_H_ */
int8_t i8_t
8-bit signed
Definition: libs.h:18
uint32_t u32_t
32-bit unsigned
Definition: libs.h:21
uint8_t u8_t
< Lib for sprintf, strlen, etc
Definition: libs.h:17
float_t fl_t
float type
Definition: libs.h:23
uint16_t u16_t
16-bit unsigned
Definition: libs.h:19
int32_t i32_t
32-bit signed
Definition: libs.h:22
int16_t i16_t
16-bit signed
Definition: libs.h:20