BASCOM-AVR : Accessing differential modes on ATmega32 : NEWTOPIC
I wish to be able to use two different differential ADC measurement modes (1x and 10x, ADC0 and ADC1) as shown on page 215 of the datasheet. However, from looking at the online bascom help, I am not...
View ArticleBASCOM-AVR : Gosub vs. Call a procedure : REPLY
Mark, you said: [quote:e80d737af6] - you can use a gosub inside a sub, but you can not nest a call within a sub. [/quote:e80d737af6] and I just want to make sure I understand this correctly. Do you...
View ArticleBASCOM-AVR : UART receiving a string or ? : REPLY
[code:1:9bc4b67dbe]Disable Urxc Enable Urxc [/code:1:9bc4b67dbe]Never do this in ISR. It is not quite clear what you want to do. Do you want to read 160 values 0-255 into an array? Each value...
View ArticleBASCOM-AVR : Bug when using more than 64k Flash on ATMega 1284P : REPLY
thanks for testing. your report improved the simulator.
View ArticleBASCOM-AVR : Sample Electronics programmer not working in Win 7 : REPLY
after that, reboot. then in system info (a windows program) in the software environment, System Driver, you should see tvicport64.sys and that it is started. if not let me know.
View ArticleBASCOM-8051 : Long var extract the single digit, help : REPLY
You can calculate also: x1 = X/10000 x=x mod 1000 x2=x/1000 x=x mod 1000 ... x5 = x best regards nikolai
View ArticleBASCOM-AVR : read eeprom with avr dragon : NEWTOPIC
hello Did you know simply program that visualize and show EEPROM content with AVR DRAGON programmer ? Thanks [b:625c0ebe4d][color=red:625c0ebe4d](BASCOM-AVR version : 2.0.7.6...
View ArticleBASCOM-AVR : Gosub vs. Call a procedure : REPLY
How much to use "gosub" never used "end sub", used only by habit "return". Everything works.
View ArticleBASCOM-AVR : Gosub vs. Call a procedure : REPLY
I advise to use call instead of gosub. The only reason bascom knows gosub is that it was well known in ancient GW basic. But a more modern basic as QB already added sub. Your sample works and is ok....
View ArticleBASCOM-AVR : Sample Electronics programmer not working in Win 7 : REPLY
after the restart I went to System Info/Software Envir/System Drivers and tvicport64.sys was not listed - Dave
View ArticleBASCOM-AVR : Sample Electronics programmer not working in Win 7 : REPLY
i will contact you so we can solve this issue.
View ArticleBASCOM-AVR : UART receiving a string or ? : REPLY
Visovian, I deleted Disable an Enable URXC. Yes, I do. I Want to read 160 values 0 - 60. Each terminated with ascii 13. Thanks for the sample
View ArticleBASCOM-AVR : UART receiving a string or ? : REPLY
Visovian, A error appears. Invalid parameter for CONFIG or value NOECHO
View ArticleBASCOM-AVR : UART receiving a string or ? : REPLY
I got no error here here. Bascom 1.11.9.1 demo
View ArticleEASY TCP/IP : Atmega32 and Wiznet W5100 : REPLY
[quote:cb570561a5]Wiznet W5100 is connected by 4 cables it's enough?[/quote:cb570561a5] In the TCP-config you are using INT0. If you are using that line, it is oke. But if you haven't connected that,...
View ArticleBASCOM-AVR : Need Help MAX7456 : REPLY
hello Evert. Could you tell me how to increase the Number of output characters Nvram max7456? Thanks in advance.
View ArticleShare your working BASCOM-AVR code here : HT1632 - 32x8 matrix : REPLY
[b:fde11e1543]Paulvk.[/b:fde11e1543] Thank you.
View ArticleBASCOM-AVR : Accessing differential modes on ATmega32 : REPLY
you can simply use one parameter and the mux will be set properly. Just use the channel number from the datasheet.
View ArticleBASCOM-AVR : Accessing differential modes on ATmega32 : REPLY
Okay, I am looking at the ATmega32 datasheet, Table 84, Page 215. It does not show channel numbers, but only MUX4..0 in the description. For the channel number do I just put the decimal representation...
View Article