BASCOM-AVR : Using SPI on 3.5 display with FTDI FT800 controller. : REPLY
Larry Here is a replacement version to the last one I posted. Still needs many of the Copro Commands to be added but it's good enough to start playing with. (I also added Text and Numbers Subs)
View ArticleAVR : 16*1 LCD shows only 8 left characters : NEWTOPIC
Hi I have a problem that I am not the only one to have as I have noticed on the net. No one has however been able to come up with a usefull explanation. My 16*1 lcd shows only the 8 left characters. I...
View ArticleAVR : 16*1 LCD shows only 8 left characters : REPLY
Hi I'm answering my own question. I triad the lcd 16*1a and it seemd to work.
View ArticleBASCOM-AVR : Error calling Sub : REPLY
Because Sub must be declared first: [code:1:9101a3eed1]Declare Sub Testsub() sub TestSub() X = X + 1 end sub Do Testsub ' Error. ... ... [/code:1:9101a3eed1]
View ArticleBASCOM-AVR : Error calling Sub : REPLY
This is not necessary. http://avrhelp.mcselec.com/config_submode.htm
View ArticleBASCOM-AVR : Socketstat strange results???? : REPLY
I have been testing my code at different locations. In doing so I have found that certain NO-IP servers(must not have same code revs on all servers) are responding differently to my NO-IP header...
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1963 LCD : REPLY
Hello Mark, MrShilov, GrainyPCB, (and others) Trying to make the SSD1963 (480x272) LCD work with a XMEGA192A3 using the library INC file posted by MrShilov. After spending quite some time, I cannot...
View ArticleAVR-DOS : dir() and dir(*.*) again : NEWTOPIC
This is a follow-on from my previous post. I have still not resolved that issue, so decided to post some code. Here is a loop, which does a dir(*.*) of a folder on an SD card, and reads a file to a...
View ArticleBASCOM-AVR : Error calling Sub : REPLY
Indeed, with "Config Submode = New" I got no error. Bascom 2.0.7.5 demo
View ArticleBASCOM-AVR : Using SPI on 3.5 display with FTDI FT800 controller. : REPLY
Hi Peter, Just had a quick look at your updated code and see you added a number of prints to help understand the steps in communication with the FT800. I look forward to working with it over the...
View ArticleAVR-DOS : dir() and dir(*.*) again : REPLY
Hello Neil Try saving all the registers in the sub as they may be being altered in it Regards Paul
View ArticleAVR-DOS : dir() and dir(*.*) again : REPLY
dir(mask) and the following dir() work on the current folder. when you change folder using chdir , the next dir() will not be valid anymore. that is how i understand how it works. but maybe Josef can...
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1963 LCD : REPLY
try to use some other port than portA. i have pulled some hairs a week ago when doing an oled driver. the odd thing was that porta worked, and that i could toggle all pins, but that for some reason it...
View ArticleBASCOM-AVR : Error calling Sub : REPLY
i understand what you mean. you mean that syntax check reports an error. that is because of the config submode=new.
View ArticleBASCOM-AVR : Using SPI on 3.5 display with FTDI FT800 controller. : REPLY
Larry Try this one as the last one had a small bug when printing text. Sorry the code does has hardly any comments, I concentrated on getting it work and forgot to make it informative. Some good also...
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1963 LCD : REPLY
Hello Mark, Somewhere between your advice NOT to use PORTA, re-reading MAK3's AN#192 for Virtual Ports and comparing my code to that of the WIKI 7 Inch SSD1963 Display, I now have the display working....
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1963 LCD : REPLY
Ennio, Look in the SSD1963 datasheet for control register 36h. You should be able to change this setting in the initialization routine to fix your rotation/orientation issues. I need &h09 for my...
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1963 LCD : REPLY
i found nothing odd in your code. except that you have different init code at some places. but that is most likely because you have a different lcd. so it is good you got it to work. the register...
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1963 LCD : REPLY
I figured it out. Many of the subroutines change the Page/Column Address Order of the 36h register, for example: [code:1:f2259a31d1]Sub Lcd_clear(byval Color As Word) Ssd1963_select_reg &H36...
View Article