People, I need to know your opinion about the following problems: 1. I have a project in which I'm sending an ascii string and store it in stacks in bank1,2 or...
16236
multitrain2000
Sep 1, 2004 9:35 am
Hello to all I'm new in PIC development and I am very pleased to use JAL as a programming language. It's simplicity is marvelous and is as easy to use as...
16237
Rob Hamerling
digithalys
Sep 1, 2004 10:50 am
Hi Richard, [Rob] ... [Richard] ... The config word in your hex file is 0x3F32. As far as I can see all 'unused/reserved39; bits of the config word - which read...
16238
6280@...
Sep 1, 2004 10:53 am
Can you believe I refinanced my mortage and am saving $313 a month? Check it out... http://lendingfor.com/?partid=rcc2 If you dont want to be part of this...
16239
japus10
Sep 1, 2004 11:02 am
Hi Vasile, So you have a sequence with a meaning: a=234, c=12, etc - If letters are all lowercase => 0x61 .. 0x7A - If Uppercase (minus 0x20) => 0x41 .....
16240
pimsnoeks
Sep 1, 2004 11:53 am
... I had exactly the same problem. For the eeprom there is an errata datasheet for the 16F628(A) on www.microchip.com. You need to program a sleep to make it...
16241
Vasile Surducan
vsurducan
Sep 1, 2004 11:55 am
... Thank's Javi, the way right above is how I'm doing now, the problem is the stack_pointer movement. I have to count the stack position for every character...
16242
Dave Lag
daveismissing
Sep 1, 2004 12:20 pm
... I don't know if there might some assembler trick - bit test the 3 Most Signif bits for a one? - could that be faster? D...
16243
Patrick Froucht
multitrain2000
Sep 1, 2004 12:34 pm
Pim, How do you program a sleep in JAL ? I have read the errata data sheet but , as I didn't told you, I don't know at all the PIC asm, JAL is for me the...
16244
Wouter van Ooijen
wvooijen
Sep 1, 2004 1:15 pm
... asm sleep maybe there is even a sleep procedure somewhere in the libraries, try just sleep Wouter van Ooijen -- -------------------------------------------...
16245
Victor Faria
victorf57
Sep 1, 2004 3:21 pm
Hi,Patrick Working from memory, I had the same problem. The solution was to ask Stef. his response was to disable WDT before writing. at least this is what I...
16246
upand_at_them
Sep 2, 2004 2:07 am
I've got the 16F88 lib files that were upload to the Files section of the group, but I'm getting "target not recognized" during compile. Am I doing something...
16247
Tim - K1BR
k1br_1
Sep 2, 2004 2:45 am
... Hi Mike - In the 4.60 binary distribution, there's a typo that makes the 16F88 a "12f88". This is fixed in CVS and the source distribution, but I don't...
16248
upand_at_them
Sep 2, 2004 3:38 am
Hi Tim, Okay, so what's the solution? Mike...
16249
Tim - K1BR
k1br_1
Sep 2, 2004 3:53 am
... Well, mine was to recompile JAL. Short of that, maybe you could patch the exe with a hex editor? I dunno, I haven't tried that for many years (do Microsoft...
16250
Tim - K1BR
k1br_1
Sep 2, 2004 4:05 am
Forgot about the files section. :) Uploaded the exe to the same directory as the f88 libs. Tim...
16251
upand_at_them
Sep 2, 2004 4:12 am
Thanks. It works. I did try UltraEdit in hex mode, but it didn't work. Mike...
16252
Vasile Surducan
vsurducan
Sep 2, 2004 9:57 am
Eur, holiday is for resting not for googling ! :) THX, however the image.imz is a visio format. the "image" is in fact a picture Vasile...
16253
Mark Jones
heliosstudios
Sep 2, 2004 2:40 pm
... Hi, I've never heard of this image type before. Have you tried renaming it to image.img? Open it in a hex editor and see if it has any header or footer...
16254
upand_at_them
Sep 2, 2004 4:13 pm
The serial library seems to create a software UART. I would like to use the hardware UART on the 16F88. I realize this isn't difficult, but is there...
16255
Eur van Andel
eur_1965
Sep 2, 2004 6:50 pm
On Thu, 2 Sep 2004 13:16:25 +0300 (EEST), Vasile Surducan ... Holiday is the moment when I'm free from this list and other emails, nobody calls and there is...
16256
Eur van Andel
eur_1965
Sep 2, 2004 7:17 pm
Hi all I have made some modest progress and JPIC14 is now reduced to port and pin handling only :-) The rest is in PIC-specific files. (Only '877 for now) ...
16257
Dave Lag
daveismissing
Sep 2, 2004 8:13 pm
HTH Hex Mnemonic Description Function 0062 OPTION Load OPTION register W-->OPTION Register 008f MOVWF f Move W to f...
16258
Gordon Williams
jal_list
Sep 2, 2004 8:23 pm
Hi, I use Stef's device definitions which are automatically generated from the Microchip .inc files. It is a neat, modular and consitant way of doing it with...
16259
Tim - K1BR
k1br_1
Sep 2, 2004 9:48 pm
... I uploaded what I've been using, Mike, which is a small library based on some routines by Javi Martinez. Look for usart_19200.jal. It's a very simple ...
16260
upand_at_them
Sep 2, 2004 10:38 pm
Thank, Tim, I will take a look at it. I managed to write simple procedures to test that I can get the UART to work, after I realized that I had to explicitly...
16261
Dave Lag
daveismissing
Sep 3, 2004 3:00 am
Javi's indf_bits has the full version? .. procedure _file_put( byte in Haddr , byte in Laddr , byte in data ) is begin var volatile bit local_irp var volatile...
16262
Tim - K1BR
k1br_1
Sep 3, 2004 4:21 am
... There are procedures in jpic.jal to do this (bank_0, bank_1, bank_2, etc). Tim...
16263
japus10
Sep 3, 2004 5:17 am
At least you can address all banks. ;) Javi. ... is begin ... reach...
16264
upand_at_them
Sep 3, 2004 6:06 am
I hope you don't mind, I rewrote your lib to be more general: -- ------------------------------------------------------------------- - -- -- file :...