xoscillo cant be compile arduino 1.0

268 views
Skip to first unread message

carlos flores

unread,
Jan 16, 2012, 4:24:15 PM1/16/12
to xoscillo
hi, i tried to compile de pde file with the zip content but gives
errors to compile such as BYTE was not define...... am i doing
something wrong??? i dont have to compile the file or a i have to??

Raul Aguaviva

unread,
Jan 16, 2012, 7:08:21 PM1/16/12
to xosc...@googlegroups.com
Hi! 

The quick solution is to use a previous version, the slower one wait for me to fix those issues :-)

Are those errors very hard to fix?

Thanks
Raul

carlos flores

unread,
Jan 17, 2012, 12:52:12 PM1/17/12
to xoscillo
hiii, i have found the problem is that arduino 1.0 have new libraries.
so here is the problem

Serial.print( 79, BYTE ) ;
Serial.print( 67, BYTE ) ;
Serial.print( triggerVoltage, BYTE ) ;
Serial.print( DataRemaining>>8, BYTE ) ;
Serial.print( DataRemaining&0xff, BYTE ) ;
for (int i=0;i<2;i++)
{
Serial.print( triggerVoltage, BYTE ) ;
}
these in your version bur for arduino 1.0 must be


Serial.write( 79) ;
Serial.write( 67) ;
Serial.write( triggerVoltage) ;
Serial.write( DataRemaining>>8) ;
Serial.write( DataRemaining&0xff) ;
for (int i=0;i<2;i++)
{
Serial.write( triggerVoltage) ;
}
these fix the error.....

but still in windows xp i cant star the program XOscillo it doesn't
run....
and in linux when i choose new arduino analog o digital it says
waiting for trigger y dont know what to do.... have a sensor connected
to A0 for reading but nothing happens.

i want to add a tutorial in arduino playgorund for OXscillo but i cant
get it run
Reply all
Reply to author
Forward
0 new messages