ChargeControl

Dependencies:   mbed PowerControl SDFileSystem

Fork of ChargeControl by 智也 大野

Committer:
tomoya123
Date:
Tue Dec 13 07:44:05 2016 +0000
Revision:
1:cbbad81dc88d
Parent:
0:0842f00470eb
ChargeControl

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tomoya123 0:0842f00470eb 1 #include "HeptaXbee.h"
tomoya123 0:0842f00470eb 2 #include "mbed.h"
tomoya123 0:0842f00470eb 3 #include <stdarg.h>
tomoya123 0:0842f00470eb 4
tomoya123 0:0842f00470eb 5 HeptaXbee::HeptaXbee(PinName tx, PinName rx) : xbee(tx,rx)
tomoya123 0:0842f00470eb 6 {
tomoya123 0:0842f00470eb 7 rcmd = 0;
tomoya123 0:0842f00470eb 8 cmdflag = 0;
tomoya123 0:0842f00470eb 9 }
tomoya123 0:0842f00470eb 10 void HeptaXbee::baud(int rate)
tomoya123 0:0842f00470eb 11 {
tomoya123 0:0842f00470eb 12 xbee.baud(rate);
tomoya123 0:0842f00470eb 13 }
tomoya123 0:0842f00470eb 14 void HeptaXbee::xbee_recieve(int *xrcmd, int *xcmdflag) {
tomoya123 0:0842f00470eb 15 xbee.attach(this,&HeptaXbee::commandget,Serial::RxIrq);
tomoya123 0:0842f00470eb 16 //xbee.printf("ssXbeedata= %d,%d",HeptaXbee::rcmd,HeptaXbee::cmdflag);
tomoya123 0:0842f00470eb 17 *xrcmd = HeptaXbee::rcmd;
tomoya123 0:0842f00470eb 18 *xcmdflag = HeptaXbee::cmdflag;
tomoya123 0:0842f00470eb 19 }
tomoya123 0:0842f00470eb 20
tomoya123 0:0842f00470eb 21 void HeptaXbee::initialize(){
tomoya123 0:0842f00470eb 22 HeptaXbee::rcmd = 0;
tomoya123 0:0842f00470eb 23 HeptaXbee::cmdflag = 0;
tomoya123 0:0842f00470eb 24 }
tomoya123 0:0842f00470eb 25
tomoya123 0:0842f00470eb 26 void HeptaXbee::commandget(){
tomoya123 0:0842f00470eb 27 HeptaXbee::rcmd=xbee.getc();
tomoya123 0:0842f00470eb 28 HeptaXbee::cmdflag = 1;
tomoya123 0:0842f00470eb 29 //xbee.printf("Xbeedata= %d,%d",rcmd,cmdflag);
tomoya123 0:0842f00470eb 30 }
tomoya123 0:0842f00470eb 31 void HeptaXbee::putc(char data)
tomoya123 0:0842f00470eb 32 {
tomoya123 0:0842f00470eb 33 xbee.putc(data);
tomoya123 0:0842f00470eb 34 }
tomoya123 0:0842f00470eb 35 void HeptaXbee::xbee_transmit(char* output_data,size_t output_n,
tomoya123 0:0842f00470eb 36 char data1[],char data2[],char data3[],char data4[],char data5[],char data6[],char data7[],char data8[],char data9[],
tomoya123 0:0842f00470eb 37 int n1,int n2,int n3,int n4,int n5,int n6,int n7,int n8,int n9)
tomoya123 0:0842f00470eb 38 {
tomoya123 0:0842f00470eb 39 int N=0,i=0,ii,jj=0;
tomoya123 0:0842f00470eb 40 for(i = 0; i <= n1-1; i++){
tomoya123 0:0842f00470eb 41 output_data[N+i] = data1[i];
tomoya123 0:0842f00470eb 42 }
tomoya123 0:0842f00470eb 43 N=i;
tomoya123 0:0842f00470eb 44 for(i = 0; i <= n2-1; i++){
tomoya123 0:0842f00470eb 45 output_data[N+i] = data2[i];
tomoya123 0:0842f00470eb 46 }
tomoya123 0:0842f00470eb 47 N=N+i;
tomoya123 0:0842f00470eb 48 for(i = 0; i <= n3-1; i++){
tomoya123 0:0842f00470eb 49 output_data[N+i] = data3[i];
tomoya123 0:0842f00470eb 50 }
tomoya123 0:0842f00470eb 51 N=N+i;
tomoya123 0:0842f00470eb 52 for(i = 0; i <= n4-1; i++){
tomoya123 0:0842f00470eb 53 output_data[N+i] = data4[i];
tomoya123 0:0842f00470eb 54 }
tomoya123 0:0842f00470eb 55 N=N+i;
tomoya123 0:0842f00470eb 56 for(i = 0; i <= n5-1; i++){
tomoya123 0:0842f00470eb 57 output_data[N+i] = data5[i];
tomoya123 0:0842f00470eb 58 }
tomoya123 0:0842f00470eb 59 N=N+i;
tomoya123 0:0842f00470eb 60 for(i = 0; i <= n6-1; i++){
tomoya123 0:0842f00470eb 61 output_data[N+i] = data6[i];
tomoya123 0:0842f00470eb 62 }
tomoya123 0:0842f00470eb 63 N=N+i;
tomoya123 0:0842f00470eb 64 for(i = 0; i <= n7-1; i++){
tomoya123 0:0842f00470eb 65 output_data[N+i] = data7[i];
tomoya123 0:0842f00470eb 66 }
tomoya123 0:0842f00470eb 67 N=N+i;
tomoya123 0:0842f00470eb 68 for(i = 0; i <= n8-1; i++){
tomoya123 0:0842f00470eb 69 output_data[N+i] = data8[i];
tomoya123 0:0842f00470eb 70 }
tomoya123 0:0842f00470eb 71 N=N+i;
tomoya123 0:0842f00470eb 72 for(i = 0; i <= n9-1; i++){
tomoya123 0:0842f00470eb 73 output_data[N+i] = data9[i];
tomoya123 0:0842f00470eb 74 }
tomoya123 0:0842f00470eb 75 for(ii=0;ii<output_n;ii++){
tomoya123 0:0842f00470eb 76 xbee.putc(output_data[ii]);
tomoya123 0:0842f00470eb 77 jj++;
tomoya123 0:0842f00470eb 78 if(jj==2)
tomoya123 0:0842f00470eb 79 {
tomoya123 0:0842f00470eb 80 xbee.putc(0x20);
tomoya123 0:0842f00470eb 81 jj=0;
tomoya123 0:0842f00470eb 82 }
tomoya123 0:0842f00470eb 83 }
tomoya123 0:0842f00470eb 84 xbee.putc(0x0a);
tomoya123 0:0842f00470eb 85 }
tomoya123 0:0842f00470eb 86 void HeptaXbee::puts( char *s ) {
tomoya123 0:0842f00470eb 87 while ( char c = *s++ )
tomoya123 0:0842f00470eb 88 xbee.putc( c );
tomoya123 0:0842f00470eb 89 }
tomoya123 0:0842f00470eb 90 void HeptaXbee::printf( char *format, ... ) {
tomoya123 0:0842f00470eb 91 char s[ 32 ];
tomoya123 0:0842f00470eb 92 va_list args;
tomoya123 0:0842f00470eb 93
tomoya123 0:0842f00470eb 94 va_start( args, format );
tomoya123 0:0842f00470eb 95 vsnprintf( s, 32, format, args );
tomoya123 0:0842f00470eb 96 va_end( args );
tomoya123 0:0842f00470eb 97
tomoya123 0:0842f00470eb 98 xbee.puts( s );
tomoya123 0:0842f00470eb 99 }