aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2011-11-06 19:54:55 +0000
committerDimitri Sokolyuk <demon@dim13.org>2011-11-06 19:54:55 +0000
commit0137b9fed4b75376e108e6182a99f1cce6767747 (patch)
treebc028e1104da6526ec37024699b9b05c60803cd1
parentdd4d5ba09d5639d105594c835d9731788c17bc98 (diff)
we do not use anything from inttypes.h, so replace it with stdint.h
-rw-r--r--kernel/adc.c2
-rw-r--r--kernel/clock.c2
-rw-r--r--kernel/cmd.c2
-rw-r--r--kernel/ctrl.c2
-rw-r--r--kernel/dmx.c2
-rw-r--r--kernel/heartbeat.c2
-rw-r--r--kernel/hsv.c2
-rw-r--r--kernel/kernel.c2
-rw-r--r--kernel/lcd3.c2
-rw-r--r--kernel/ppm.c2
-rw-r--r--kernel/remix16.c2
-rw-r--r--kernel/rgb.c2
-rw-r--r--kernel/uart.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/kernel/adc.c b/kernel/adc.c
index 3cabeef..7a11447 100644
--- a/kernel/adc.c
+++ b/kernel/adc.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include "kernel.h"
diff --git a/kernel/clock.c b/kernel/clock.c
index d788548..7283368 100644
--- a/kernel/clock.c
+++ b/kernel/clock.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/kernel/cmd.c b/kernel/cmd.c
index 89d7a5f..bf44be4 100644
--- a/kernel/cmd.c
+++ b/kernel/cmd.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <stdlib.h>
#include "kernel.h"
diff --git a/kernel/ctrl.c b/kernel/ctrl.c
index 720002e..a44c9b1 100644
--- a/kernel/ctrl.c
+++ b/kernel/ctrl.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <stdio.h>
#include "kernel.h"
diff --git a/kernel/dmx.c b/kernel/dmx.c
index de32b2f..69e8115 100644
--- a/kernel/dmx.c
+++ b/kernel/dmx.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include "kernel.h"
#include "tasks.h"
diff --git a/kernel/heartbeat.c b/kernel/heartbeat.c
index edd1cee..16dbb0e 100644
--- a/kernel/heartbeat.c
+++ b/kernel/heartbeat.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include "kernel.h"
#include "tasks.h"
diff --git a/kernel/hsv.c b/kernel/hsv.c
index f41bf09..8ba8323 100644
--- a/kernel/hsv.c
+++ b/kernel/hsv.c
@@ -1,7 +1,7 @@
/* $Id$ */
/* public domain */
-#include <inttypes.h>
+#include <stdint.h>
void
hsv(uint8_t *r, uint8_t *g, uint8_t *b, uint16_t h, uint8_t s, uint8_t v)
diff --git a/kernel/kernel.c b/kernel/kernel.c
index 7e1587d..fe5a292 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -19,7 +19,7 @@
* http://www.control.lth.se/Publication/hen+04t.html
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <string.h>
#include <avr/io.h>
#include <avr/interrupt.h>
diff --git a/kernel/lcd3.c b/kernel/lcd3.c
index b6e2f1e..f6ef039 100644
--- a/kernel/lcd3.c
+++ b/kernel/lcd3.c
@@ -17,7 +17,7 @@
#define USE_DELAY
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <util/delay.h>
#include "kernel.h"
diff --git a/kernel/ppm.c b/kernel/ppm.c
index bcb853e..dc855fc 100644
--- a/kernel/ppm.c
+++ b/kernel/ppm.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include "kernel.h"
diff --git a/kernel/remix16.c b/kernel/remix16.c
index 22315a9..0bc5552 100644
--- a/kernel/remix16.c
+++ b/kernel/remix16.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include "kernel.h"
#include "tasks.h"
diff --git a/kernel/rgb.c b/kernel/rgb.c
index 4edd613..06ff2e1 100644
--- a/kernel/rgb.c
+++ b/kernel/rgb.c
@@ -15,7 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <inttypes.h>
+#include <stdint.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include "kernel.h"
diff --git a/kernel/uart.c b/kernel/uart.c
index defd552..e3df551 100644
--- a/kernel/uart.c
+++ b/kernel/uart.c
@@ -22,7 +22,7 @@
#define USE_RXCIE
-#include <inttypes.h>
+#include <stdint.h>
#include <stdio.h>
#include <avr/io.h>
#include <avr/wdt.h>