Share your working BASCOM-8051 code here : A bit of an elementary program...
thank you for sharing your code with us. on a different topic i will explain how to create a DAT file if there is none that matches your processor.
View ArticleBASCOM-AVR : Mikromedia for Xmega LCD Routines..? : REPLY
Hello All!! Well I'm back with a Mikroelektronika module, but this time I get a Atmega1280 instead of the Xmega. The M1280 will be easy to simulate in Proteus at least. Now the question is the same,...
View ArticleBASCOM-8051 : datfile 89C51 : REPLY
I will write a small guide and post it later how you can solve this.
View ArticleBASCOM-8051 : datfile 89C51 : REPLY
Here is my short guide : How to create a DAT file for you micro when there is none supplied. - first step is to get a datasheet of your micro - in the simple guide i downloaded the AT89S52 datasheet...
View ArticleBASCOM-AVR : ATtiny441/ATtiny841 : REPLY
if you send the atmel inc and xml files (zipped) to support i will have a look at it. are these tiny1634 variants?
View ArticleBASCOM-AVR : ATMega8 Trouble with ADC convertes : REPLY
Paul's suggestion to use a MAX3232: I agree with that. The charge-pump frequency is higher and therefor easier to decouple. Which results in reduction of noise. As I suggested earlier: the power...
View ArticleAVR-DOS : Two DOS systems on one xmega : NEWTOPIC
Hi, I require one AVR-DOS as my resident DOS. Its MMC card will be fitted inside the cabinet and will act as a storage hard-disk of my microprocessor. (xmega 256) And the second card needs to be used...
View ArticleBASCOM-AVR : Library .equ references : NEWTOPIC
Working alot in the TCPIP area these days on a server app. In the library tcpip-w5100.LBX, on line 14 there is : [code:1:e64596d54b] .equ Max_sock_num = 4[/code:1:e64596d54b] Since the number of...
View ArticleBASCOM-AVR : Impulse counting : NEWTOPIC
Hey there! I am new here and actually being a mechanical engineer I am not very experienced with programming. However it turned out to be extremely useful even in simple applications. So I hope you...
View ArticleBASCOM-AVR : strange things in code explorer : NEWTOPIC
today is saw a strange thing in the "code explorer" . some subs are not listed, but you can see them in de "declarations" and the subs are used in de code. i see the 2 subs that are missing in de...
View ArticleBASCOM-AVR : ATMega8 Trouble with ADC convertes : REPLY
Hello Plons and Paulvk I Feed the circuit with a 4-pack Ni-Cd batteries and connect the LM35 to ADC (0) and Ni-Cd battery in ADC (5). The results of 15 readings are: 114 / 517 114 / 517 115 / 516 113...
View ArticleBASCOM-AVR : serial interupt and buffer : REPLY
Hello. I use ATXMEGA 128A3U with two UART: PortC.2 and PortC.3 - COM1 and PortE.2 and PortE.3 - COM5 PortE works in both directions. I have a problem with PinC.2 From this port I can send data...
View ArticleBASCOM-AVR : strange things in code explorer : REPLY
if the problem is reproducible, you can best send a bascom sample(zipped) to support.
View ArticleBASCOM-AVR : serial interupt and buffer : REPLY
please reduce your code to the simplest form where you only use the COM port with problems. without lcd and buffered serial. then test again. you should also test if you can control all pins you use :...
View ArticleBASCOM-AVR : strange things in code explorer : REPLY
Hi Mark, I send it to support Greetings Tiny
View ArticleBASCOM-AVR : Impulse counting : REPLY
While timers/counters have an internal direction control, i have no idea how to let it count downwards. So I do not have a simple solution. But you could use one pin to control 'direction'. It does...
View ArticleBASCOM-AVR : strange things in code explorer : REPLY
thanks, i got it. the reason is simple. if you have a line like : If Temp => &H07F0 Then Temp = &H07F0 the => is wrong. It should be >=. The compiler itself does not mind and accepts...
View ArticleBASCOM-AVR : Impulse counting : REPLY
How about an external interrupt and a software counter. [code:1:82a2b8b7dd]Dim Mycounter As Word On Int0 Int0_isr Enable Int0 Enable Interrupts Do Loop End Int0_isr: If Pinx.y = 1 Then Incr Mycounter...
View ArticleEASY TCP/IP : Wiznet W5500 : NEWTOPIC
Hi! I'm wondering, is BASCOM going to support the new W5500 chip? Has anybody used it and can share code? It seems like a nice SPI "TCP coprocessor", easier to place on PCB (smaller) and a tiny bit...
View Article