Skip to content
Snippets Groups Projects
Verified Commit 6fd06fb9 authored by xiretza's avatar xiretza
Browse files

feat(bhi160): Provide magnetometer data

parent 4a66fb09
No related branches found
No related tags found
No related merge requests found
...@@ -100,3 +100,29 @@ Supports the BHI160 sensor on the card10 for accelerometer, gyroscope... ...@@ -100,3 +100,29 @@ Supports the BHI160 sensor on the card10 for accelerometer, gyroscope...
Close the connection to the sensor Close the connection to the sensor
.. class:: bhi160.BHI160Magnetometer
Magnetometer of the BHI160
Parameters:
sample_rate: int, optional
Sample rate (default is 4)
dynamic_range: int, optional
Dynamic range (default is 1)
callback: callable, optional
Call this callback when enough data is collected (default is None)
.. todo:: The callback functionality is untested, so do not be confused if it does not work.
sample_buffer_len: int, optional
Length of sample buffer (default is 200)
.. py:method:: read():
Read sensor values
:returns: Collected sensor values as list
.. py:method:: close():
Close the connection to the sensor
...@@ -188,17 +188,19 @@ API(API_INTERRUPT_DISABLE, int epic_interrupt_disable(api_int_id_t int_id)); ...@@ -188,17 +188,19 @@ API(API_INTERRUPT_DISABLE, int epic_interrupt_disable(api_int_id_t int_id));
#define EPIC_INT_UART_RX 2 #define EPIC_INT_UART_RX 2
/** RTC Alarm interrupt. See :c:func:`epic_isr_rtc_alarm`. */ /** RTC Alarm interrupt. See :c:func:`epic_isr_rtc_alarm`. */
#define EPIC_INT_RTC_ALARM 3 #define EPIC_INT_RTC_ALARM 3
/** BHI180 Accelerometer. See :c:func:`epic_isr_bhi160_accelerometer`. */ /** BHI160 Accelerometer. See :c:func:`epic_isr_bhi160_accelerometer`. */
#define EPIC_INT_BHI160_ACCELEROMETER 4 #define EPIC_INT_BHI160_ACCELEROMETER 4
/** BHI180 Orientation Sensor. See :c:func:`epic_isr_bhi160_orientation`. */ /** BHI160 Orientation Sensor. See :c:func:`epic_isr_bhi160_orientation`. */
#define EPIC_INT_BHI160_ORIENTATION 5 #define EPIC_INT_BHI160_ORIENTATION 5
/** BHI180 Gyroscope. See :c:func:`epic_isr_bhi160_gyroscope`. */ /** BHI160 Gyroscope. See :c:func:`epic_isr_bhi160_gyroscope`. */
#define EPIC_INT_BHI160_GYROSCOPE 6 #define EPIC_INT_BHI160_GYROSCOPE 6
/** MAX30001 ECG. See :c:func:`epic_isr_max30001_ecg`. */ /** MAX30001 ECG. See :c:func:`epic_isr_max30001_ecg`. */
#define EPIC_INT_MAX30001_ECG 7 #define EPIC_INT_MAX30001_ECG 7
/** BHI160 Magnetometer. See :c:func:`epic_isr_bhi160_magnetometer`. */
#define EPIC_INT_BHI160_MAGNETOMETER 8
/* Number of defined interrupts. */ /* Number of defined interrupts. */
#define EPIC_INT_NUM 8 #define EPIC_INT_NUM 9
/* clang-format on */ /* clang-format on */
/* /*
...@@ -1045,7 +1047,12 @@ enum bhi160_sensor_type { ...@@ -1045,7 +1047,12 @@ enum bhi160_sensor_type {
* - Dynamic range: g's (1x Earth Gravity, ~9.81m*s^-2) * - Dynamic range: g's (1x Earth Gravity, ~9.81m*s^-2)
*/ */
BHI160_ACCELEROMETER = 0, BHI160_ACCELEROMETER = 0,
/** Magnetometer (**Unimplemented**) */ /**
* Magnetometer
*
* - Data type: :c:type:`bhi160_data_vector`
* - Dynamic range: -1000 to 1000 microtesla
*/
BHI160_MAGNETOMETER = 1, BHI160_MAGNETOMETER = 1,
/** Orientation */ /** Orientation */
BHI160_ORIENTATION = 2, BHI160_ORIENTATION = 2,
...@@ -1177,6 +1184,14 @@ API(API_BHI160_DISABLE_ALL, void epic_bhi160_disable_all_sensors()); ...@@ -1177,6 +1184,14 @@ API(API_BHI160_DISABLE_ALL, void epic_bhi160_disable_all_sensors());
*/ */
API_ISR(EPIC_INT_BHI160_ACCELEROMETER, epic_isr_bhi160_accelerometer); API_ISR(EPIC_INT_BHI160_ACCELEROMETER, epic_isr_bhi160_accelerometer);
/**
* **Interrupt Service Routine** for :c:data:`EPIC_INT_BHI160_MAGNETOMETER`
*
* :c:func:`epic_isr_bhi160_magnetometer` is called whenever the BHI160
* magnetometer has new data available.
*/
API_ISR(EPIC_INT_BHI160_MAGNETOMETER, epic_isr_bhi160_magnetometer);
/** /**
* **Interrupt Service Routine** for :c:data:`EPIC_INT_BHI160_ORIENTATION` * **Interrupt Service Routine** for :c:data:`EPIC_INT_BHI160_ORIENTATION`
* *
......
...@@ -91,6 +91,8 @@ static bhy_virtual_sensor_t bhi160_lookup_vs_id(enum bhi160_sensor_type type) ...@@ -91,6 +91,8 @@ static bhy_virtual_sensor_t bhi160_lookup_vs_id(enum bhi160_sensor_type type)
switch (type) { switch (type) {
case BHI160_ACCELEROMETER: case BHI160_ACCELEROMETER:
return VS_ID_ACCELEROMETER; return VS_ID_ACCELEROMETER;
case BHI160_MAGNETOMETER:
return VS_ID_MAGNETOMETER;
case BHI160_ORIENTATION: case BHI160_ORIENTATION:
return VS_ID_ORIENTATION; return VS_ID_ORIENTATION;
case BHI160_GYROSCOPE: case BHI160_GYROSCOPE:
...@@ -108,6 +110,8 @@ static int bhi160_lookup_sd(enum bhi160_sensor_type type) ...@@ -108,6 +110,8 @@ static int bhi160_lookup_sd(enum bhi160_sensor_type type)
switch (type) { switch (type) {
case BHI160_ACCELEROMETER: case BHI160_ACCELEROMETER:
return SD_BHI160_ACCELEROMETER; return SD_BHI160_ACCELEROMETER;
case BHI160_MAGNETOMETER:
return SD_BHI160_MAGNETOMETER;
case BHI160_ORIENTATION: case BHI160_ORIENTATION:
return SD_BHI160_ORIENTATION; return SD_BHI160_ORIENTATION;
case BHI160_GYROSCOPE: case BHI160_GYROSCOPE:
...@@ -267,11 +271,13 @@ bhi160_handle_packet(bhy_data_type_t data_type, bhy_data_generic_t *sensor_data) ...@@ -267,11 +271,13 @@ bhi160_handle_packet(bhy_data_type_t data_type, bhy_data_generic_t *sensor_data)
sensor_data->data_scalar_u16.data; sensor_data->data_scalar_u16.data;
break; break;
case VS_ID_ACCELEROMETER_WAKEUP: case VS_ID_ACCELEROMETER_WAKEUP:
case VS_ID_MAGNETOMETER_WAKEUP:
case VS_ID_ORIENTATION_WAKEUP: case VS_ID_ORIENTATION_WAKEUP:
case VS_ID_GYROSCOPE_WAKEUP: case VS_ID_GYROSCOPE_WAKEUP:
wakeup = true; wakeup = true;
/* fall through */ /* fall through */
case VS_ID_ACCELEROMETER: case VS_ID_ACCELEROMETER:
case VS_ID_MAGNETOMETER:
case VS_ID_ORIENTATION: case VS_ID_ORIENTATION:
case VS_ID_GYROSCOPE: case VS_ID_GYROSCOPE:
switch (sensor_id) { switch (sensor_id) {
...@@ -280,6 +286,11 @@ bhi160_handle_packet(bhy_data_type_t data_type, bhy_data_generic_t *sensor_data) ...@@ -280,6 +286,11 @@ bhi160_handle_packet(bhy_data_type_t data_type, bhy_data_generic_t *sensor_data)
sensor_type = BHI160_ACCELEROMETER; sensor_type = BHI160_ACCELEROMETER;
epic_int = EPIC_INT_BHI160_ACCELEROMETER; epic_int = EPIC_INT_BHI160_ACCELEROMETER;
break; break;
case VS_ID_MAGNETOMETER_WAKEUP:
case VS_ID_MAGNETOMETER:
sensor_type = BHI160_MAGNETOMETER;
epic_int = EPIC_INT_BHI160_MAGNETOMETER;
break;
case VS_ID_ORIENTATION_WAKEUP: case VS_ID_ORIENTATION_WAKEUP:
case VS_ID_ORIENTATION: case VS_ID_ORIENTATION:
sensor_type = BHI160_ORIENTATION; sensor_type = BHI160_ORIENTATION;
......
...@@ -27,6 +27,7 @@ typedef unsigned int size_t; ...@@ -27,6 +27,7 @@ typedef unsigned int size_t;
enum stream_descriptor { enum stream_descriptor {
/** BHI160 */ /** BHI160 */
SD_BHI160_ACCELEROMETER, SD_BHI160_ACCELEROMETER,
SD_BHI160_MAGNETOMETER,
SD_BHI160_ORIENTATION, SD_BHI160_ORIENTATION,
SD_BHI160_GYROSCOPE, SD_BHI160_GYROSCOPE,
SD_MAX30001_ECG, SD_MAX30001_ECG,
......
...@@ -10,6 +10,7 @@ sensors = [ ...@@ -10,6 +10,7 @@ sensors = [
{"sensor": bhi160.BHI160Orientation(), "name": "Orientation"}, {"sensor": bhi160.BHI160Orientation(), "name": "Orientation"},
{"sensor": bhi160.BHI160Accelerometer(), "name": "Accelerometer"}, {"sensor": bhi160.BHI160Accelerometer(), "name": "Accelerometer"},
{"sensor": bhi160.BHI160Gyroscope(), "name": "Gyroscope"}, {"sensor": bhi160.BHI160Gyroscope(), "name": "Gyroscope"},
{"sensor": bhi160.BHI160Magnetometer(), "name": "Magnetometer"},
] ]
while True: while True:
......
...@@ -87,6 +87,8 @@ static const mp_rom_map_elem_t interrupt_module_globals_table[] = { ...@@ -87,6 +87,8 @@ static const mp_rom_map_elem_t interrupt_module_globals_table[] = {
MP_OBJ_NEW_SMALL_INT(EPIC_INT_RTC_ALARM) }, MP_OBJ_NEW_SMALL_INT(EPIC_INT_RTC_ALARM) },
{ MP_ROM_QSTR(MP_QSTR_BHI160_ACCELEROMETER), { MP_ROM_QSTR(MP_QSTR_BHI160_ACCELEROMETER),
MP_OBJ_NEW_SMALL_INT(EPIC_INT_BHI160_ACCELEROMETER) }, MP_OBJ_NEW_SMALL_INT(EPIC_INT_BHI160_ACCELEROMETER) },
{ MP_ROM_QSTR(MP_QSTR_BHI160_MAGNETOMETER),
MP_OBJ_NEW_SMALL_INT(EPIC_INT_BHI160_MAGNETOMETER) },
{ MP_ROM_QSTR(MP_QSTR_BHI160_ORIENTATION), { MP_ROM_QSTR(MP_QSTR_BHI160_ORIENTATION),
MP_OBJ_NEW_SMALL_INT(EPIC_INT_BHI160_ORIENTATION) }, MP_OBJ_NEW_SMALL_INT(EPIC_INT_BHI160_ORIENTATION) },
{ MP_ROM_QSTR(MP_QSTR_BHI160_GYROSCOPE), { MP_ROM_QSTR(MP_QSTR_BHI160_GYROSCOPE),
......
...@@ -127,3 +127,23 @@ class BHI160Orientation(BHI160): ...@@ -127,3 +127,23 @@ class BHI160Orientation(BHI160):
def convert(self, sample): def convert(self, sample):
return self.convert_data_vector(sample) return self.convert_data_vector(sample)
class BHI160Magnetometer(BHI160):
def __init__(
self, sample_rate=4, dynamic_range=1, callback=None, sample_buffer_len=200
):
self.sample_rate = sample_rate
self.dynamic_range = dynamic_range
self.callback = callback
self.sample_buffer_len = sample_buffer_len
self.sensor_id = 1
self.interrupt_id = interrupt.BHI160_MAGNETOMETER
self._callback = callback
self.enable_sensor()
def convert_single(self, value):
return 1000 * value / 32768.0
def convert(self, sample):
return self.convert_data_vector(sample)
...@@ -61,6 +61,7 @@ Q(set_callback) ...@@ -61,6 +61,7 @@ Q(set_callback)
Q(enable_callback) Q(enable_callback)
Q(disable_callback) Q(disable_callback)
Q(BHI160_ACCELEROMETER) Q(BHI160_ACCELEROMETER)
Q(BHI160_MAGNETOMETER)
Q(BHI160_ORIENTATION) Q(BHI160_ORIENTATION)
Q(BHI160_GYROSCOPE) Q(BHI160_GYROSCOPE)
Q(RTC_ALARM) Q(RTC_ALARM)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment