Click here to Skip to main content
15,898,010 members
Articles / Desktop Programming / Win32

AVRILOS: A simple OS for AVR microcontrollers

Rate me:
Please Sign up or sign in to vote.
4.92/5 (34 votes)
11 Jun 2011CDDL24 min read 91.9K   4.1K   60  
A Round-Robin OS (without pre-emptive multitasking) allowing rapid application development
void f_debug_readbyte    (void);
void f_debug_writebyte   (void);
void f_debug_asctab      (void);
void f_debug_bintab      (void);
void f_debug_PinA        (void);
void f_debug_PinB        (void);
void f_debug_PinC        (void);
void f_debug_PinD        (void);
void f_debug_readEEByte  (void);
void f_debug_writeEEbyte (void);
void f_debug_fpga_read   (void);
void f_debug_fpga_write  (void);
void f_debug_user_cmd    (void);
void f_debug_lcm_wrdata	 (void);
void f_debug_lcm_wrcmd	 (void);
void f_debug_lcm_read	 	 (void);
void f_debug_Port_write	 (void);
void f_debug_Port_read	 (void);
void f_debug_AnalogRead  (void);
void f_debug_lpc_read 	 (void);
void f_debug_lpc_write	 (void);
void f_debug_sst_write	 (void);
void f_debug_disable	   (void);
void f_debug_adis_read	(void);
void f_debug_adisbias_read(void);
void f_debug_adis_write(void);
void f_debug_adis_rd(void);
void f_debug_spi_rd(void);



void f_InitDebug(void);
void f_TaskDebugger(void);
void f_CheckSyntax(void);
void f_ProcessCMD(void);
void f_debug_port(INT8U data);
void f_debug_port_v(INT8U data);

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Systems Engineer AI ZeroCaliber Ltd
Cyprus Cyprus
More than 15 year of Embedded Systems development designing both hardware & software.
Experience with Product Development,lab prototypes and Automated Testers, Sensors, motors and System Engineering. Have used numerous micro-controllers/processors, DSP & FPGAs.

Please check AI ZeroCaliber if you need any help.
You may find also my personal site: Ilialex and my blog site: Ilialex Blog

Comments and Discussions