Share your working BASCOM-AVR code here : Simple question on Attiny2313 vs...
Hi i have two issues that i am hoping are quite simple for anyone that's played with Bascom/AVR. 1) I'm using a ATTINY2313A PU chip and when i use $regfile = "attiny2313.dat" my AVRISP programmer...
View ArticleBASCOM-AVR : BASCOM AVR 2.0.7.6 not working with SDK500 native driver Pro :...
so you use the native stk500 driver programmer? and this problem is with all chips or only the tiny85? you might want to try the 2077 version.
View ArticleBASCOM-AVR : AYUDA IMAGENES GLCD : REPLY
please take care that the source file is black and white. in some color files , 'white' can look like white but the color can be different. the converter simply converts all non-white into black. you...
View ArticleBASCOM-AVR : BASCOM AVR 2.0.7.6 not working with SDK500 native driver Pro :...
Hi, I use the STK500 native drive alot on several different PC's. I've only seen refresh problems on one PC and there the problem was with the graphic card drivers. Could you be using an ATI graphic...
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
Hi The link you posted is broken: this is the correct one: http://ww1.microchip.com/downloads/en/devicedoc/11195c.pdf At the moment I am working with SPIhard but will try SPIsoft as well in a minute...
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
Using soft SPI: [code:1:7ae055c979]Dim Multiplebytes(5) As Byte Multiplebytes(1) = &B10110110 Multiplebytes(2) = &B01010101 Multiplebytes(3) = &B10101010 Multiplebytes(4) = &B00001111...
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
that's easy Plons :D use Noss = 1 Define /SS Pin and before you SPIOUT reset /SS Pin, after SPIOUT SET /SS that's it best, Michael
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
Hi Michael ! Agreed, manipulating /SS manually is a trick that always works. But the nice feature of the SPI logic in an AVR is that we can let it take care of the /SS-pin automatically. If I need to...
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
Dankjewel Plons! And thanks everyone! That was some useful information which I am going to try in my project:)
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
when you do not want SS/CS to be changed you can use one spimove command. After all, for each byte you want to read you must send a byte.
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
Hi Mark, From OP [quote:ff0f7f3eff]The mcp41010 always needs multiples of 16 clocks while CS is low or commands will abort. [/quote:ff0f7f3eff] erbamec needs to send 2 bytes in a row WITHOUT /SS going...
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
spimove can send and receive multiple bytes. when you use an array for both the source and the target you can send multiple bytes with one spimove.
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
Cool ! Would the code look like this ? [code:1:08fa9aafb3]Dim Spi_to_send_data(5) As Byte Dim Spi_received_data(5) As Byte Config Spi = Soft , Din = Pinb.4 , Dout = Portb.3 , Ss = Portb.2 , Clock =...
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
yes code would look like that but i made a mistake : spimove only writes 1 byte. it was supposed to send multiple bytes. i will change it. if you write to support i can send you a beta so you can test...
View ArticleBASCOM-AVR : BASCOM AVR 2.0.7.6 not working with SDK500 native driver Pro :...
I had this problem if the .dat file did not match the chip being read but 2077 has fixed it. Regards Paul.
View ArticleBASCOM-AVR : SPI chip select bascom AVR : REPLY
A lot of the SPI chips I have played with I have used shiftout/in as it let me have a few chips on different pins and some with just two pins select and data. Regards Paul
View ArticleBASCOM-AVR : measure on time - off time of pulse : NEWTOPIC
hi anybody have information about "" measure on time - off time of incoming pulse i want measure on time and off time of pulse with timer2 :cry: please help me. thanks...
View ArticleBASCOM-AVR : Why can't I buy a USB programmer that works in Bascom : REPLY
As promised, I am reporting on the cheap ASP programmer bought over ebay with the s/w controlled clock that supposedly supports slow clock rates. Below are some of the features advertised regarding...
View ArticleBASCOM-AVR : BASCOM AVR 2.0.7.6 not working with SDK500 native driver Pro :...
Thank you for your answers! Yes, this display problem comes with all Attinys and ATMegas when used with the BASCOM 2076 while BASCOM 2072 works on the same PC correct. I have a Intel-Board with an...
View Article