BASCOM-AVR : Locating Subroutine in Hex file : REPLY
$MAP - directive is your friend. Look to helpfile for details.
View ArticleBASCOM-AVR : Using mega328p to read data off SPI bus of a older motorola : REPLY
No, the 944N29 IC is a 22 pin serial to parallel shift register that is able to driver 16 segments, only 14 outputs are being used.
View ArticleBASCOM-AVR : Bug when using more than 64k Flash on ATMega 1284P : REPLY
[quote:c314477683="i.dobson"]Hi, Do you see the same problem on real hardware?[/quote:c314477683] Yes. As soon as I unremark the DATA lines the program behaves strangely. It took me a long time to...
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
I Am busy to make a RTC clock and a T6963c with big numbers to display the time inverted everything is looking good but one error is there this is my code watch wrong..... :roll:...
View ArticleBASCOM-AVR : Bug when using more than 64k Flash on ATMega 1284P : REPLY
when you need to include data, you can best use $inc , this way you do not need to paste in data. the problem is an odd one : setting rampz to 0 before the statement, will fix the problem. Thus it is...
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
Hi, I found a bug, although it is not the solution to your problem. Dag(5) = "FRIJDAG " must be Dag(5) = "VRIJDAG "
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
oke thanx but what do I wrong.. can any help my :idea:
View ArticleBASCOM-AVR : Bug when using more than 64k Flash on ATMega 1284P : REPLY
are you sure this problem exist in hardware? an ISIS simulation shown the proper value. I also checked the code and it is ok. I changed the simulator so it will not take RAMPZ into account for...
View ArticleBASCOM-AVR : Translating C code to Bascom-AVR : REPLY
if you want to translate you need to study some C. DDRB=(0<<DDB7) | (0<<DDB6) | (1<<DDB5) | (0<<DDB4) | (0<<DDB3) | (1<<DDB2) | (0<<DDB1) | (0<<DDB0);...
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
a number of errors : For Pixelcount = 0 To 7 'Loop for 8 pixels to be set or not Ypos = A + Pixelcount 'Each pixel on his own spot Pixel = Pixels.pixelcount 'Set the pixel (or not) Pset Xpos , Ypos ,...
View ArticleBASCOM-AVR : Sample Electronics programmer not working in Win 7 : REPLY
hi, did you tried the other addresses? then, chose help about and click the link App Data dir. Explorer will open and you will see a file named bscavr.log there is info about vicport. best way is to...
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
Yes write but what? I have from the Bascom examples used the english.BAS clock but I will this whiteout the analogic clock. the code works fine with: this. Locate 2 , 2 Lcd "" ; D_g ; "" ; _day ; "" ;...
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
Sub Lcdtext(byval S As String , Xoffset As Byte , Yoffset As Byte , Inverse As Byte , Rotation As Byte) thus the first parameter is a string. you have nothing ! Lcdtext , 64 , 20 , Inverted , Rotate_0...
View ArticleBASCOM-AVR : Bug when using more than 64k Flash on ATMega 1284P : REPLY
[quote:20192893b8="albertsm"]are you sure this problem exist in hardware? an ISIS simulation shown the proper value. I also checked the code and it is ok. I changed the simulator so it will not take...
View ArticleBASCOM-AVR : Bug when using more than 64k Flash on ATMega 1284P : REPLY
please use the program you posted. and also try the small code i also shown.
View ArticleBASCOM-AVR : error 130, incorrect number of parameters must by[5] watch w :...
Oke Mark I have A white line on my screen but not jet the time. Am working on it (I hope)
View ArticleBASCOM-AVR : Sample Electronics programmer not working in Win 7 : REPLY
I closed Bascom and deleted bascarv.log, then started Bascom and opened bascarv.log and it says VICPORT Not started Now what should I do? thanks again for helping - Dave
View ArticleBASCOM-AVR : Using mega328p to read data off SPI bus of a older motorola : REPLY
I found what you said to look for the 32 x 8 matrix clock, found hte final code, theres 3 files in the archive with code, im assuming the one i need is one of hte protocol test timing files?
View ArticleBASCOM-AVR : Using mega328p to read data off SPI bus of a older motorola : REPLY
Yes they are the ones, one shows the timing the other prints the binary values to the serial port so you should be able to see the data beng sent using just one wire and ground to the chip or you...
View Article