Skip to content

Commit 9eabf65

Browse files
fix Serial I2C operation for Here3+ and Here4
1 parent 82bdff8 commit 9eabf65

File tree

8 files changed

+30
-19
lines changed

8 files changed

+30
-19
lines changed

AP_Periph/AP_Periph.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,11 @@ void AP_Periph_FW::init()
164164
#endif
165165
}
166166

167+
#ifdef I2C_SLAVE_ENABLED
167168
i2c_event_handle.set_source(&i2c_event_source);
168169
i2c_event_handle.register_event(1);
169170
i2c_setup();
171+
#endif
170172

171173
compass.init();
172174

@@ -283,6 +285,7 @@ void AP_Periph_FW::update()
283285

284286
rcout_update();
285287

288+
#ifdef I2C_SLAVE_ENABLED
286289
if (_setup_ser_i2c_mode && AP_Periph_FW::no_iface_finished_dna) {
287290
hal.scheduler->expect_delay_ms(100);
288291
g.serial_i2c_mode.set_and_save(1);
@@ -297,7 +300,9 @@ void AP_Periph_FW::update()
297300
hal.scheduler->reboot(false);
298301
}
299302

300-
if (!g.serial_i2c_mode) {
303+
if (!g.serial_i2c_mode)
304+
#endif
305+
{
301306
update_rainbow();
302307
}
303308

AP_Periph/AP_Periph.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,9 @@ class AP_Periph_FW {
122122

123123
void toshibaled_interface_recv_byte(uint8_t recv_byte_idx, uint8_t recv_byte);
124124

125+
#ifdef I2C_SLAVE_ENABLED
125126
void i2c_setup();
126-
127+
#endif
127128
uint8_t compass_reg;
128129
struct reg_list {
129130
struct reg_list *next;
@@ -169,6 +170,7 @@ class AP_Periph_FW {
169170
uint64_t last_time_sync_usec;
170171
int64_t time_offset_usec;
171172

173+
#ifdef I2C_SLAVE_ENABLED
172174
uint8_t i2c_led_color_red;
173175
uint8_t i2c_led_color_green;
174176
uint8_t i2c_led_color_blue;
@@ -182,7 +184,8 @@ class AP_Periph_FW {
182184

183185
HAL_EventHandle i2c_event_handle;
184186
ChibiOS::EventSource i2c_event_source;
185-
187+
#endif
188+
186189
static AP_Periph_FW *_singleton;
187190

188191
enum class DebugOptions {

AP_Periph/Parameters.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,10 @@ const AP_Param::Info AP_Periph_FW::var_info[] = {
153153
GARRAY(can_fdbaudrate, 1, "CAN2_FDBAUDRATE", 8000000),
154154
#endif
155155

156+
#ifdef I2C_SLAVE_ENABLED
156157
// select serial i2c mode and disable can gps
157158
GSCALAR(serial_i2c_mode, "SER_I2C_MODE", 0),
158-
159+
#endif
159160
//select terminator setting
160161
GARRAY(can_terminator, 0, "CAN_TERMINATOR", 0),
161162

AP_Periph/Parameters.h

+2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ class Parameters {
9494

9595
AP_Int8 can_fdmode;
9696
AP_Int32 can_fdbaudrate[HAL_NUM_CAN_IFACES];
97+
#ifdef I2C_SLAVE_ENABLED
9798
AP_Int8 serial_i2c_mode;
99+
#endif
98100
AP_Int8 can_terminator[HAL_NUM_CAN_IFACES];
99101
AP_Int8 node_stats;
100102
AP_Int8 cubeid_fw_update_enabled;

AP_Periph/can.cpp

+11-14
Original file line numberDiff line numberDiff line change
@@ -673,32 +673,29 @@ void AP_Periph_FW::can_update()
673673
if (AP_HAL::millis() > send_next_node_id_allocation_request_at_ms) {
674674
can_do_dna();
675675
}
676+
bool enable_gps = true;
677+
#ifdef I2C_SLAVE_ENABLED
678+
enable_gps = !g.serial_i2c_mode;
679+
#endif
676680

681+
#ifdef I2C_SLAVE_ENABLED
682+
// update LEDs as well
683+
if (i2c_new_led_data && g.serial_i2c_mode) {
684+
i2c_new_led_data = false;
685+
set_rgb_led(i2c_led_color_red, i2c_led_color_green, i2c_led_color_blue);
686+
}
687+
#endif
677688
if (!AP_Periph_FW::no_iface_finished_dna) {
678689
static uint32_t last_1Hz_ms;
679690
if (now - last_1Hz_ms >= 1000) {
680691
last_1Hz_ms = now;
681692
process1HzTasks(AP_HAL::micros64());
682693
}
683694

684-
bool enable_gps = true;
685-
#ifdef I2C_SLAVE_ENABLED
686-
enable_gps = !g.serial_i2c_mode;
687-
#endif
688-
689695
if (enable_gps) {
690696
dronecan->can_gps_update();
691697
dronecan->send_serial_monitor_data();
692698
}
693-
#ifdef I2C_SLAVE_ENABLED
694-
else {
695-
// update LEDs as well
696-
if (i2c_new_led_data) {
697-
i2c_new_led_data = false;
698-
set_rgb_led(i2c_led_color_red, i2c_led_color_green, i2c_led_color_blue);
699-
}
700-
}
701-
#endif
702699

703700
dronecan->can_mag_update();
704701
dronecan->can_baro_update();

AP_Periph/i2c_slave.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "AP_Periph.h"
22
#include <ch.h>
33
#include <hal.h>
4-
4+
#ifdef I2C_SLAVE_ENABLED
55
#define TOSHIBALED_I2C_ADDRESS 0x55
66
#define RM3100_I2C_ADDR1 0x20
77
#define RM3100_I2C_ADDR2 0x21
@@ -254,3 +254,4 @@ OSAL_IRQ_HANDLER(STM32_I2C2_EVENT_HANDLER) {
254254

255255
OSAL_IRQ_EPILOGUE();
256256
}
257+
#endif

Here3+/hwdef.dat

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ define STM32_ADC_USE_ADC1 FALSE
8282
define HAL_DISABLE_ADC_DRIVER TRUE
8383

8484
define HAL_INS_ACCELCAL_ENABLED FALSE
85+
define I2C_SLAVE_ENABLED
8586

8687
SPIDEV rm3100 SPI3 DEVID1 MAG_CS MODE0 1*MHZ 1*MHZ
8788
COMPASS RM3100 SPI:rm3100 false ROTATION_YAW_180

Here4/hwdef.dat

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ define HAL_PERIPH_ENABLE_GPS 1
131131
define HAL_PERIPH_ENABLE_MAG 1
132132
define GPS_MOVING_BASELINE 1
133133
define AP_INERTIALSENSOR_ENABLED 1
134+
define I2C_SLAVE_ENABLED
134135

135136
define HAL_NO_MONITOR_THREAD
136137

0 commit comments

Comments
 (0)