Revision: 1260
Author: robhamerling
Date: Fri Aug 28 13:03:32 2009
Log:
  Deleting obsolete blink-an-LED samples (because of withdrawn device files)


http://code.google.com/p/jallib/source/detail?r=1260

Deleted:
  /trunk/sample/12f520_blink.jal
  /trunk/sample/18f87k22_blink.jal
  /trunk/sample/18f87k90_blink.jal

=======================================
--- /trunk/sample/12f520_blink.jal      Mon Aug 17 00:12:10 2009
+++ /dev/null
@@ -1,46 +0,0 @@
--- ------------------------------------------------------
--- Title: Blink-an-LED of the Microchip pic12f520
---
--- Author: Rob Hamerling, Copyright (c) 2008..2009, all rights reserved.
---
--- Adapted-by:
---
--- Compiler: 2.4l
---
--- This file is part of jallib  (http://jallib.googlecode.com)
--- Released under the BSD license  
(http://www.opensource.org/licenses/bsd-license.php)
---
--- Description:
--- Sample blink-an-LED program for Microchip PIC12f520.
---
--- Sources:
---
--- Notes:
---  - File creation date/time: 17 Aug 2009 08:59:44.
---
--- ------------------------------------------------------
---
-include 12f520                    -- target PICmicro
---
--- This program assumes the internal oscillator
--- is running at a frequency of 4 MHz.
-pragma target clock 4_000_000      -- oscillator frequency
--- configuration memory settings (fuses)
-pragma target OSC  INTOSC_NOCLKOUT     -- internal oscillator
-pragma target IOSCFS  F4MHZ        -- select 4 MHz
-pragma target WDT  disabled        -- no watchdog
-pragma target MCLR external        -- reset externally
---
-enable_digital_io()                -- disable analog I/O (if any)
---
--- You may want to change the selected pin:
-alias   led      is pin_A0
-pin_A0_direction =  output
---
-forever loop
-   led = on
-   _usec_delay(250000)
-   led = off
-   _usec_delay(250000)
-end loop
---
=======================================
--- /trunk/sample/18f87k22_blink.jal    Mon Aug 17 00:12:10 2009
+++ /dev/null
@@ -1,46 +0,0 @@
--- ------------------------------------------------------
--- Title: Blink-an-LED of the Microchip pic18f87k22
---
--- Author: Rob Hamerling, Copyright (c) 2008..2009, all rights reserved.
---
--- Adapted-by:
---
--- Compiler: 2.4l
---
--- This file is part of jallib  (http://jallib.googlecode.com)
--- Released under the BSD license  
(http://www.opensource.org/licenses/bsd-license.php)
---
--- Description:
--- Sample blink-an-LED program for Microchip PIC18f87k22.
---
--- Sources:
---
--- Notes:
---  - File creation date/time: 17 Aug 2009 09:02:55.
---
--- ------------------------------------------------------
---
-include 18f87k22                    -- target PICmicro
---
--- This program assumes a 20 MHz resonator or crystal
--- is connected to pins OSC1 and OSC2.
--- Unspecified configuration bits may cause a different frequency!
-pragma target clock 20_000_000     -- oscillator frequency
--- configuration memory settings (fuses)
-pragma target OSC  HS_MEDIUM              -- HS crystal or resonator
-pragma target WDT  disabled        -- no watchdog
-pragma target MCLR external        -- reset externally
---
-enable_digital_io()                -- disable analog I/O (if any)
---
--- You may want to change the selected pin:
-alias   led      is pin_A0
-pin_A0_direction =  output
---
-forever loop
-   led = on
-   _usec_delay(250000)
-   led = off
-   _usec_delay(250000)
-end loop
---
=======================================
--- /trunk/sample/18f87k90_blink.jal    Mon Aug 17 00:12:10 2009
+++ /dev/null
@@ -1,46 +0,0 @@
--- ------------------------------------------------------
--- Title: Blink-an-LED of the Microchip pic18f87k90
---
--- Author: Rob Hamerling, Copyright (c) 2008..2009, all rights reserved.
---
--- Adapted-by:
---
--- Compiler: 2.4l
---
--- This file is part of jallib  (http://jallib.googlecode.com)
--- Released under the BSD license  
(http://www.opensource.org/licenses/bsd-license.php)
---
--- Description:
--- Sample blink-an-LED program for Microchip PIC18f87k90.
---
--- Sources:
---
--- Notes:
---  - File creation date/time: 17 Aug 2009 09:02:56.
---
--- ------------------------------------------------------
---
-include 18f87k90                    -- target PICmicro
---
--- This program assumes a 20 MHz resonator or crystal
--- is connected to pins OSC1 and OSC2.
--- Unspecified configuration bits may cause a different frequency!
-pragma target clock 20_000_000     -- oscillator frequency
--- configuration memory settings (fuses)
-pragma target OSC  HS_MEDIUM              -- HS crystal or resonator
-pragma target WDT  disabled        -- no watchdog
-pragma target MCLR external        -- reset externally
---
-enable_digital_io()                -- disable analog I/O (if any)
---
--- You may want to change the selected pin:
-alias   led      is pin_A0
-pin_A0_direction =  output
---
-forever loop
-   led = on
-   _usec_delay(250000)
-   led = off
-   _usec_delay(250000)
-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=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to