Skip to content

Commit 1486350

Browse files
committedSep 28, 2023
Nicla update and readme
1 parent d2b4722 commit 1486350

11 files changed

+188
-25
lines changed
 

‎README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ edge_ml.set_ble_config("MyDevice", "1.2.3");
245245

246246
#### `int get_active_count()`
247247

248-
Returns the number of currently active sensors.
248+
Returns the number of currently active sensors.<br>
249+
(Not available on standard Nicla, unless `USE_SPECIAL_BOARD` in "flags.h" set to 0 and custom Sensor Manager provided)
249250

250251
```c++
251252
int activeSensors = edge_ml.get_active_count();
@@ -281,6 +282,8 @@ Allows to set a custom callback function that is triggered when a ble configurat
281282
void callback(SensorConfigurationPacket * config)
282283
```
283284
285+
- `config` (SensorConfigurationPacket): Pointer to a configuration packet struct.
286+
284287
```c++
285288
void handleConfig(SensorConfigurationPacket * config) {
286289
// Your custom logic here
@@ -292,7 +295,19 @@ edge_ml.set_config_callback(handleSensorData);
292295

293296
#### `void set_custom(SensorManagerInterface * sensorManager) `
294297
Allows the user to set a custom Sensor Manager to implement a custom Board Configuration.
295-
More on that in the chapter below.
298+
More on that in the chapter below.<br>
299+
(Not available on standard Nicla, unless `USE_SPECIAL_BOARD` in "flags.h" set to 0)
300+
301+
302+
#### `void use_raw_sensor_values()`
303+
304+
This is Nicla exclusive function.
305+
It disables the automatic conversion of internal sensor values.
306+
307+
```c++
308+
edge_ml.use_raw_sensor_values();
309+
```
310+
296311

297312
---
298313
## Custom Board Configuration
@@ -485,6 +500,8 @@ public:
485500
// Set the sensor configurations
486501
SensorManagerInterface::set_sensor_configs(CONFIG);
487502
}
503+
504+
void update() override {}; // update() is optional
488505
};
489506
```
490507

