/* Copyright (C) 2016 - IIT Bombay - FOSSEE This file must be used under the terms of the CeCILL. This source file is licensed as described in the file COPYING, which you should have received as part of this distribution. The terms are also available at http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt Author: Ashish Kamble Organization: FOSSEE, IIT Bombay Email: toolbox@scilab.in */ //Not Tested// #include "AVRPeripheralUART.h" #include uint8 dAVRUARTTransmits(double data) { //Extract integer part long int intpart = (long int)data; //Extract double part //double floatpart = data - (double)intpart; char* str; int i = 0; while(intpart) { str[i] = (intpart%10) + '0'; intpart = intpart/10; i++; } str[i]='\0'; /* int j = 0; int k = i-1; char temp; while(j