@@ -209,8 +209,8 @@ static rf_mode_e rf_mode = RF_MODE_NORMAL;
209
209
static bool rf_update_config = false ;
210
210
static uint16_t cur_packet_len = 0xffff ;
211
211
static uint32_t receiver_ready_timestamp;
212
-
213
212
static int16_t rssi_threshold = RSSI_THRESHOLD;
213
+ static uint32_t tx_start_time = 0 ;
214
214
215
215
/* Channel configurations for sub-GHz */
216
216
static phy_rf_channel_configuration_s phy_subghz = {
@@ -276,6 +276,20 @@ static uint32_t rf_get_timestamp(void)
276
276
return (uint32_t )rf->tx_timer .read_us ();
277
277
}
278
278
279
+ static void rf_update_tx_active_time (void )
280
+ {
281
+ if (device_driver.phy_rf_statistics ) {
282
+ device_driver.phy_rf_statistics ->tx_active_time += rf_get_timestamp () - tx_start_time;
283
+ }
284
+ }
285
+
286
+ static void rf_update_rx_active_time (void )
287
+ {
288
+ if (device_driver.phy_rf_statistics ) {
289
+ device_driver.phy_rf_statistics ->rx_active_time += rf_get_timestamp () - rx_time;
290
+ }
291
+ }
292
+
279
293
static void rf_lock (void )
280
294
{
281
295
platform_enter_critical ();
@@ -739,6 +753,7 @@ static void rf_tx_sent_handler(void)
739
753
rf_disable_interrupt (TX_DATA_SENT);
740
754
if (rf_state != RF_TX_ACK) {
741
755
tx_finnish_time = rf_get_timestamp ();
756
+ rf_update_tx_active_time ();
742
757
TEST_TX_DONE
743
758
rf_state = RF_IDLE;
744
759
rf_receive (rf_rx_channel);
@@ -771,6 +786,7 @@ static void rf_start_tx(void)
771
786
rf_disable_all_interrupts ();
772
787
rf_poll_state_change (S2LP_STATE_READY);
773
788
rf_state_change (S2LP_STATE_TX, false );
789
+ tx_start_time = rf_get_timestamp ();
774
790
// More TX data to be written in FIFO when TX threshold interrupt occurs
775
791
if (tx_data_ptr) {
776
792
rf_enable_interrupt (TX_FIFO_ALMOST_EMPTY);
@@ -805,6 +821,7 @@ static void rf_cca_timer_interrupt(void)
805
821
}
806
822
rf_flush_tx_fifo ();
807
823
tx_finnish_time = rf_get_timestamp ();
824
+ rf_update_tx_active_time ();
808
825
if (device_driver.phy_tx_done_cb ) {
809
826
device_driver.phy_tx_done_cb (rf_radio_driver_id, mac_tx_handle, PHY_LINK_CCA_FAIL, 0 , 0 );
810
827
}
@@ -825,6 +842,9 @@ static void rf_cca_timer_interrupt(void)
825
842
rf_start_tx ();
826
843
rf_state = RF_TX_STARTED;
827
844
TEST_TX_STARTED
845
+ if (device_driver.phy_rf_statistics ) {
846
+ device_driver.phy_rf_statistics ->tx_bytes += tx_data_length;
847
+ }
828
848
}
829
849
}
830
850
}
@@ -843,10 +863,12 @@ static void rf_backup_timer_interrupt(void)
843
863
{
844
864
tx_finnish_time = rf_get_timestamp ();
845
865
if (rf_state == RF_RX_STARTED) {
866
+ rf_update_rx_active_time ();
846
867
if (device_driver.phy_rf_statistics ) {
847
868
device_driver.phy_rf_statistics ->rx_timeouts ++;
848
869
}
849
870
} else {
871
+ rf_update_tx_active_time ();
850
872
if (device_driver.phy_rf_statistics ) {
851
873
device_driver.phy_rf_statistics ->tx_timeouts ++;
852
874
}
@@ -921,13 +943,17 @@ static void rf_send_ack(uint8_t seq)
921
943
rf_start_tx ();
922
944
TEST_ACK_TX_STARTED
923
945
rf_backup_timer_start (ACK_SENDING_TIME);
946
+ if (device_driver.phy_rf_statistics ) {
947
+ device_driver.phy_rf_statistics ->tx_bytes += sizeof (ack_frame);
948
+ }
924
949
}
925
950
926
951
static void rf_handle_ack (uint8_t seq_number, uint8_t pending)
927
952
{
928
953
phy_link_tx_status_e phy_status;
929
954
if (tx_sequence == (uint16_t )seq_number) {
930
955
tx_finnish_time = rf_get_timestamp ();
956
+ rf_update_tx_active_time ();
931
957
if (pending) {
932
958
phy_status = PHY_LINK_TX_DONE_PENDING;
933
959
} else {
@@ -966,6 +992,9 @@ static void rf_rx_ready_handler(void)
966
992
rf_send_ack (rx_buffer[2 ]);
967
993
}
968
994
}
995
+ if (device_driver.phy_rf_statistics ) {
996
+ device_driver.phy_rf_statistics ->rx_bytes += rx_data_length;
997
+ }
969
998
} else {
970
999
rf_state = RF_IDLE;
971
1000
int8_t rssi = (rf_read_register (RSSI_LEVEL) - RSSI_OFFSET);
@@ -1072,6 +1101,7 @@ static void rf_irq_task_process_irq(void)
1072
1101
if ((irq_status & (1 << TX_FIFO_UNF_OVF)) && (enabled_interrupts & (1 << TX_FIFO_UNF_OVF))) {
1073
1102
rf_backup_timer_stop ();
1074
1103
tx_finnish_time = rf_get_timestamp ();
1104
+ rf_update_tx_active_time ();
1075
1105
TEST_TX_DONE
1076
1106
device_driver.phy_tx_done_cb (rf_radio_driver_id, mac_tx_handle, PHY_LINK_CCA_FAIL, 1 , 0 );
1077
1107
rf_send_command (S2LP_CMD_SABORT);
@@ -1087,6 +1117,7 @@ static void rf_irq_task_process_irq(void)
1087
1117
}
1088
1118
} else if (rf_state == RF_RX_STARTED) {
1089
1119
if ((irq_status & (1 << RX_DATA_READY)) && (enabled_interrupts & (1 << RX_DATA_READY))) {
1120
+ rf_update_rx_active_time ();
1090
1121
if (!(irq_status & (1 << CRC_ERROR))) {
1091
1122
rf_rx_ready_handler ();
1092
1123
} else {
@@ -1112,6 +1143,7 @@ static void rf_irq_task_process_irq(void)
1112
1143
}
1113
1144
}
1114
1145
if ((irq_status & (1 << RX_FIFO_UNF_OVF)) && (enabled_interrupts & (1 << RX_FIFO_UNF_OVF))) {
1146
+ rf_update_rx_active_time ();
1115
1147
TEST_RX_DONE
1116
1148
rf_backup_timer_stop ();
1117
1149
rf_send_command (S2LP_CMD_SABORT);
0 commit comments