@@ -522,6 +539,8 @@ public:
522539
// Set the sensor configurations
523540
SensorManagerInterface::set_sensor_configs(CONFIG);
524541
}
542+
543+
void update() override {}; // update() is optional
525544
};
526545
```
527546

@@ -551,6 +570,8 @@ public:
551570
void start() override;
552571
void stop() override;
553572

573+
void update() override {}; // update() is optional
574+
554575
void get_data(int sensorID, byte *data) override;
555576

556577
int get_sensor_count() override;

‎generate_scheme_nicla/scheme_generator.h

+14-14
Original file line numberDiff line numberDiff line change
@@ -76,27 +76,27 @@ enum SensorID_Nicla {
7676
};
7777

7878
const SensorComponent ACC_COMPONENTS_Nicla[] = {
79-
{"ACC", PARSE_TYPE_INT16, "X", ""},
80-
{"ACC", PARSE_TYPE_INT16, "Y", ""},
81-
{"ACC", PARSE_TYPE_INT16, "Z", ""}
79+
{"ACC", PARSE_TYPE_FLOAT, "X", "g"},
80+
{"ACC", PARSE_TYPE_FLOAT, "Y", "g"},
81+
{"ACC", PARSE_TYPE_FLOAT, "Z", "g"}
8282
};
8383

8484
const SensorComponent GYRO_COMPONENTS_Nicla[] = {
85-
{"GYRO", PARSE_TYPE_INT16, "X",""},
86-
{"GYRO", PARSE_TYPE_INT16, "Y",""},
87-
{"GYRO", PARSE_TYPE_INT16, "Z",""}
85+
{"GYRO", PARSE_TYPE_FLOAT, "X","dps"},
86+
{"GYRO", PARSE_TYPE_FLOAT, "Y","dps"},
87+
{"GYRO", PARSE_TYPE_FLOAT, "Z","dps"}
8888
};
8989

9090
const SensorComponent MAG_COMPONENTS_Nicla[] = {
91-
{"MAG", PARSE_TYPE_INT16, "X",""},
92-
{"MAG", PARSE_TYPE_INT16, "Y",""},
93-
{"MAG", PARSE_TYPE_INT16, "Z",""}
91+
{"MAG", PARSE_TYPE_FLOAT, "X","uT"},
92+
{"MAG", PARSE_TYPE_FLOAT, "Y","uT"},
93+
{"MAG", PARSE_TYPE_FLOAT, "Z","uT"}
9494
};
9595

9696
const SensorComponent ORI_COMPONENTS_Nicla[] = {
97-
{"ORI", PARSE_TYPE_FLOAT, "Heading", ""},
98-
{"ORI", PARSE_TYPE_FLOAT, "Pitch", ""},
99-
{"ORI", PARSE_TYPE_FLOAT, "Roll", ""}
97+
{"ORI", PARSE_TYPE_FLOAT, "Heading", "deg"},
98+
{"ORI", PARSE_TYPE_FLOAT, "Pitch", "deg"},
99+
{"ORI", PARSE_TYPE_FLOAT, "Roll", "deg"}
100100
};
101101

102102
const SensorComponent TEMP_COMPONENTS_Nicla[] = {
@@ -171,10 +171,10 @@ schemeData * make_scheme_buffer();
171171

172172
String make_code(schemeData * scheme) {
173173
String out = "";
174-
out += "\n\nbyte parse_scheme[] = ";
174+
out += "\n\nconst byte parse_scheme[] = ";
175175
out += scheme->make_string();
176176
out += "\n\n";
177-
out += "int scheme_size = ";
177+
out += "const int scheme_size = ";
178178
out += String(scheme->length);
179179
out += ";\n\n";
180180

‎src/EdgeML.h

+6
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ class Edge_ML {
101101
}
102102
#endif
103103

104+
#if defined NICLA_FLAG
105+
void use_raw_sensor_values() {
106+
edge_ml_nicla.use_raw_sensor_values();
107+
}
108+
#endif
109+
104110
void debug(Stream &stream) {
105111
#if defined NORMAL_BOARD
106112
edge_ml_generic.debug(stream);

‎src/boards/special_boards/nicla/BLEHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class BLEHandler {
4141
bool manual_advertise = false;
4242

4343
int _scheme_length = 0;
44-
byte * _scheme_buffer = nullptr;
44+
const byte * _scheme_buffer = nullptr;
4545

4646
String dfuServiceUuid = "34c2e3b8-34aa-11eb-adc1-0242ac120002";
4747
String dfuInternalUuid = "34c2e3b9-34aa-11eb-adc1-0242ac120002";

‎src/boards/special_boards/nicla/BoschParser.cpp

+107-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
#if defined(ARDUINO_NICLA)
22

33
#include "BoschParser.h"
4-
#include "BoschSensortec.h"
54

65
Stream* BoschParser::_debug = NULL;
76
BLECharacteristic* BoschParser::_sensorDataCharacteristic = NULL;
87
void (*BoschParser::_data_callback)(int ID, unsigned int timestamp, uint8_t * data, int size) = nullptr;
8+
bool BoschParser::_use_raw = false;
99

10+
const float BoschParser::acc_resolution = 16.0/65536.0; // [-4g, +4g]
11+
const float BoschParser::gyro_resolution = 4000.0/65536.0; // [-2000dps, +2000dps]
12+
13+
// BMM150 conversion unclear; Please adjust; NO idea what Nicla does there
14+
const float BoschParser::magx_resolution = 2600.0/65536.0; // ±1300μT
15+
const float BoschParser::magy_resolution = 2600.0/65536.0; // ±1300μT
16+
const float BoschParser::magz_resolution = 5000.0/65536.0; // ±2500μT
17+
18+
const float BoschParser::ori_heading_conversion = 360.0/32767.0;
19+
const float BoschParser::ori_pitch_conversion = 90.0/8192.0;
20+
const float BoschParser::ori_roll_conversion = 90.0/8192.0;
1021

1122
void BoschParser::debug(Stream &stream)
1223
{
@@ -31,6 +42,10 @@ void BoschParser::set_data_callback(void (*callback)(int, unsigned int, uint8_t
3142
_data_callback = callback;
3243
}
3344

45+
void BoschParser::use_raw_sensor_values() {
46+
_use_raw = true;
47+
}
48+
3449
void BoschParser::parseData(const struct bhy2_fifo_parse_data_info *fifoData, void *arg)
3550
{
3651
SensorDataPacket sensorData;
@@ -41,6 +56,10 @@ void BoschParser::parseData(const struct bhy2_fifo_parse_data_info *fifoData, vo
4156
sensorData.size = (fifoData->data_size > sizeof(sensorData.data)) ? sizeof(sensorData.data) : fifoData->data_size;
4257
memcpy(&sensorData.data, fifoData->data_ptr, sensorData.size);
4358

59+
if (!_use_raw) {
60+
sensorData = convert_unit(&sensorData);
61+
}
62+
4463
if (_debug) {
4564
_debug->print("Sensor: ");
4665
_debug->print(sensorData.sensorId);
@@ -64,4 +83,90 @@ void BoschParser::parseData(const struct bhy2_fifo_parse_data_info *fifoData, vo
6483
}
6584
}
6685

67-
#endif
86+
SensorDataPacket BoschParser::convert_unit(SensorDataPacket *data) {
87+
SensorDataPacket out;
88+
out.sensorId = data->sensorId;
89+
out.time = data->time;
90+
91+
// hard coded parser
92+
switch (data->sensorId) {
93+
case ACCELERATION_NICLA: {
94+
short * arr = (short*)data->data;
95+
float * tar = (float*)out.data;
96+
97+
tar[0] = acc_resolution * static_cast<double>(arr[0]);
98+
tar[1] = acc_resolution * static_cast<double>(arr[1]);
99+
tar[2] = acc_resolution * static_cast<double>(arr[2]);
100+
101+
break;
102+
}
103+
case GYROSCOPE_NICLA: {
104+
short * arr = (short*)data->data;
105+
float * tar = (float*)out.data;
106+
107+
tar[0] = gyro_resolution * static_cast<double>(arr[0]);
108+
tar[1] = gyro_resolution * static_cast<double>(arr[1]);
109+
tar[2] = gyro_resolution * static_cast<double>(arr[2]);
110+
111+
break;
112+
}
113+
case MAGNET_NICLA: {
114+
short * arr = (short*)data->data;
115+
float * tar = (float*)out.data;
116+
117+
tar[0] = magx_resolution * static_cast<double>(arr[0]);
118+
tar[1] = magy_resolution * static_cast<double>(arr[1]);
119+
tar[2] = magz_resolution * static_cast<double>(arr[2]);
120+
121+
break;
122+
}
123+
case ORIENTATION_NICLA: {
124+
short * arr = (short*)data->data;
125+
float * tar = (float*)out.data;
126+
127+
tar[0] = ori_heading_conversion * static_cast<double>(arr[0]);
128+
tar[1] = ori_pitch_conversion * static_cast<double>(arr[1]);
129+
tar[2] = ori_roll_conversion * static_cast<double>(arr[2]);
130+
131+
break;
132+
break;
133+
}
134+
case TEMPERATURE_NICLA: {
135+
short * arr = (short*)data->data;
136+
float * tar = (float*)out.data;
137+
138+
tar[0] = static_cast<double>(arr[0]) / 10.0;
139+
break;
140+
}
141+
case BAROMETER_NICLA: {
142+
int * arr = (int*)data->data;
143+
float * tar = (float*)out.data;
144+
145+
tar[0] = static_cast<double>(arr[0]) / 1000.0;
146+
break;
147+
}
148+
case HUMIDITY_NICLA: {
149+
short * arr = (short*)data->data;
150+
float * tar = (float*)out.data;
151+
152+
tar[0] = static_cast<double>(arr[0]);
153+
break;
154+
}
155+
case GAS_NICLA: {
156+
int * arr = (int*)data->data;
157+
float * tar = (float*)out.data;
158+
159+
tar[0] = static_cast<double>(arr[0]);
160+
break;
161+
}
162+
default:
163+
out.size = data->size;
164+
memcpy(&out.data, data->data, data->size); // ?
165+
}
166+
return out;
167+
}
168+
169+
170+
171+
#endif
172+

‎src/boards/special_boards/nicla/BoschParser.h

+14
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "Arduino.h"
77
#include "mbed.h"
88
#include "ArduinoBLE.h"
9+
#include "BoschSensortec.h"
910

1011
#include "bosch/common/common.h"
1112

@@ -26,12 +27,25 @@ class BoschParser {
2627

2728
static void set_data_callback(void(*)(int, unsigned int, uint8_t*, int));
2829

30+
static void use_raw_sensor_values();
31+
static SensorDataPacket convert_unit(SensorDataPacket * data);
32+
2933
private:
3034
friend class Arduino_BHY2;
3135
static void debug(Stream &stream);
3236
static Stream *_debug;
3337
static BLECharacteristic *_sensorDataCharacteristic;
38+
static bool _use_raw;
39+
40+
const static float acc_resolution;
41+
const static float gyro_resolution;
42+
const static float magx_resolution;
43+
const static float magy_resolution;
44+
const static float magz_resolution;
3445

46+
const static float ori_heading_conversion;
47+
const static float ori_pitch_conversion;
48+
const static float ori_roll_conversion;
3549

3650
static void (*_data_callback)(int ID, unsigned int timestamp, uint8_t * data, int size);
3751
};

‎src/boards/special_boards/nicla/Edge_ML_Nicla.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ void Edge_ML_Nicla::set_config_callback(void (*callback)(SensorConfigurationPack
4444
bhy->set_config_callback(callback);
4545
}
4646

47+
void Edge_ML_Nicla::use_raw_sensor_values() {
48+
BoschParser::use_raw_sensor_values();
49+
}
50+
4751
void Edge_ML_Nicla::debug(Stream &stream) {
4852
bhy->debug(stream);
4953
}

‎src/boards/special_boards/nicla/Edge_ML_Nicla.h

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#define Edge_ML_H_
55

66
#include "Arduino_BHY2.h"
7+
#include "BoschParser.h"
78

89
class Edge_ML_Nicla {
910
public:
@@ -18,6 +19,7 @@ class Edge_ML_Nicla {
1819
void configure_sensor(SensorConfigurationPacket& config);
1920

2021
void ble_manual_advertise();
22+
void use_raw_sensor_values();
2123

2224
void set_data_callback(void(*)(int, unsigned int, uint8_t*, int));
2325
void set_config_callback(void(*)(SensorConfigurationPacket *));

‎src/boards/special_boards/nicla/Nicla_Parse_Scheme.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
#include "Nicla_Parse_Scheme.h"
44

5-
byte parse_scheme[] = {
6-
8, 4, 12, 65, 67, 67, 69, 76, 69, 82, 65, 84, 73, 79, 78, 3, 2, 3, 65, 67, 67, 1, 88, 0, 2, 3, 65, 67, 67, 1, 89, 0, 2, 3, 65, 67, 67, 1, 90, 0, 13, 9, 71, 89, 82, 79, 83, 67, 79, 80, 69, 3, 2, 4, 71, 89, 82, 79, 1, 88, 0, 2, 4, 71, 89, 82, 79, 1, 89, 0, 2, 4, 71, 89, 82, 79, 1, 90, 0, 22, 12, 77, 65, 71, 78, 69, 84, 79, 77, 69, 84, 69, 82, 3, 2, 3, 77, 65, 71, 1, 88, 0, 2, 3, 77, 65, 71, 1, 89, 0, 2, 3, 77, 65, 71, 1, 90, 0, 43, 11, 79, 82, 73, 69, 78, 84, 65, 84, 73, 79, 78, 3, 6, 3, 79, 82, 73, 7, 72, 101, 97, 100, 105, 110, 103, 0, 6, 3, 79, 82, 73, 5, 80, 105, 116, 99, 104, 0, 6, 3, 79, 82, 73, 4, 82, 111, 108, 108, 0, 128, 11, 84, 72, 69, 82, 77, 79, 77, 69, 84, 69, 82, 1, 6, 4, 84, 69, 77, 80, 11, 84, 101, 109, 112, 101, 114, 97, 116, 117, 114, 101, 3, 194, 176, 67, 130, 10, 72, 89, 71, 82, 79, 77, 69, 84, 69, 82, 1, 6, 3, 72, 85, 77, 8, 72, 117, 109, 105, 100, 105, 116, 121, 1, 37, 129, 9, 66, 65, 82, 79, 77, 69, 84, 69, 82, 1, 6, 4, 66, 65, 82, 79, 8, 80, 114, 101, 115, 115, 117, 114, 101, 3, 107, 80, 97, 131, 3, 71, 65, 83, 3, 6, 3, 71, 65, 83, 3, 71, 97, 115, 0, 6, 3, 72, 85, 77, 8, 72, 117, 109, 105, 100, 105, 116, 121, 1, 37, 2, 3, 77, 65, 71, 1, 88, 0
5+
const byte parse_scheme[] = {
6+
8, 4, 12, 65, 67, 67, 69, 76, 69, 82, 65, 84, 73, 79, 78, 3, 6, 3, 65, 67, 67, 1, 88, 1, 103, 6, 3, 65, 67, 67, 1, 89, 1, 103, 6, 3, 65, 67, 67, 1, 90, 1, 103, 13, 9, 71, 89, 82, 79, 83, 67, 79, 80, 69, 3, 6, 4, 71, 89, 82, 79, 1, 88, 3, 100, 112, 115, 6, 4, 71, 89, 82, 79, 1, 89, 3, 100, 112, 115, 6, 4, 71, 89, 82, 79, 1, 90, 3, 100, 112, 115, 22, 12, 77, 65, 71, 78, 69, 84, 79, 77, 69, 84, 69, 82, 3, 6, 3, 77, 65, 71, 1, 88, 2, 117, 84, 6, 3, 77, 65, 71, 1, 89, 2, 117, 84, 6, 3, 77, 65, 71, 1, 90, 2, 117, 84, 43, 11, 79, 82, 73, 69, 78, 84, 65, 84, 73, 79, 78, 3, 6, 3, 79, 82, 73, 7, 72, 101, 97, 100, 105, 110, 103, 3, 100, 101, 103, 6, 3, 79, 82, 73, 5, 80, 105, 116, 99, 104, 3, 100, 101, 103, 6, 3, 79, 82, 73, 4, 82, 111, 108, 108, 3, 100, 101, 103, 128, 11, 84, 72, 69, 82, 77, 79, 77, 69, 84, 69, 82, 1, 6, 4, 84, 69, 77, 80, 11, 84, 101, 109, 112, 101, 114, 97, 116, 117, 114, 101, 3, 194, 176, 67, 130, 10, 72, 89, 71, 82, 79, 77, 69, 84, 69, 82, 1, 6, 3, 72, 85, 77, 8, 72, 117, 109, 105, 100, 105, 116, 121, 1, 37, 129, 9, 66, 65, 82, 79, 77, 69, 84, 69, 82, 1, 6, 4, 66, 65, 82, 79, 8, 80, 114, 101, 115, 115, 117, 114, 101, 3, 107, 80, 97, 131, 3, 71, 65, 83, 3, 6, 3, 71, 65, 83, 3, 71, 97, 115, 0, 6, 3, 72, 85, 77, 8, 72, 117, 109, 105, 100, 105, 116, 121, 1, 37, 6, 3, 77, 65, 71, 1, 88, 2, 117, 84
77
};
88

9-
int scheme_size = 305;
9+
const int scheme_size = 334;
1010

1111
#endif

‎src/boards/special_boards/nicla/Nicla_Parse_Scheme.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
#include "Arduino.h"
77

8-
extern byte parse_scheme[];
8+
extern const byte parse_scheme[];
99

10-
extern int scheme_size;
10+
extern const int scheme_size;
1111

1212
#endif //NICLA_TEST_NICLA_PARSE_SCHEME_H
1313
#endif

‎src/boards/special_boards/nicla/sensors/SensorTypes.h

+12-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,18 @@
33

44
#include "stdint.h"
55

6-
#define SENSOR_DATA_FIXED_LENGTH (10)
6+
#define SENSOR_DATA_FIXED_LENGTH (12)
7+
8+
enum SensorID_Nicla {
9+
ACCELERATION_NICLA = 4,
10+
GYROSCOPE_NICLA = 13,
11+
MAGNET_NICLA = 22,
12+
ORIENTATION_NICLA = 43,
13+
TEMPERATURE_NICLA = 128,
14+
BAROMETER_NICLA = 129,
15+
HUMIDITY_NICLA = 130,
16+
GAS_NICLA = 131
17+
};
718

819
struct __attribute__((packed)) SensorConfigurationPacket {
920
uint8_t sensorId;

0 commit comments

Comments
 (0)
Please sign in to comment.