|
@@ -1668,7 +1668,7 @@ namespace Jdas_Mbic
|
1668
|
1668
|
adcdata = 0;
|
1669
|
1669
|
adcdata += ((buf[(int)BluecellReqIndex.ATT_DL4_H] << 8) & 0xFF00);
|
1670
|
1670
|
adcdata += (buf[(int)BluecellReqIndex.ATT_DL4_L] & 0x00FF);
|
1671
|
|
- adcdata /= 100;
|
|
1671
|
+ adcdata /= 10;
|
1672
|
1672
|
this.Invoke(new StringSend(Numeric_Text_Set), numericUpDown_ATT_DL4, adcdata.ToString("N2"));
|
1673
|
1673
|
adcdata = 0;
|
1674
|
1674
|
|
|
@@ -1684,7 +1684,7 @@ namespace Jdas_Mbic
|
1684
|
1684
|
adcdata = 0;
|
1685
|
1685
|
adcdata += ((buf[(int)BluecellReqIndex.ATT_UL3_H] << 8) & 0xFF00);
|
1686
|
1686
|
adcdata += (buf[(int)BluecellReqIndex.ATT_UL3_L] & 0x00FF);
|
1687
|
|
- adcdata /= 100;
|
|
1687
|
+ adcdata /= 10;
|
1688
|
1688
|
this.Invoke(new StringSend(Numeric_Text_Set), numericUpDown_ATT_UL3, adcdata.ToString("N2"));
|
1689
|
1689
|
adcdata = 0;
|
1690
|
1690
|
adcdata += ((buf[(int)BluecellReqIndex.ATT_UL4_H] << 8) & 0xFF00);
|
|
@@ -2577,6 +2577,7 @@ namespace Jdas_Mbic
|
2577
|
2577
|
|
2578
|
2578
|
private void button_Reset_Click(object sender, EventArgs e)
|
2579
|
2579
|
{
|
|
2580
|
+ label_CompileDate.Text = "";
|
2580
|
2581
|
byte[] temp_buf = new byte[TableGetMaxLength];
|
2581
|
2582
|
|
2582
|
2583
|
temp_buf[(int)Bluecell_ProtIndex_p.Bluecell_Header] = BLUECELL_HEADER;
|