Revision: 1268 Author: robhamerling Date: Sat Aug 29 13:10:39 2009 Log: Fixed validation violations of revised pwm libs Added new libraries pwm_ccp6..10 and new pwm samples to TORELEASE
http://code.google.com/p/jallib/source/detail?r=1268 Modified: /trunk/TORELEASE /trunk/include/peripheral/pwm/pwm_ccp1.jal /trunk/include/peripheral/pwm/pwm_ccp10.jal /trunk/include/peripheral/pwm/pwm_ccp2.jal /trunk/include/peripheral/pwm/pwm_ccp3.jal /trunk/include/peripheral/pwm/pwm_ccp4.jal /trunk/include/peripheral/pwm/pwm_ccp5.jal /trunk/include/peripheral/pwm/pwm_ccp6.jal /trunk/include/peripheral/pwm/pwm_ccp7.jal /trunk/include/peripheral/pwm/pwm_ccp8.jal /trunk/include/peripheral/pwm/pwm_ccp9.jal /trunk/include/peripheral/pwm/pwm_common.jal ======================================= --- /trunk/TORELEASE Thu Aug 27 13:06:19 2009 +++ /trunk/TORELEASE Sat Aug 29 13:10:39 2009 @@ -441,6 +441,8 @@ sample/16f883_blink.jal sample/16f884_blink.jal sample/16f886_blink.jal +sample/16f886_pwm_adc_freq.jal +sample/16f886_pwm_adc_res.jal sample/16f887_blink.jal sample/16f887_lcd_hd44780_4_1.jal sample/16f887_lcd_hd44780_4_4.jal ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp1.jal Sat Aug 29 03:08:42 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp1.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP1 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP1 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr1l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp10.jal Sat Aug 29 05:14:16 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp10.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP10 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP10 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr10l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp2.jal Sat Aug 29 03:08:42 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp2.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP2 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP2 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr2l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp3.jal Sat Aug 29 03:08:42 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp3.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP3 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP3 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr3l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp4.jal Sat Aug 29 03:08:42 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp4.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP4 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP4 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr4l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp5.jal Sat Aug 29 03:08:42 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp5.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP5 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP5 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr5l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp6.jal Sat Aug 29 05:14:16 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp6.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP6 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP6 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr6l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp7.jal Sat Aug 29 05:14:16 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp7.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP7 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP7 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr7l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp8.jal Sat Aug 29 05:14:16 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp8.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP8 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP8 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr8l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_ccp9.jal Sat Aug 29 05:14:16 2009 +++ /trunk/include/peripheral/pwm/pwm_ccp9.jal Sat Aug 29 13:10:39 2009 @@ -11,11 +11,12 @@ -- Performs PWM operations on the CCP9 module. -- This file is automatically included by pwm_hardware.jal -- when the target PIC has a CCP9 module. --- -- +-- -- Notes: 1. This is a heavy refactoring of the original pwm_hardware.jal -- (Stef's lib) -- 2. Partly rewritten for JalV2 version 2.4l and Jallib revision 1171. -- Reduced memory occupation. Added procedure for lowres PWM. +-- -- ------------------------------------------------------------------------------------- var byte _ccpr9l_shadow = 0 -- 8 MSbits of duty cycle ======================================= --- /trunk/include/peripheral/pwm/pwm_common.jal Sat Aug 29 03:08:42 2009 +++ /trunk/include/peripheral/pwm/pwm_common.jal Sat Aug 29 13:10:39 2009 @@ -11,9 +11,10 @@ -- It is used in combination with one or more pwm_ccp<number> libraries -- (eg. pwm_ccp1.jal, pwm_ccp2.jal, etc.). These libraries are included -- automatically dependent of the configuration of the target PIC. --- -- +-- -- Notes: -- This is a heavy refactoring of the original pwm_hardware.jal (Stef's lib). +-- -- --------------------------------------------------------------------------- --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
