Code commenté du projet LED

Dependencies:   BSP_DISCO_F746NG

Committer:
treina
Date:
Thu Jun 16 09:58:06 2022 +0000
Revision:
6:72febbe3ea91
Parent:
5:071136c3eefa
azd

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JohnnyK 3:4f5dc253eb7b 1 /**
JohnnyK 3:4f5dc253eb7b 2 * @file indev.h
JohnnyK 3:4f5dc253eb7b 3 *
JohnnyK 3:4f5dc253eb7b 4 */
JohnnyK 5:071136c3eefa 5 #ifdef __cplusplus
JohnnyK 5:071136c3eefa 6 extern "C" {
JohnnyK 5:071136c3eefa 7 #endif
JohnnyK 3:4f5dc253eb7b 8
JohnnyK 3:4f5dc253eb7b 9 #ifndef INDEV_H
JohnnyK 3:4f5dc253eb7b 10 #define INDEV_H
JohnnyK 3:4f5dc253eb7b 11
JohnnyK 3:4f5dc253eb7b 12 /*********************
JohnnyK 3:4f5dc253eb7b 13 * INCLUDES
JohnnyK 3:4f5dc253eb7b 14 *********************/
JohnnyK 3:4f5dc253eb7b 15 #include <stdbool.h>
JohnnyK 3:4f5dc253eb7b 16 #include <stdint.h>
JohnnyK 3:4f5dc253eb7b 17
JohnnyK 3:4f5dc253eb7b 18 /*********************
JohnnyK 3:4f5dc253eb7b 19 * DEFINES
JohnnyK 3:4f5dc253eb7b 20 *********************/
JohnnyK 3:4f5dc253eb7b 21
JohnnyK 3:4f5dc253eb7b 22 /**********************
JohnnyK 3:4f5dc253eb7b 23 * TYPEDEFS
JohnnyK 3:4f5dc253eb7b 24 **********************/
JohnnyK 3:4f5dc253eb7b 25
JohnnyK 3:4f5dc253eb7b 26 /**********************
JohnnyK 3:4f5dc253eb7b 27 * GLOBAL PROTOTYPES
JohnnyK 3:4f5dc253eb7b 28 **********************/
JohnnyK 3:4f5dc253eb7b 29 void touchpad_init(void);
JohnnyK 3:4f5dc253eb7b 30
JohnnyK 3:4f5dc253eb7b 31 /**********************
JohnnyK 3:4f5dc253eb7b 32 * MACROS
JohnnyK 3:4f5dc253eb7b 33 **********************/
JohnnyK 3:4f5dc253eb7b 34 #ifdef __cplusplus
JohnnyK 3:4f5dc253eb7b 35 }
JohnnyK 3:4f5dc253eb7b 36 #endif
JohnnyK 3:4f5dc253eb7b 37
JohnnyK 5:071136c3eefa 38 #endif