it is not working.. this is what I have:
#include "SoR_Utils.h" //includes all the technical stuff
#include "uart.h"
#define RPRINTF_FLOAT
#include "rprintf.h"
int main(void)
{
//declare variables here
//int i=250;//a 'whatever' variable
int sensor_left=0;//left photoresistor
int sensor_right=0;//right photoresistor
int threshold=25;//the larger this number, the more likely your robot will drive straight
int rangefinder1=0;
int rangefinder2=0;
float num=334;
rprintfFloat(8,num);thats just the beginning of the code, but it is the only place I use it. It still gives me the same error.. any suggestions?