BASCOM-AVR : Brownout reset : REPLY
Could it be just too much resistance in the choke one way that I have made inductors in the past is to wind fine enamel wire around a 1 watt resistor of say 470K using its leads to start and end on....
View ArticleShare your working BASCOM-AVR code here : Graphic LCD Screen Dump : REPLY
Hi there, now UDP is running also. I#ve changed the Y-Parameter to "64" for 64Px height!
View ArticleBASCOM-AVR : USB addon CDC driver for WIN8 : NEWTOPIC
Does anyone have the .inf driver for CDC USB communication with Windows 8? [b:023f2edff0][color=red:023f2edff0](BASCOM-AVR version : 2.0.7.7 , Latest : 2.0.7.6 )[/b:023f2edff0][/color:023f2edff0]
View ArticleBASCOM-AVR : Brownout reset : REPLY
I think you are both correct. I only included the choke because I saw it recommended somewhere in an atmel data sheet. The choke I use is 2.0 ohms or 0.5ohm depending on brand. I am now putting out...
View ArticleBASCOM-AVR : USB addon CDC driver for WIN8 : REPLY
Think this one will work, don't forget to change the VID and PID. Save it as CdcDriver.inf [quote:ae9660a14b] ;************************************************************ ; Windows USB CDC ACM Setup...
View ArticleBASCOM-AVR : USB addon CDC driver for WIN8 : REPLY
changing the VID/PID inside the inf will end in, that the driver verification will fail on WIN8!
View ArticleBASCOM-AVR : Check syntax vs compile program dilem : NEWTOPIC
Hello! Sorry if this sounds stupid but I myself have made this mistake a few times in the past: I pressed the check syntax rather than compile! IDE display was the same as that when compiling but...
View ArticleBASCOM-AVR : Check syntax vs compile program dilem : REPLY
Use F7 to compile instead of mousing to a button that "may" be the wrong one. As happened to you. Personally I love the way the IDE of Bascom is designed: auto-closing of message windows when...
View ArticleBASCOM-AVR : USB addon CDC driver for WIN8 : REPLY
The inf file is nothing more then pointing to the already certified windows driver. What i didn't know is that in win8 the inf file must also be certified. That's a HUGE problem for a lot off home...
View ArticleBASCOM-AVR : USB addon CDC driver for WIN8 : REPLY
You are right Evert, it works, but ithe whole WIN8 System is in compatibility Mode! In Time there is no chance to alter that permanently. It was only in WIN8 preview as far as i know. Every WIN8...
View ArticleBASCOM-AVR : can't identify Chip : NEWTOPIC
Hi all Just a quick question. I have got given a couple of ATmega328p micro that have been lifted out of some Arduino Uno Boards. When i try to program them up i get the 'can't identify Chip' error. I...
View ArticleBASCOM-AVR : INT error with negative numbers : NEWTOPIC
With positive digits INT works good: [code:1:789254566a]Var_integer=INT(Var_single) 0 <- 0 0 <- 0,5 1 <- 1,5 2 <- 2,5 and so on...[/code:1:789254566a] But with negative works strange:...
View ArticleBASCOM-AVR : INT error with negative numbers : REPLY
I copied this from the MS VB help which explains it best : Both Int and Fix remove the fractional part of number and return the resulting integer value. The difference between Int and Fix is that if...
View ArticleBASCOM-AVR : PWM 1Mhz : NEWTOPIC
Hi, I have to generate a PWM frequency to 1MHz ... I use a micro ATmega32, with the following code I was able to generate a PWM with 50% duty cycle I have no margin to adjust the duty cycle, how can I...
View ArticleBASCOM-AVR : PWM 1Mhz : REPLY
Set the clock bits CS12:0 to 001, which gives you a prescaler of 1. Set ICR1 to 15, so you get a 1MHz PWM. Now you set PWM1a to 0...15.
View ArticleBASCOM-AVR : PWM on other port : NEWTOPIC
Hello. is it posible to set the pwm signal on an different port? then the default port. Config Timer1 = Pwm , Pwm = 10 , Compare A Pwm = Clear Up , Compare B Pwm = Clear Up , Prescale = 1 an ATmega...
View ArticleBASCOM-AVR : PWM on other port : REPLY
No, but you could trigger an interrupt on each timer timeout, and then write an interrupt routine to flip any port line you like. Then you will have to manually adjust the on and off times by...
View Article