#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>
#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>
* \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>
* \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))
#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)
* \author Francesco Sacchi <batt@develer.com>
*/
-#include "thermo_map.h"
+#include "hw/thermo_map.h"
#include "hw/hw_thermo.h"
#include <cfg/module.h>
*
*/
-/*#*
- *#* $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);