Skip to content

Commit fb67609

Browse files
authored
Merge pull request #11 from RaspberryPiFoundation/detecting-unresponsive-hats
Applying patch to 'check the HAT can communicate at init time'
2 parents aab17f0 + 9ae2fa0 commit fb67609

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

include/i2c.h

+6
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,11 @@ extern void i2c_register_firmware_object(PyObject *firmware);
4242
*/
4343
extern int i2c_reset_hat(void);
4444

45+
/* Checks to see if there has been an error on the comms background
46+
* threads. Returns 0 if all is well, otherwise returns -1 and raises
47+
* an appropriate exception.
48+
*/
49+
extern int i2c_check_comms_error(void);
50+
4551

4652
#endif /* RPI_STRAWBERRY_I2C_H_INCLUDED */

src/hubmodule.c

+11
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,10 @@ Hub_init(HubObject *self, PyObject *args, PyObject *kwds)
197197

198198
new = firmware_init();
199199
if (new == NULL)
200+
{
201+
build_hat_created = 0;
200202
return -1;
203+
}
201204
old = self->firmware;
202205
Py_DECREF(old);
203206
self->firmware = new;
@@ -208,6 +211,13 @@ Hub_init(HubObject *self, PyObject *args, PyObject *kwds)
208211
usleep(800000);
209212
Py_END_ALLOW_THREADS
210213

214+
/* By this time we should at least have heard from the HAT */
215+
if (i2c_check_comms_error() < 0)
216+
{
217+
build_hat_created = 0;
218+
return -1;
219+
}
220+
211221
return 0;
212222
}
213223

@@ -221,6 +231,7 @@ Hub_finalize(PyObject *self)
221231
i2c_close_hat();
222232
callback_finalize();
223233
PyErr_Restore(etype, evalue, etraceback);
234+
build_hat_created = 0;
224235
}
225236

226237

src/i2c.c

+17
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ static int rx_event_fd = -1;
6868
static pthread_t comms_rx_thread;
6969
static pthread_t comms_tx_thread;
7070
static int shutdown = 0;
71+
static int heard_from_hat = 0;
7172

7273
static PyObject *firmware_object = NULL;
7374

@@ -381,6 +382,21 @@ static void report_comms_error(void)
381382
}
382383

383384

385+
/* Called from foreground */
386+
int i2c_check_comms_error(void)
387+
{
388+
if (!heard_from_hat)
389+
{
390+
PyErr_SetString(cmd_get_exception(), "HAT not responding");
391+
return -1;
392+
}
393+
/* XXX: else return error code somehow */
394+
395+
/* Otherwise all is well */
396+
return 0;
397+
}
398+
399+
384400
static int signal_rx_shutdown(void)
385401
{
386402
uint64_t value = 1;
@@ -909,6 +925,7 @@ static void *run_comms_rx(void *args __attribute__((unused)))
909925
report_comms_error();
910926
continue;
911927
}
928+
heard_from_hat = 1;
912929
if (buffer == NULL)
913930
continue; /* Nothing to do */
914931

0 commit comments

Comments
 (0)