Skip to content

Commit 51a6326

Browse files
committed
Added include of stdint.h header
1 parent 78efacf commit 51a6326

File tree

7 files changed

+8
-0
lines changed

7 files changed

+8
-0
lines changed

clk.h

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#ifndef __CLK_H__
3131
#define __CLK_H__
3232

33+
#include <stdint.h>
3334

3435
typedef struct {
3536
uint32_t ctl;

dma.h

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#ifndef __DMA_H__
3131
#define __DMA_H__
3232

33+
#include <stdint.h>
3334

3435
/*
3536
* DMA Control Block in Main Memory

gpio.h

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#ifndef __GPIO_H__
3131
#define __GPIO_H__
3232

33+
#include <stdint.h>
3334

3435
typedef struct
3536
{

pcm.h

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#ifndef __PCM_H__
3232
#define __PCM_H__
3333

34+
#include <stdint.h>
3435

3536
/*
3637
*

pwm.h

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#ifndef __PWM_H__
3131
#define __PWM_H__
3232

33+
#include <stdint.h>
3334

3435
/*
3536
*

rpihw.h

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#ifndef __RPIHW_H__
3232
#define __RPIHW_H__
3333

34+
#include <stdint.h>
3435

3536
typedef struct {
3637
uint32_t type;

ws2811.h

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
extern "C" {
3636
#endif
3737

38+
#include <stdint.h>
39+
3840
#include "rpihw.h"
3941
#include "pwm.h"
4042

0 commit comments

Comments
 (0)