speed up data logger
yoda152
Posts: 18
iv tryed to speed up data logger part of my code by using a 1 or 0 for two conditions that will be meet ( this 1 or 0 will then be writen to the memory stick). but when i try to run my program with DEC1 there is no data writen to the usb stick, it works if i use DEC5 why is this
see line 240 in code attached
any help would be great.
it would make sense that a 1 digit number would take a shoter time to be writen to the usb stick than a 5 digit number i need this speed up.
see line 240 in code attached
any help would be great.
it would make sense that a 1 digit number would take a shoter time to be writen to the usb stick than a 5 digit number i need this speed up.
Comments
There's a lot of overhead in writing small bits of data to the Memory Stick. Shortening the amount of data written will help a little, but not a lot. You may have to buffer several readings and write them all at once to the Memory Stick to reduce the effect of this overhead.