Typos.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 26 May 2008 09:42:37 +0000 (09:42 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 26 May 2008 09:42:37 +0000 (09:42 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1359 38d2e660-2303-0410-9eaa-f027e97ec537

15 files changed:
bertos/hw/hw_buzzer.h
bertos/hw/hw_buzzerled.h
bertos/hw/hw_cpu.h
bertos/hw/hw_dataflash.c
bertos/hw/hw_dc_motor.h
bertos/hw/hw_kbd.h
bertos/hw/hw_lcd.h
bertos/hw/hw_mcp41.c
bertos/hw/hw_mcp41.h
bertos/hw/hw_ntc.h
bertos/hw/hw_phase.c
bertos/hw/hw_phase.h
bertos/hw/hw_sensor.h
bertos/hw/hw_ser.h
bertos/hw/hw_tc520.h

index a9ebafdf2d8c28a12d3bb20e2e776be155a5670a..1b6d2f273189ceb0050186a1c5d6f9709ef60a72 100644 (file)
@@ -41,7 +41,7 @@
 #ifndef HW_BUZZER_H
 #define HW_BUZZER_H
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 #define BUZZER_BIT      1 
 #define IS_BUZZER_ON    0
index 7e089d129b4391fe6576d7c7618b8e82f4f0b0c5..afa01544ba03a5fbf3a3d0dd3eaded828255f742 100644 (file)
@@ -41,7 +41,7 @@
 #ifndef HW_BUZZERLED_H
 #define HW_BUZZERLED_H
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 
 #endif /* HW_BUZZERLED_H */
index cab6bb4072d46efe92bbe7d04dc874ce0260d56a..02e2d0c4bc0fc88661e5141b44268ed8022d4e2e 100644 (file)
@@ -40,7 +40,7 @@
 #ifndef HW_CPU_H
 #define HW_CPU_H
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 /// CPU Clock frequency 
 #define CLOCK_FREQ     (10000000UL /* Implement me! */)
index 4d6f130ebbede96d54d14f0245eeba530110b912..bbc1b469b8c712136172a5918173930c8d63463b 100644 (file)
@@ -42,7 +42,7 @@
 #include <cfg/module.h>
 #include <cfg/macros.h>
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 MOD_DEFINE(hw_dataflash);
 
index 0244cdefff8f305eff509bd98b530d3880bff5a3..5e3fea3ca90952a7381f0ddd88db9ff23182cc92 100644 (file)
@@ -40,7 +40,7 @@
 #ifndef HW_DC_MOTOR_H
 #define HW_DC_MOTOR_H
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 //DC motor 0
 #define DC_MOTOR0_EN_PIN      /* Implement me! */
index 654e830fcf0a3d764a4f5b578f7f332103507caa..6522adb4a95a05811778bdcd75ea136104c702a7 100644 (file)
@@ -46,7 +46,7 @@
 
 #include <cfg/macros.h>
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 #define K_RPT_MASK (K_UP | K_DOWN | K_OK | K_CANCEL)
 
index 6f115018ccbbd74d968b342f8732a7292e7f7f4c..a6521f40a4a957777248e3ae9c25c9f77a8ab2ca 100644 (file)
@@ -52,7 +52,7 @@
 #include <cpu/irq.h>
 #include <cpu/types.h>
 
-#warning TODO: This is example implementation, you must implement it!
+#warning TODO:This is an example implementation, you must implement it!
 
 /**
  * \name LCD I/O pins/ports
index 3586543914888911c3bb16e5fadccc93c963e30b..ff2bc846c5f21681b4e88dd7b587b163e2b0805a 100644 (file)
@@ -40,7 +40,7 @@
 #include <cfg/macros.h>
 #include <cfg/compiler.h>
 
-#warning TODO: This is example implementation, you must implement it!
+#warning TODO:This is an example implementation, you must implement it!
 
 const uint16_t mcp41_ports[MCP41_CNT] = 
 {
index 1289d60d6bed841a4fd3d820c48df55f4e2fc3ca..e27bd374df98c6095a1243df6c5f615b81f9133e 100644 (file)
@@ -43,7 +43,7 @@
 #include <cfg/compiler.h>
 
 
-#warning TODO: This is example implementation, you must implement it!
+#warning TODO:This is an example implementation, you must implement it!
 
 
 INLINE void SET_MCP41_DDR(Mcp41Dev dev)
index ffab815d1251febe85939e008a917072f17c3926..49152a451cdb840fbe256f8fad06d3736c236805 100644 (file)
@@ -98,7 +98,7 @@
 #include <drv/ntc.h>
 #include <drv/adc.h>
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 extern const res_t      NTC_RSER[NTC_CNT];
 extern const res_t      NTC_RPAR[NTC_CNT];
index 887c96fffcea16d4e74acf74c88bc9628ce7430b..c3e9ac97c25bd5d8f12eaf9b3b4d123387afb1a1 100644 (file)
@@ -41,6 +41,6 @@
 
 #include "hw_phase.h"
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 #endif /* HW_PHASE_H */
index 2577dc887962f5374270dc758fdddbcd00fb1210..f1cf887e07f895848e9f878025144a2521336ea2 100644 (file)
@@ -44,7 +44,7 @@
 
 #include <cfg/compiler.h>
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 #define PHASE_HW_INIT  do { /* Implement me! */ }while (0)
 
index 1342f754f6799e3dbf0e82805b4e99d03914a7f5..c7e531259430ca18ca64475a18a32cf965d55fb8 100644 (file)
@@ -40,7 +40,7 @@
 #ifndef HW_SENSOR_H
 #define HW_SENSOR_H
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 #define NUM_HOME_SENSORS 1
 
index 62df8718844c9ffc3e1183b77470d443d4b96087..746db76965809f6735a79697f012a4f313e36606 100644 (file)
  * \author Daniele Basile <asterix@develer.com>
  */
 
-
 #ifndef HW_SER_H
 #define HW_SER_H
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implementation, you must implement it!
 
 
 #endif /* HW_SER_H */
index 6e1dc3c16c21eca4805f19633e71692761aea477..3ff492d5610c819c8544313ca960940b5de1ec4c 100644 (file)
@@ -42,7 +42,7 @@
 
 #include <cfg/compiler.h>
 
-#warning TODO:This is example implemetantion, you must implement it! 
+#warning TODO:This is an example implentation, you must implement it!
 
 #define CE_PIN      0
 #define DV_PIN      0