Show Posts
|
|
Pages: [1] 2 3 ... 18
|
|
1
|
International / Deutsch / Re: Fritzing: Schaltpläne & Layouts
|
on: July 29, 2011, 02:11:00 pm
|
Hallo, ich habe mal versucht Fritzing für ein etwas größeres Projekt zu verwenden (20 Bauteile) und glaube nach dem 3ten mal wo alles weg war hab ichs gelassen. Ist noch nicht stabil genug die Software, ist mir immer abgestürtzt und dann war die ganze Arbeit weg 
|
|
|
|
|
2
|
Community / Exhibition / Gallery / Another Automotive Display
|
on: July 29, 2011, 01:46:29 pm
|
Hello, as this Projekt is in a presentable state, here it is, another automotive display   It is a ATmega328 at 16Mhz (running the Arduino Bootloader) with an 20x4LCD sitting directly on top. The automotive part is a rugged powersupply (as it is on the MultiDisplay: http://code.google.com/p/multidisplay/wiki/Powersupply) The function is to measure 8 Thermocouples (will be installed in a 6 zylinder turbocharged engine), 1 Oiltemperature, Oilpressue, Fuelpressure, RPM and Boostpressure. To do this there is a MCP3208 to read the Analog Values, a LTC1050 amplifies the Termocouple Values what are multiplexed by a 74HC4051D. And USB-Serial is provided by a FT232RL. Basically it is identical with the MultiDisplay, just smaller... It has a warning output and the LCD brightness can be adjustet over PWM. Over the USB Port is Datalogging possible, or the Software can be upgraded. (easier for the auto-guys as to handle ISP programmers...) Today it had its first real show off, its got the bootloader:    then the big moment, will the USB work??  YES   Putting the LCD on top:  And then just loaded the MultiDisplay code ( http://code.google.com/p/multidisplay/) Now i need to rework the Code that it also works on it... 
|
|
|
|
|
3
|
Community / Website and Forum / Re: TapaTalk...
|
on: May 30, 2011, 11:41:23 pm
|
Hello, im using Tapatalk on all my Forums (phpBB3) and its working great now! They have done a lot off rework and iPhone / Android is working good. Would love to see also Tapatalk here  Even on my highly non electronics forum there are a lot o people now using it, i would imagine that here there are a LOT more users with smartphones! greetings
|
|
|
|
|
4
|
Community / Website and Forum / Re: forum is slow?
|
on: February 17, 2011, 07:47:44 am
|
cool thing to cut down the bandwith in 1/2  it feels quicker, but still there is some more to gain  your 80% processorload is a lot, can you find out whats the hardest bite on it? (ssh, top)
|
|
|
|
|
6
|
Community / Website and Forum / Re: forum is slow?
|
on: January 29, 2011, 02:40:10 pm
|
how loaded is the server now? compressing will increase the server load, but not extreme! this is hard to predict, you will need to analyse the load and see if thats get you into trouble... if then php will be the limit or the db, there are caching tools (like xcache) what will help you out on this  for example this page while i type has 84 HTTP requests, with the mod_expire this would be reduced to around 5! even when the stuff is cached currently, there is still a HTTP request to check the cache... as w3c said only 2 requests per domain are paralell, that means the user will make a crazy 40 requests in series...  and your server must handle all this useless requests! making load for nothing... to test it out, take ff, install (in that order): https://addons.mozilla.org/de/firefox/addon/firebug/https://addons.mozilla.org/de/firefox/addon/yslow/http://code.google.com/intl/de-DE/speed/page-speed/download.htmlthis tools will show you the pageload times, tranfered volumes, HTTP requests and much more. get your server stats (get into ssh, "top"), look at the loads and then insert the htaccess and watch what happens... check on the site if it works like expected, [STRG]+[F5] and look into Yslow "Statistics" there must be a significant drop in requests and page size. if your cpu gets overloaded take the htaccess down! i can only tell you that on my biggest forum (record ~ 10k hits per second) on a crapy shared server handled it like a charm with this htaccess (and some other things)  for detailed things, pn me, for details i need your hardware and software config and some load figures... lets make this page fly 
|
|
|
|
|
7
|
Community / Website and Forum / Re: forum is slow?
|
on: January 26, 2011, 03:03:47 pm
|
an apache is running here but it is not optimized for speed! - missing GZIP (wasting 180kb per pageload => speed lost!) - no expire set, so NOTHING cached! (wasting ~25 of 30 http requests => speed lost!) the admin should put a htaccess like this in the http://arduino.cc/forum/ path: #Compresses everything: <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript </IfModule>
#sets the Cachetime to sometime from now, so the browsers cache them files! # A604800 = week / A2592000 = month <IfModule mod_expires.c> ExpiresActive On ExpiresDefault A604800 ExpiresByType text/html A0 ExpiresByType text/text A0 ExpiresByType text/plain A0 ExpiresByType text/css A604800 ExpiresByType image/gif A2592000 ExpiresByType image/png A2592000 ExpiresByType image/jpeg A2592000 ExpiresByType text/javascript A604800 ExpiresByType application/javascript A604800 ExpiresByType application/x-shockwave-flash A2592000 ExpiresByType application/x-javascript A604800 ExpiresByType image/x-icon A2592000 ExpiresByType image/vnd.microsoft.icon A2592000 </IfModule> mod_deflate and mod_expires must be installed, but that should be an easy thing  on my forums this boosted the pageload time from some 5secs to below 1sec, independend from usercount! so you can get the "instant" feeling, with just a little tweaking 
|
|
|
|
|
10
|
Forum 2005-2010 (read only) / Troubleshooting / Re: Arduino20/ 21 break code what runs on Arduino19 ok
|
on: November 07, 2010, 05:36:53 am
|
ok, done the avr-objump, this things got bigger: 19: 008005f6 l O .bss 00000002 twi_masterBuffer 008005fa l O .bss 00000002 twi_txBuffer 008005fe l O .bss 00000002 twi_rxBuffer 008005ea g O .bss 00000002 _ZN7TwoWire8txBufferE 008005e5 g O .bss 00000002 _ZN7TwoWire8rxBufferE 20: 00800634 l O .bss 00000020 twi_masterBuffer 00800656 l O .bss 00000020 twi_txBuffer 00800678 l O .bss 00000020 twi_rxBuffer 0080060a g O .bss 00000020 _ZN7TwoWire8txBufferE 008005e7 g O .bss 00000020 _ZN7TwoWire8rxBufferE nothing else changed... so, all this got 10x as big. what costs 90bytes, or? I have now just changed some serial.println("LONG TEXT") to serial.println("LT") style, and its working again :  Just slipped right below the 2000byte mark... But i will rethink the whole thing, running so close to the edge is not confident :-[ Thanks for all the help!!! Saved my day 
|
|
|
|
|
11
|
Forum 2005-2010 (read only) / Troubleshooting / Re: Arduino20/ 21 break code what runs on Arduino19 ok
|
on: November 06, 2010, 05:18:57 pm
|
eclipse is for future development  currently still in the arduino ide... avr-size for the elf on 19: text data bss dec hex filename 25296 1398 476 27170 6a22 work_designer2k2_03.cpp.elf and on 20: text data bss dec hex filename 24740 1400 622 26762 688a work_designer2k2_03.cpp.elf do i see it right that on 19 it takes 1874 SRAM, and on 20 2022? But as the Atmega328 only has 2000 it fails? If so, how can i reduce the BSS ? :-? And what is the BSS?
|
|
|
|
|
12
|
Forum 2005-2010 (read only) / Troubleshooting / Arduino20/ 21 break code what runs on Arduino19 ok
|
on: November 06, 2010, 05:42:33 am
|
Hello, i try to get my project working with the Arduino Uno, so i took the 21 and just uploaded what was working nice on the Duemilanove328. It compiles fine (even 500bytes smaller) but its not working at all. The Code is here: http://code.google.com/p/multidisplay/source/browse/#svn/trunk/work_designer2k2_03(its a little big...) The Problems are: - Serial does not work - LCD Shows intro screen, then something else, then nothing, randomized - Portexpander over I2C do not work I think something in the Memory is messed up, im using a lot of variables, but with 19 it worked :-[ Any Ideas where to look? with greetings from austria, Steff
|
|
|
|
|