X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fser.c;h=bd27486b189beea4bdf3a8506beb5936a1d6949c;hb=8391f9676abafaa16a986b77b346f33ceb75dd6d;hp=cbcc33a388d9bdc435e2408f0de2950f2fde2134;hpb=81ac20d5d87b2262381f15e0a2d1cdb46ea80791;p=bertos.git diff --git a/bertos/drv/ser.c b/bertos/drv/ser.c index cbcc33a3..bd27486b 100644 --- a/bertos/drv/ser.c +++ b/bertos/drv/ser.c @@ -52,10 +52,11 @@ #include "ser.h" #include "wdt.h" +#include "timer.h" #include "ser_p.h" #include "cfg/cfg_ser.h" -#include "cfg/cfg_kern.h" +#include "cfg/cfg_proc.h" #include #include @@ -67,17 +68,17 @@ /* * Sanity check for config parameters required by this module. */ -#if !defined(CONFIG_KERNEL) || ((CONFIG_KERNEL != 0) && CONFIG_KERNEL != 1) - #error CONFIG_KERNEL must be set to either 0 or 1 in config.h +#if !defined(CONFIG_KERN) || ((CONFIG_KERN != 0) && CONFIG_KERN != 1) + #error CONFIG_KERN must be set to either 0 or 1 in cfg_kern.h #endif #if !defined(CONFIG_SER_RXTIMEOUT) - #error CONFIG_SER_TXTIMEOUT missing in config.h + #error CONFIG_SER_TXTIMEOUT missing in cfg_ser.h #endif #if !defined(CONFIG_SER_RXTIMEOUT) - #error CONFIG_SER_RXTIMEOUT missing in config.h + #error CONFIG_SER_RXTIMEOUT missing in cfg_ser.h #endif #if !defined(CONFIG_SER_DEFBAUDRATE) - #error CONFIG_SER_DEFBAUDRATE missing in config.h + #error CONFIG_SER_DEFBAUDRATE missing in cfg_ser.h #endif