qqqq
Dependencies: HEPTA_SENSOR mbed HEPTA_EPS HEPTA_COM HEPTA_CDH
main.cpp
- Committer:
- csmk18112
- Date:
- 2022-08-19
- Revision:
- 32:c22cbcfb4635
- Parent:
- 30:f300d1e88f4c
- Child:
- 33:57c79f4b3997
File content as of revision 32:c22cbcfb4635:
#include "mbed.h" #include "HEPTA_CDH.h" #include "HEPTA_EPS.h" #include "HEPTA_SENSOR.h" #include "HEPTA_COM.h" HEPTA_CDH cdh(p5, p6, p7, p8, "sd"); HEPTA_EPS eps(p16,p26); HEPTA_SENSOR sensor(p17, p28,p27,0x19,0x69,0x13, p13, p14,p25,p24); HEPTA_COM com(p9,p10); DigitalOut condition(LED1); Serial sat(USBTX,USBRX,9600); Timer sattime; int rcmd = 0,cmdflag = 0; //command variable int main() { sat.printf("From Sat : Nominal Operation\r\n"); com.printf("From Sat : Nominal Operation\r\n"); com.baud(9600); int flag = 0; //condition flag float batvol, temp; //voltage, temperature int rcmd=0,cmdflag=0; //command variable sattime.start(); eps.turn_on_regulator();//turn on 3.3V conveter for(int i = 0; i < 100; i++) { com.xbee_receive(&rcmd,&cmdflag);//interupting by ground station command //satellite condition led condition = !condition; //senssing HK data(dummy data) eps.vol(&batvol); sensor.temp_sense(&temp); //Transmitting HK data to Ground Station(GS) com.printf("HEPTASAT::Condition = %d, Time = %f [s], batVol = %.2f [V],Temp = %.2f [C]\r\n",flag,sattime.read(),batvol,temp); wait_ms(1000); //Power Saving Mode if((batvol <= 3.5) | (temp > 35.0)){ eps.shut_down_regulator(); com.printf("Power saving mode ON\r\n"); flag = 1; } else if((flag == 1) & (batvol > 3.7) & (temp <= 25.0)) { eps.turn_on_regulator(); com.printf("Power saving mode OFF\r\n"); flag = 0; } //Contents of command if (cmdflag == 1) { if (rcmd == 'a') { sat.printf("rcmd=%c,cmdflag=%d\r\n",rcmd,cmdflag); com.printf("Hepta-Sat Lite Uplink Ok\r\n"); for(int j=0;j<5;j++){ com.printf("Hello World!\r\n"); condition = 1; wait_ms(1000); } }else if (rcmd == 'b') { sat.printf("rcmd=%c,cmdflag=%d\r\n",rcmd,cmdflag); com.printf("Hepta-Sat Lite Uplink Ok\r\n"); char str[100]; mkdir("/sd/mydir", 0777); FILE *fp = fopen("/sd/mydir/satdata.txt","w"); if(fp == NULL) { error("Could not open file for write\r\n"); } for(int i = 0; i < 10; i++) { eps.vol(&batvol); fprintf(fp,"%f\r\n",batvol); condition = 1; wait_ms(1000); } fclose(fp); fp = fopen("/sd/mydir/satdata.txt","r"); for(int i = 0; i < 10; i++) { fgets(str,100,fp); com.puts(str); } fclose(fp); }else if (rcmd == 'c') { //Please insert your answer }else if (rcmd == 'd') { //Please insert your answer }else if (rcmd == 'e') { //Please insert your answer } com.initialize(); } } sattime.stop(); sat.printf("From Sat : End of operation\r\n"); com.printf("From Sat : End of operation\r\n"); }