|
@@ -185,9 +185,9 @@ bool UL_PathUserHandl[4] = {0,};
|
185
|
185
|
typedef enum{
|
186
|
186
|
DLI_FRBT_Time_Year = 0,
|
187
|
187
|
DLI_FRBT_Time_Month,
|
188
|
|
- DLI_FRBT_Time_Minute,
|
189
|
|
- DLI_FRBT_Time_Hour,
|
190
|
188
|
DLI_FRBT_Time_Day,
|
|
189
|
+ DLI_FRBT_Time_Hour,
|
|
190
|
+ DLI_FRBT_Time_Minute,
|
191
|
191
|
DLI_FRBT_Time_Second,
|
192
|
192
|
DLI_FRBT_Time_Index_Max,
|
193
|
193
|
};
|
|
@@ -3046,11 +3046,11 @@ bool Bluecell_Operate(uint8_t* data){
|
3046
|
3046
|
// printf("Bluecell_UL_Det_Path4_Offset : %d \r\n",bluecell_Currdatastatus.UL_Det_Path_Offset[3]);
|
3047
|
3047
|
break;
|
3048
|
3048
|
#endif // PYJ.2020.09.03_END --
|
3049
|
|
- case Bluecell_Temp_Shutdown_Path_ON_OFF:
|
3050
|
|
- bluecell_Currdatastatus.Path_TempShutdown_Set = data[BLUECELL_DATA];
|
|
3049
|
+ case Bluecell_DL_UL_SUM_PATH_ON_OFF:
|
|
3050
|
+ bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF = data[BLUECELL_DATA];
|
3051
|
3051
|
// printf("data[BLUECELL_DATA] : %d \r\n",data[BLUECELL_DATA]);
|
3052
|
|
-// printf("Path_TempShutdown_Set : %d \r\n",bluecell_Currdatastatus.Path_TempShutdown_Set);
|
3053
|
|
- Temp_Shutdown_ONOFF(bluecell_Currdatastatus.Path_TempShutdown_Set);
|
|
3052
|
+// printf("DL_UL_Sum_Path_ON_OFF : %d \r\n",bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF);
|
|
3053
|
+ Temp_Shutdown_ONOFF(bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF);
|
3054
|
3054
|
break;
|
3055
|
3055
|
}
|
3056
|
3056
|
|
|
@@ -3058,7 +3058,7 @@ bool Bluecell_Operate(uint8_t* data){
|
3058
|
3058
|
&& datatype != Bluecell_LED_TEST
|
3059
|
3059
|
&& datatype != ATT_TableSet
|
3060
|
3060
|
&& datatype != ATT_TableGet
|
3061
|
|
- && datatype != Bluecell_Temp_Shutdown_Path_ON_OFF)
|
|
3061
|
+ && datatype != Bluecell_DL_UL_SUM_PATH_ON_OFF)
|
3062
|
3062
|
|
3063
|
3063
|
{
|
3064
|
3064
|
// Bluecell_StructCpy(&DataWrite[0],&bluecell_Currdatastatus.bluecell_header,sizeof(BLUESTATUS_st));
|
|
@@ -3714,6 +3714,13 @@ uint32_t MBIC_DataSend(uint8_t* data){
|
3714
|
3714
|
data[MBIC_PAYLOADSTART + i++] = bluecell_Currdatastatus.Manufacture_Date[1];
|
3715
|
3715
|
data[MBIC_PAYLOADSTART + i++] = bluecell_Currdatastatus.Manufacture_Date[2];
|
3716
|
3716
|
|
|
3717
|
+ /*Manufacture_Date*/
|
|
3718
|
+ data[MBIC_PAYLOADSTART + i++] = MBIC_AID;
|
|
3719
|
+ data[MBIC_PAYLOADSTART + i++] = DL_UL_SUM_PATH_ON_OFF;
|
|
3720
|
+ data[MBIC_PAYLOADSTART + i++] = 1; // LENGTH
|
|
3721
|
+ Length += 1 ;HeaderLength++;
|
|
3722
|
+ data[MBIC_PAYLOADSTART + i++] = bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF;
|
|
3723
|
+
|
3717
|
3724
|
/*Freq_ID*/
|
3718
|
3725
|
data[MBIC_PAYLOADSTART + i++] = MBIC_AID;
|
3719
|
3726
|
data[MBIC_PAYLOADSTART + i++] = Freq_ID;
|
|
@@ -4804,7 +4811,7 @@ void Carrier_ONOFF(uint8_t val){
|
4804
|
4811
|
}
|
4805
|
4812
|
void Temp_Shutdown_ONOFF(uint8_t val){
|
4806
|
4813
|
// printf("val :%d \r\n",val);
|
4807
|
|
-// printf("Path_TempShutdown_Set : %d \r\n",bluecell_Currdatastatus.Path_TempShutdown_Set);
|
|
4814
|
+// printf("DL_UL_Sum_Path_ON_OFF : %d \r\n",bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF);
|
4808
|
4815
|
// printf(" bluecell_Currdatastatus.Path_TempSave_Bit : %x \r\n", bluecell_Currdatastatus.Path_TempSave_Bit);
|
4809
|
4816
|
if(val == 1){// ON //Path ON
|
4810
|
4817
|
#if 0 // PYJ.2020.08.14_BEGIN --
|
|
@@ -5355,11 +5362,11 @@ bool MBIC_Operate(uint8_t* data){
|
5355
|
5362
|
for(int i = 0 ; i < 3; i++)
|
5356
|
5363
|
bluecell_Currdatastatus.Manufacture_Date[i] = data[MBIC_PAYLOADSTART + 3 + i];
|
5357
|
5364
|
break;
|
5358
|
|
- case Temp_Shutdown_Path_ON_OFF:
|
5359
|
|
- bluecell_Currdatastatus.Path_TempShutdown_Set = data[MBIC_PAYLOADSTART + 3];
|
5360
|
|
-// printf("bluecell_Currdatastatus.Path_TempShutdown_Set : %d \r\n",bluecell_Currdatastatus.Path_TempShutdown_Set);
|
5361
|
|
- Temp_Shutdown_ONOFF(bluecell_Currdatastatus.Path_TempShutdown_Set);
|
5362
|
|
-// printf("bluecell_Currdatastatus.Path_TempShutdown_Set : %d \r\n",bluecell_Currdatastatus.Path_TempShutdown_Set);
|
|
5365
|
+ case DL_UL_SUM_PATH_ON_OFF:
|
|
5366
|
+ bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF = data[MBIC_PAYLOADSTART + 3];
|
|
5367
|
+// printf("bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF : %d \r\n",bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF);
|
|
5368
|
+ Temp_Shutdown_ONOFF(bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF);
|
|
5369
|
+// printf("bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF : %d \r\n",bluecell_Currdatastatus.DL_UL_Sum_Path_ON_OFF);
|
5363
|
5370
|
// printf(" bluecell_Currdatastatus.ATT_DL1_PATH : %d \r\n", bluecell_Currdatastatus.ATT_DL1_PATH);
|
5364
|
5371
|
break;
|
5365
|
5372
|
case Carrier_ON_OFF :
|