This is the firmware for the LaOS - Laser Open Source project. You can use it to drive a laser cutter. For hardware and more information, look at our wiki: http://wiki.laoslaser.org

Dependencies:   EthernetNetIf mbed

Committer:
fablabtruck
Date:
Fri Jun 08 09:26:40 2012 +0000
Revision:
0:3852426a5068
svn revision 379

Who changed what in which revision?

UserRevisionLine numberNew contents of line
fablabtruck 0:3852426a5068 1 /*
fablabtruck 0:3852426a5068 2 * Author: Adam Dunkels <adam@sics.se>
fablabtruck 0:3852426a5068 3 *
fablabtruck 0:3852426a5068 4 */
fablabtruck 0:3852426a5068 5 #ifndef __LWIP_SYS_ARCH_H__
fablabtruck 0:3852426a5068 6 #define __LWIP_SYS_ARCH_H__
fablabtruck 0:3852426a5068 7
fablabtruck 0:3852426a5068 8 typedef unsigned int u32_t;
fablabtruck 0:3852426a5068 9
fablabtruck 0:3852426a5068 10 #ifdef __cplusplus
fablabtruck 0:3852426a5068 11 extern "C" {
fablabtruck 0:3852426a5068 12 #endif
fablabtruck 0:3852426a5068 13
fablabtruck 0:3852426a5068 14 //DG 2010
fablabtruck 0:3852426a5068 15 void sys_init(void); /* To be called first */
fablabtruck 0:3852426a5068 16 u32_t sys_jiffies(void); /* since power up. */
fablabtruck 0:3852426a5068 17
fablabtruck 0:3852426a5068 18 /** Returns the current time in milliseconds,
fablabtruck 0:3852426a5068 19 * may be the same as sys_jiffies or at least based on it. */
fablabtruck 0:3852426a5068 20 u32_t sys_now(void);
fablabtruck 0:3852426a5068 21
fablabtruck 0:3852426a5068 22 #ifdef __cplusplus
fablabtruck 0:3852426a5068 23 }
fablabtruck 0:3852426a5068 24 #endif
fablabtruck 0:3852426a5068 25
fablabtruck 0:3852426a5068 26
fablabtruck 0:3852426a5068 27 #endif /* __LWIP_ARCH_CC_H__ */