*
* Copyright 2003, 2004, 2006 Develer S.r.l. (http://www.develer.com/)
* Copyright 2000 Bernie Innocenti <bernie@codewiz.org>
- *
* -->
*
* \brief Buffered serial I/O driver
#error CONFIG_SER_DEFBAUDRATE missing in config.h
#endif
-#if CONFIG_KERNEL
+#if CONFIG_KERNEL && CONFIG_KERN_SCHED
#include <kern/proc.h>
+#else
+ #define proc_yield() do {} while(0)
#endif
#if CONFIG_SER_TXTIMEOUT != -1 || CONFIG_SER_RXTIMEOUT != -1
/* Wait while buffer is full... */
do
{
- wdt_reset();
-#if CONFIG_KERNEL && CONFIG_KERN_SCHED
/* Give up timeslice to other processes. */
- proc_switch();
-#endif
+ proc_yield();
+ wdt_reset();
+
#if CONFIG_SER_TXTIMEOUT != -1
if (timer_clock() - start_time >= port->txtimeout)
{
ticks_t start_time = timer_clock();
#endif
+
/* Wait while buffer is empty */
do
{
- wdt_reset();
-#if CONFIG_KERNEL && CONFIG_KERN_SCHED
/* Give up timeslice to other processes. */
- proc_switch();
-#endif
+ proc_yield();
+ wdt_reset();
+
#if CONFIG_SER_RXTIMEOUT != -1
if (timer_clock() - start_time >= port->rxtimeout)
{
while (!fifo_isempty(&fds->txfifo)
|| fds->hw->table->txSending(fds->hw))
{
- #if CONFIG_KERNEL && CONFIG_KERN_SCHED
/* Give up timeslice to other processes. */
- proc_switch();
- #endif
+ proc_yield();
wdt_reset();
}
return 0;
#endif
void proc_exit(void);
-void proc_switch(void);
+void proc_yield(void);
+#define proc_switch proc_yield /* OBSOLETE */
+
int proc_testSetup(void);
int proc_testRun(void);
int proc_testTearDown(void);
#endif
#endif
-/* OBSOLETE */
-#define CONFIG_KERN_DEFSTACKSIZE CONFIG_PROC_DEFSTACKSIZE
-
/* Memory fill codes to help debugging */
#if CONFIG_KERN_MONITOR
#include <cpu/types.h>