BASCOM-AVR : How to pass the table name to the SUB? : NEWTOPIC
Dear all, I would like to pass the name of the data table to the sub [b:60257c91be]SUB[/b:60257c91be] in order to use it insight as an argument of the [b:60257c91be]LOOKUP[/b:60257c91be] function....
View ArticleBASCOM-AVR : How to READ from the data table with offset? : NEWTOPIC
The [b:bc77973ec5]READ[/b:bc77973ec5] command is convenient for sequential reading of data from the data table but the [b:bc77973ec5]RESTORE[/b:bc77973ec5] command always sets the data pointer at the...
View ArticleBASCOM-AVR : How to READ from the data table with offset? : REPLY
Processor registers R8/R9 hold the pointer used by Read(), it's possible to add an offset there. Care has to be taken with processors of > 64k flash, where RAMPZ needs to be taken care of.
View ArticleBASCOM-AVR : How to pass the table name to the SUB? : REPLY
Test this in simulator :) [code:1:7db32e09fe]$sim $regfile = "m8def.dat" $crystal = 16000000 $hwstack = 64 $swstack = 64 $framesize = 64 Dim Address As Word Dim N As Byte Dim Items(5) As Byte Declare...
View ArticleBASCOM-AVR : 4094 Multiple 7 segment LCD : NEWTOPIC
Hi Forum, Hope you are all well. I am currently working with Interfacing Multiple 7 segment crystal LCD with 4094 + ATMEGA16 but LCD is showing abnormal behavior. I have attached snapshot of the LCD....
View ArticleShare your working BASCOM-AVR code here : S6D1121 LCD library : REPLY
Hi Mrshilov Which type of SPI-ROM do you use? Regards Thomas
View ArticleBASCOM-AVR : 4094 Multiple 7 segment LCD : REPLY
Does the image stay steady or does it fade away? The data you are sending is position followed by 7 segment data? Is that correct? Ben Zijlstra
View ArticleShare your working BASCOM-AVR code here : S6D1121 LCD library : REPLY
I use Winbond 25X80A.
View ArticleBASCOM-AVR : 4094 Multiple 7 segment LCD : REPLY
Hope someone can understand the design. i do not understand why not it is showing the correct data on the screen. I have attached a photo of the LCD 7 segment for your information. Its really...
View ArticleBASCOM-AVR : 4094 Multiple 7 segment LCD : REPLY
About fading, do a search for DIY 2012 in this forum. You have to alternate backpanel to keep the segments 'on'. Ben Zijlstra
View ArticleBASCOM-AVR : UNconfig SERIALIN : NEWTOPIC
Hello everybody, I have problems undoing a config statement. My AVR is connected to a PC via a Radio link. Both "ends" simulate a RS232 interface, so for the AVR and the PC it isn't much more than a...
View ArticleBASCOM-AVR : 4094 Multiple 7 segment LCD : REPLY
Hi Ben, Thank you very much for your reply and i have seen that DIY 2012 self Kit using 4094 driver IC and LCD fadding issue. But here with me the issue is i can not get the correct data on the LCD. I...
View ArticleBASCOM-AVR : UNconfig SERIALIN : REPLY
One option would be to enable the watchdog and run into an endless loop, followed by a watchdog reset and jump to the BL. Another option is simply disable interrupts, I suspect the enabled...
View ArticleBASCOM-AVR : UNconfig SERIALIN : REPLY
Hi Usually, reset of hardware is given to AVR, and where all the registers and interruption are initialized, it is rewritten by the new program by a boot loader. Therefore, also when jumping from main...
View ArticleBASCOM-AVR : How to READ from the data table with offset? : REPLY
Hi "Lookup" if the numeric data. "Lookupstr" if the string data. In changing to this instruction, do you have any problems?
View ArticleBASCOM-AVR : UNconfig SERIALIN : REPLY
Yeah! Disabling the interrupts worked! So simple. Why didn't I see that? :oops: Thanks guys!!! :D
View ArticleBASCOM-AVR : HX711 ADC 24 bits : REPLY
good work ! when you finish it, it would be nice to share your work with other bascom's users in "Share your working BASCOM-AVR code here" many thanks JP :wink:
View ArticleShare your working BASCOM-AVR code here : Problem with comercial i2cslave...
Hello! I use the new Version of I2C-Slave-lib: comment = BASCOM-AVR USI I2C slave library libversion = 2.0.7.7 date = 8 Jan 2014 I want to use an ATTiny2313 as a Slave and therefore used the following...
View ArticleShare your working BASCOM-AVR code here : Problem with comercial i2cslave...
You need to include the I2C library in your code. See Help file on how to use [b:702168f570]include[/b:702168f570]
View ArticleShare your working BASCOM-AVR code here : Problem with comercial i2cslave...
thank you, the cause was: I must update the BASCOM Compiler from 2077 Build 2 to 2077 Build 4 problem solved! Ernst
View Article