Revision: 1483 Author: robhamerling Date: Wed Nov 18 00:55:01 2009 Log: renamed 16f819 blink sample
http://code.google.com/p/jallib/source/detail?r=1483 Deleted: /trunk/sample/16f819_blink_int_osc.jal ======================================= --- /trunk/sample/16f819_blink_int_osc.jal Thu Oct 15 17:24:54 2009 +++ /dev/null @@ -1,31 +0,0 @@ --- Title: Blink 18F819 LED using internal oscillator --- Author: William Welch Copyright (c) 2009, all rights reserved. --- Sponsored by: Fiwihex www.fiwihex.com --- Compiler: 2.4 --- --- This file is part of jallib (http://jallib.googlecode.com) --- Released under the ZLIB license (http://www.opensource.org/licenses/zlib-license.html) --- --- Description: blinks LED with one-half second delay --- - -include 16f819 -pragma target fuses 0x3F30 -pragma target clock 8_000_000 - -OSCCON = 0x70 -asm nop -asm nop - -include delay - -enable_digital_io() - -alias led is pin_A0 -pin_A0_direction = output - -forever loop - led = led ^ 1 - delay_100ms(5) -end loop - -- You received this message because you are subscribed to the Google Groups "jallib" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jallib?hl=.
