BASCOM-AVR : Accessing a rather largish Array using overlay : REPLY
Hi MWS, Yea I agree. After I posted this, I had a play, and ended up with an array of words rather than a mixture, I loose two bytes for each group, but I ended up accessing them like you said and it...
View ArticleShare your working BASCOM-AVR code here : GPS processing and status display :...
If your gps module outputs standard NMEA data you can use the code above. You only need to set the correct baudrate to communicate with the modul. You can change the lcdat commands with print then you...
View ArticleShare your working BASCOM-AVR code here : GPS processing and status display :...
for example doncarlos?
View ArticleShare your working BASCOM-AVR code here : GPS processing and status display :...
After the "Szoveges" label insert this: [code:1:e947240bd0] Do If Gps_data_flag > 0 Then Gosub Processgps If Pos_status = "V" Then If Nofix = 1 Then Goto Szoveges Nofix = 1 Print "No fix!" Else...
View ArticleBASCOM-AVR : UHF modules : NEWTOPIC
Hi, I did not see posts on this forum regarding new UHF modules of the Hoperf company. I have been playing with them lately and wrote two blogs about their usage. Especially I was pleased with the...
View ArticleVarious : MPPT Charger : NEWTOPIC
Hi I am building an MMPT charger where I will sweep the VI curve by adjusting the PWM, Now I need an Idea on how to record the The peak value from the sweep and stay there for the rest of the time...
View ArticleBASCOM-AVR : locked mega32 : REPLY
[quote:a546504327="slac"]if it is locked, then i can't make any changes to it[/quote:a546504327] As well you can't read it while it's locked, you can always erase it.
View ArticleVarious : MPPT Charger : REPLY
Hi, You mean MPPT ? If so check this [url=http://dspace.jdvu.ac.in/bitstream/123456789/19515/1/Acc.%20No.%20DC%20343.pdf]PDF[/url] its good info about the system and have bascom code to (atmega8)
View ArticleBASCOM-AVR : Xmega DMA : REPLY
I thought the parallel bus required a license, while the SPI bus usage did not? JC
View ArticleBASCOM-AVR : RF TX/RX strange problem. : NEWTOPIC
I have 433Mhz Transmitter Receiver to send some data. On Transmitter side: [code:1:54c5b8dff2] $regfile = "ATtiny25.DAT" $crystal = 1000000...
View ArticleBASCOM-AVR : Xmega DMA : REPLY
could be, i had problems finding good info and this was mentioned. but officially, you would need a MS license too when using FAT technology.
View ArticleBASCOM-AVR : RF TX/RX strange problem. : REPLY
Missing sub in TX code : Gosub [b:995d3afe48][color=red:995d3afe48]Send_sony_string[/color:995d3afe48][/b:995d3afe48]
View ArticleBASCOM-AVR : RF TX/RX strange problem. : REPLY
sorry my mistake [code:1:48cc4574ac] Send_sony_string: For Idx = 1 To Len(rf_string) Rf_char = Mid(rf_string , Idx , 1) Gosub Send_sony_char Next Idx Return [/code:1:48cc4574ac]
View ArticleBASCOM-AVR : AVR CAN BUS : REPLY
Hi My CAN bus is working - it means I can rx and tx both ways . I do have a problem to send / receive more than one byte . I want to send 2 bytes packed in a word - in order to make one message . I do...
View ArticleBASCOM-AVR : AVR CAN BUS : REPLY
you could try to add the number of bytes in cansend. better is to show minimal code that can be compiled/tested.
View ArticleBASCOM-AVR : AVR CAN BUS : REPLY
Hi Thanks for the reply. I tried that - still same - also only one byte receive on CANHACKER monitor pgm . The rx CAN AVR PCB interface side is working fine - tested by sending a 2 byte message from...
View ArticleBASCOM-AVR : AVR CAN BUS : REPLY
Hi. I notice now that after a reset - the first 2 messages sent are 2 bytes long - and then the rest are all single byte ? I wonder why ? Cheers
View ArticleBASCOM-AVR : AVR CAN BUS : REPLY
that is why i ask for code! do you define the proper msglen after the config canmob ? please use the provided sample as a guide.
View ArticleBASCOM Project Blog : Making A Meter with the 32 x 8 matrix display : REPLY
I have now cleaned up most of the code with some subs as yet not used but will be in the future. The eeprom data has been left and some of this will be changed to suit the meter also the numbers 1 t 0...
View Article