-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprintf_code.h
More file actions
34 lines (26 loc) · 1.07 KB
/
Copy pathprintf_code.h
File metadata and controls
34 lines (26 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
******************************************************************************
* @file printf_code.h
* @author Basavaraju B V
* @version V1.0.0
* @date 10-Dec-2013
* @brief Header for printf_code.c
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __PRINTF_CODE_H
#define __PRINTF_CODE_H
/* Includes ------------------------------------------------------------------*/
#include <stdio.h>
#include <stdarg.h>
//#include <strings.h>
#include <stdlib.h>
#include "atmega328p_usart.h"
/* Exported types ------------------------------------------------------------*/
extern uint32_t gIntegerMask;
/* Exported constants --------------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
/* Exported functions ------------------------------------------------------- */
extern void print(const char *str, ...);
#endif // __PRINTF_CODE_H