EASY TCP/IP : Ethernet Bootloader for Easy TCP/IP : NEWTOPIC
Hi, just a short question: is there any source code / demo code available for the above topic. Thanx in advance. Best regards, Mark
View ArticleBASCOM-AVR : Uart0 RX pin must have a resistor connected to GND to work : REPLY
There is a well known problem with rxd0 on the atmega 1284p that requires a 100pf cap to ground. I,m not sure about the processor you are using. As others have suggested you may have an earthing...
View ArticleVarious : Used Registers : REPLY
Hi Viacheslav, I tried to download your OBJDUMP.EXE, but the website is not responding... Please you can post the utility again ? Thanks ! Paulo
View ArticleBASCOM-AVR : Xmega USART in SPI MODE - Please Help! : REPLY
To get a byte from a SPI-slave, the master needs to send a byte. By analyzing the code created for Inputbin, I can say it does not shift anything out, so it looks it is not implemented yet. It may...
View ArticleBASCOM-AVR : How to get value for EE label? : NEWTOPIC
Please help me with this. I build Menu with [b:504e63c334]Adr2[/b:504e63c334] . I moved strings to Eeprom and with [b:504e63c334]Readeeprom[/b:504e63c334] or "Value = Ee_string" is no problem but in...
View ArticleEASY TCP/IP : Web server - multiple access : NEWTOPIC
Hello, i made small web server but i found that multiple access at the same time is not possible. I tried launch website on two computers at the same time. Could you give me an idea how to fix it ?
View ArticleEASY TCP/IP : Web server - multiple access : REPLY
you have only 1 socket listening. this means you can only server one client at the time. please have a look at the provided samples which use multiple sockets.
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
Indeed loadlabel only works when the label is known. The reason for this is that when you use loadlabel(), the compiler first checks if the label is in the eeprom data area. If not, it assumes that it...
View ArticleShare your working BASCOM-AVR code here : Big digits on cheap Lcd loaded from...
Very nice sample of using a simple LCD in a neat way ! Instead of : !LDS _temp1,{My_temp} !Rcall _Lcd_control you can use : lcdcmd my_temp and for data you can use lcddata See also the help.
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
Mark, he's looking for an EEProm-equivalent of [b:58cf3df3ef]Adr2[/b:58cf3df3ef], and not about putting $eeprom/$data in front of loadlabel(). You'll notice, that he already did that. The menu-example...
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
I dont see a reason to use adr or adr2. adr2 would be used for data stored in code. this example works : $eeprom Label_2: Data "World" Label_3: data "test" $data dim w as Word ,s as String * 10 gosub...
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
Yes. Thans for reply. But I don`t know how to pass label name from menu to Loadlabel. Without correct label compiler says "no label found". Is there a way to use Loadlabel like function once for all...
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
[quote:4f2c67b711="albertsm"]I dont see a reason to use adr or adr2. adr2 would be used for data stored in code.[/quote:4f2c67b711] Adr2 is used to retrieve an address in flash memory and this address...
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
[quote:c84b1ef7d4]Your shown codes works for sure, but somehow I miss the point, how it should work within a menu similar to the sample filed under Adr. How would you comfortably link the labels for...
View ArticleBASCOM-AVR : How to get value for EE label? : REPLY
I don`t know`it so this not work like that for ee. I thought that this is due to my ignorance. My intention was spare code space and with this I spare 6% flash. Could be more..but, maybe, I simply...
View ArticleBASCOM-AVR : Atmega128A - Uart0 & Uart1 not work : NEWTOPIC
Hello I have problem with Atmega128A and UART0 (PE0,PE1) and UART1(PD2,PD3). Program: [code:1:d550960989] $regfile = "m128def.dat" ' specify the used micro $crystal = 16000000 ' used crystal frequency...
View ArticleEASY TCP/IP : Web server - multiple access : REPLY
Hello bibibo I have a new blog in the blog section with a wiznet web server it uses the 4 sockets of the W5100 with the M128 it will work ok. It stores the TCPIP settings in eeprom and reads them from...
View ArticleBASCOM-AVR Old versions : Atmega128A - Uart0 & Uart1 not work : REPLY
Problem solved. fuse ATmega103 must set 0.
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1289 LCD : REPLY
Hello! I'm just testing this library and it works perfect, from i see very fast, many thanks for it. However, i wonder, do you have any chance to extend library so it would read from SD card? Since it...
View ArticleBASCOM-AVR : RFID Reader : REPLY
Hi, I have spent many houres trying to get some hints around handling this MFRC522. I found out, that this chip is most common for all Mifare readers/writers that you can buy world wide. But, to get...
View Article