Fix hw includes. Remove CVS logs. Reformat.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 27 May 2008 17:20:07 +0000 (17:20 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 27 May 2008 17:20:07 +0000 (17:20 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1401 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/arm/drv/pwm_at91.h
bertos/drv/mcp41.h
bertos/drv/ntc.h
bertos/drv/phase.h
bertos/drv/pwm.h
bertos/drv/thermo.c
bertos/drv/thermo.h

index 76c8b940067191bfed5986f24c94014fb5aeb0db..e86f523537b15f330d349f7f8d3b11246fb8c4d5 100644 (file)
@@ -41,7 +41,7 @@
 #ifndef DRV_PWM_AT91_H
 #define DRV_PWM_AT91_H
 
-#include "pwm_map.h"
+#include "hw/pwm_map.h"
 
 #include <cfg/compiler.h>
 #include <cfg/macros.h>
index e9dd60b62cfe340e2258c5c087c4d20f1ee8f4a4..827b903b544958d049d4626b3952f7f574d661a3 100644 (file)
@@ -40,7 +40,7 @@
 #ifndef DRV_MCP41_H
 #define DRV_MCP41_H
 
-#include "mcp41_map.h"
+#include "hw/mcp41_map.h"
 #include <cfg/compiler.h>
 
 #include <drv/ser.h>
index 8267d51fd5848461ec869747f80fe1666d893cab..6aa72376adf62d10aa2783f8cc75d21cb4cd1cbd 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/11/04 17:59:47  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.3  2005/06/10 08:56:47  batt
- *#* Avoid calling DEG_T_TO_DEG().
- *#*
- *#* Revision 1.2  2005/06/10 08:54:58  batt
- *#* Rename deg_t conversion macros to accomplish coding standard.
- *#*
- *#* Revision 1.1  2005/05/24 09:17:58  batt
- *#* Move drivers to top-level.
- *#*/
-
 #ifndef DRV_NTC_H
 #define DRV_NTC_H
 
-#include <ntc_map.h>
+#include "hw/ntc_map.h"
 #include <cfg/debug.h>
 #include <cfg/compiler.h>
 
index f4e760eac6d21377c86ab7d19edc289d3ba490aa..9a2341e4cc558f9221f5a4e95e0a8487324c69bf 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/11/04 18:06:44  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.1  2005/05/24 09:17:58  batt
- *#* Move drivers to top-level.
- *#*
- *#* Revision 1.9  2005/05/09 16:34:14  batt
- *#* Change some function names to accomplish coding standard; Add debug phase_initialized; Change duty_t and power_t to uint16_t.
- *#*
- *#* Revision 1.8  2005/05/02 12:37:33  batt
- *#* Split hw triac map in phase_map.h.
- *#*
- *#* Revision 1.7  2005/05/02 09:05:03  batt
- *#* Rename duty_t and power_t in triac_duty_t and triac_power_t
- *#*
- *#* Revision 1.6  2005/04/28 15:10:11  batt
- *#* Use timer API to add and set events.
- *#*
- *#* Revision 1.5  2005/04/28 12:04:46  batt
- *#* Add some comments.
- *#*
- *#* Revision 1.4  2005/04/28 10:35:45  batt
- *#* Complete phase_setpower.
- *#*
- *#* Revision 1.3  2005/04/27 19:23:40  batt
- *#* Reformat.
- *#*
- *#* Revision 1.1  2005/04/27 17:13:56  batt
- *#* Add triac phase control driver.
- *#*
- *#*/
-
-
 #ifndef DRV_PHASE_H
 #define DRV_PHASE_H
 
-#include <drv/timer.h>
-#include <phase_map.h>
+#include "hw/phase_map.h"
 #include <cfg/debug.h>
 
+#include <drv/timer.h>
+
 #define TRIAC_MAX_DUTY  100
 #define TRIAC_MAX_POWER 100
 #define TRIAC_POWER_K   TRIAC_MAX_DUTY * (1 / sqrt(2 * TRIAC_MAX_POWER))
index 2648b01f5c618facb4f0a9362197011e533c3279..f60986eb374b6a44d0d2c44d1d53f6a4e7db1f42 100644 (file)
@@ -41,7 +41,7 @@
 #ifndef DRV_PWM_H
 #define DRV_PWM_H
 
-#include <pwm_map.h>
+#include "hw/pwm_map.h"
 #include <cfg/compiler.h>
 
 #define PWM_MAX_DUTY              ((pwm_duty_t)0xFFFF)
index 3a535fb98ef4b4888cc2594d6b9c2b346a8ede96..d8e2742e6843bb4287594d59f71b236098e311a3 100644 (file)
@@ -38,7 +38,7 @@
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-#include "thermo_map.h"
+#include "hw/thermo_map.h"
 #include "hw/hw_thermo.h"
 
 #include <cfg/module.h>
index 693c086dbf4884a40515863dab3a5d0448672dc8..9fc20e0dd7b19dfce7898c4949e2133e1426980e 100644 (file)
  *
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.3  2006/09/20 20:12:41  marco
- *#* Names convention, MOD_* macros.
- *#*
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/11/04 17:59:47  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.2  2005/06/14 10:13:36  batt
- *#* Better thermo errors handling.
- *#*
- *#* Revision 1.1  2005/05/24 09:17:58  batt
- *#* Move drivers to top-level.
- *#*
- *#* Revision 1.4  2005/05/10 16:55:10  batt
- *#* Add timeout to thermo-regulator; better thermo control handling; change thermo_getStatus() to thermo_status().
- *#*
- *#* Revision 1.3  2005/05/10 09:26:54  batt
- *#* Add thermo_getStatus for getting status/errors of thermo control.
- *#*
- *#* Revision 1.2  2005/05/09 19:18:40  batt
- *#* Remove old logs.
- *#*
- *#* Revision 1.1  2005/05/09 16:40:44  batt
- *#* Add thermo-control driver
- *#*/
-
-
 #ifndef DRV_THERMO_H
 #define DRV_THERMO_H
 
+#include "hw/thermo_map.h"
+
 #include <drv/ntc.h>
-#include <thermo_map.h>
 
 void thermo_init(void);