Revision: 1336 Author: [email protected] Date: Sun Sep 20 15:19:39 2009 Log: update CHANGELOG and TORELEASE files http://code.google.com/p/jallib/source/detail?r=1336
Modified: /trunk/CHANGELOG /trunk/TORELEASE /trunk/sample/16f877a_seven_segment.jal /trunk/tools/jallib.py ======================================= --- /trunk/CHANGELOG Sat Sep 19 10:03:49 2009 +++ /trunk/CHANGELOG Sun Sep 20 15:19:39 2009 @@ -27,7 +27,10 @@ - seven_segment samples - over 50 new blink-an-LED samples - 2 samples for multi-channel dimmers (combined use of PWM and ADC) - + - eeprom samples for 18Fs + - added sample files for PIC16f723 + - added auto start USB bootloader + compiler: - ======================================= --- /trunk/TORELEASE Sat Sep 19 00:49:39 2009 +++ /trunk/TORELEASE Sun Sep 20 15:19:39 2009 @@ -348,6 +348,22 @@ sample/16f72_blink.jal sample/16f722_blink.jal sample/16f723_blink.jal +sample/16f723_i2c_hw_slave_check_bus.jal +sample/16f723_i2c_hw_slave_echo.jal +sample/16f723_i2c_hw_slave_eeprom_simulator.jal +sample/16f723_i2c_hw_slave_msg.jal +sample/16f723_i2c_sw_l1.jal +sample/16f723_i2c_sw_master_check_bus.jal +sample/16f723_i2c_sw_master_echo.jal +sample/16f723_pwm_led.jal +sample/16f723_pwm_led_highres.jal +sample/16f723_pwm_sound.jal +sample/16f723_random.jal +sample/16f723_serial_format.jal +sample/16f723_serial_hardware.jal +sample/16f723_serial_hw_int_cts.jal +sample/16f723_serial_print.jal +sample/16f723_timer0_interval.jal sample/16f724_blink.jal sample/16f726_blink.jal sample/16f726_lcd_hd44780_4_1.jal @@ -396,7 +412,11 @@ sample/16f877a_backlight.jal sample/16f877a_blink.jal sample/16f877a_co2_t6603.jal +sample/16f877a_data_eeprom.jal +sample/16f877a_i2c_hw_l0.jal sample/16f877a_i2c_hw_l1.jal +sample/16f877a_i2c_hw_slave_check_bus.jal +sample/16f877a_i2c_hw_slave_echo.jal sample/16f877a_i2c_hw_slave_eeprom_simulator.jal sample/16f877a_i2c_hw_slave_msg.jal sample/16f877a_i2c_sw_l1.jal @@ -476,6 +496,7 @@ sample/18f1330_blink.jal sample/18f13k50_blink.jal sample/18f14k50_blink.jal +sample/18f14k50_data_eeprom.jal sample/18f14k50_i2c_hw_l0.jal sample/18f14k50_i2c_hw_l1.jal sample/18f14k50_i2c_hw_slave_check_bus.jal @@ -494,6 +515,7 @@ sample/18f14k50_serial_hw_int_cts.jal sample/18f14k50_serial_print.jal sample/18f14k50_usb_bootloader.jal +sample/18f14k50_usb_bootloader_autostart.jal sample/18f14k50_usb_hid_generic.jal sample/18f14k50_usb_hid_keyboard.jal sample/18f14k50_usb_hid_mouse.jal @@ -526,6 +548,7 @@ sample/18f2450_serial_hw_int_cts.jal sample/18f2450_serial_print.jal sample/18f2450_usb_bootloader.jal +sample/18f2450_usb_bootloader_autostart.jal sample/18f2450_usb_hid_generic.jal sample/18f2450_usb_hid_keyboard.jal sample/18f2450_usb_hid_mouse.jal @@ -580,6 +603,7 @@ sample/18f4525_blink.jal sample/18f4539_blink.jal sample/18f4550_blink.jal +sample/18f4550_data_eeprom.jal sample/18f4550_i2c_hw_l0.jal sample/18f4550_i2c_hw_l1.jal sample/18f4550_i2c_hw_slave_check_bus.jal @@ -600,6 +624,7 @@ sample/18f4550_serial_print.jal sample/18f4550_seven_segment.jal sample/18f4550_usb_bootloader.jal +sample/18f4550_usb_bootloader_autostart.jal sample/18f4550_usb_hid_generic.jal sample/18f4550_usb_hid_keyboard.jal sample/18f4550_usb_hid_mouse.jal ======================================= --- /trunk/sample/16f877a_seven_segment.jal Sun Aug 30 05:41:35 2009 +++ /trunk/sample/16f877a_seven_segment.jal Sun Sep 20 15:19:39 2009 @@ -10,7 +10,7 @@ -- This file is part of jallib (http://jallib.googlecode.com) -- Released under the BSD license (http://www.opensource.org/licenses/bsd-license.php) -- --- Description: Testing seven segment LED display +-- Description: Testing lcd_backlight -- -- -- This file defines a test for JALLIB testing, using a test-board -- defined by a BOARD file . @@ -24,7 +24,7 @@ -- -- This file has been generated from: -- * board: board_16f877a_dwarf.jal --- * test : test_jseven.jal +-- * test : test_seven_segment.jal -- ;@jallib section chipdef ======================================= --- /trunk/tools/jallib.py Wed Jul 8 05:01:22 2009 +++ /trunk/tools/jallib.py Sun Sep 20 15:19:39 2009 @@ -775,7 +775,6 @@ from picshell.parser.AnnotationParser import AnnotationParser from picshell.engine.core.PicThreadEngine import PicThreadEngine from picshell.engine.core.PicEngine import PicEngine - from picshell.engine.core.State import State from picshell.util.AssertUtil import AssertUtil from picshell.ui.UIManager import UIManager @@ -816,7 +815,7 @@ oracle['notrun'] += 1 print "Can't run test '%s' because var '%s' can't be found" % (label,var) - emu = PicEngine.newInstance(State(),hexFileName) + emu = PicEngine.newInstance("16f877a",hexFileName) # needed to access varValue function ui = UIManager() ui.emu = emu @@ -860,14 +859,18 @@ oracle = picshell_unittest(jal,asm,hex) else: oracle['failure'] = 1 - + + fout.close() + ferr.close() + finally: clean_compiler_products(filename) + if verbose: print file(fnout).read() print file(fnerr).read() - os.unlink(fnout) - os.unlink(fnerr) + #os.unlink(fnout) + #os.unlink(fnerr) return oracle --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
