Skip to content

Commit 5d2aca7

Browse files
authored
Include stdint in cellular types header file (#53)
* Update cellular library to MIT license * Include stdint in cellular types header file * Include stdint for uint8_t, uint32_t .... * Remove cellular_common.h include in cellular_api.h. Cellular common is designed to be used by cellular module porting. * Fix spelling check
1 parent 28e9723 commit 5d2aca7

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

source/include/cellular_api.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838

3939
/* IoT Cellular data types. */
4040
#include "cellular_types.h"
41-
#include "cellular_common.h"
4241

4342
/* Hardware interface. */
4443
#include "cellular_comm_interface.h"

source/include/cellular_types.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
#endif
3737
/* *INDENT-ON* */
3838

39+
/* Includes for standard bool and int. */
3940
#include <stdbool.h>
41+
#include <stdint.h>
4042

4143
/**
4244
* @ingroup cellular_datatypes_paramstructs

0 commit comments

Comments
 (0)