X-NUCLEO-IKS01A1 Environmental/Motion sensors data transmitted via X-NUCLEO-IDB04A1 BLE board. Compatible with iOS/Android ST BlueMS V2.1 application.

Dependencies:   BLE_API X_NUCLEO_IDB0XA1 X_NUCLEO_IKS01A1 mbed

Fork of Bluemicrosystem1 by ST Expansion SW Team

BlueMicrosystem application

This application is the mbed equivalent of ST BlueMicrosystem1 and provides an example of motion and environmental data exported via Bluetooth Low Energy to an Android or IOS device.
It runs on a ST NUCLEO-F401RE board connected with a X-NUCLEO-IKS01A1 and a X-NUCLEO-IDB04A1 expansion boards and is compatible with Android and iOS ST BlueMS smartphone applications (based on Android and iOS BlueST SDKs).
By default the application is not providing sensor fusion and activity recognition features. However sensor fusion can be enabled following the steps below:

  • Download and install osxMotionFX library on your PC.
  • Obtain the free license for your board following the instructions
  • Copy the correct license into Middlewares/ST/STM32_OSX_MotionFX_Library/osx_license.h of your mbed program folder
  • Copy Middlewares/ST/STM32_OSX_MotionFX_Library/Inc/osx_motion_fx.h file
  • Rename the provided .lib Keil binary library giving it a .ar extension, then copy it into Middlewares/ST/STM32_OSX_MotionFX_Library/Lib of your mbed program folder
  • Enable USE_SENSOR_FUSION_LIB macro into MotionFX_Manager.h file and recompile.
Revision:
0:e93a11b4e044
Child:
1:5fb861c45605
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.h	Mon Oct 12 15:16:57 2015 +0000
@@ -0,0 +1,114 @@
+/* mbed Microcontroller Library
+ * Copyright (c) 2006-2013 ARM Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __MAIN_H__
+#define __MAIN_H__
+
+/* Enable the following define for printout the calibration value 
+ read/written from/to Memory */
+ 
+//#define BLUEMSYS_DEBUG_CALIB
+
+#define CUST_CONS_SERV          // Uncomment to enable console service 
+
+//#define CUST_BATT_SERV        // Uncomment to enable battery service /** FIXME tb implemented **/
+
+#define CUST_SENS_SERV          // Uncomment to enable env/MEMS sensor service 
+#define DS3_ONBOARD  false      // deft DS3 module NOT plugged onto MEMS exp board
+//#define DS3_ONBOARD  true     // Uncomment if DS3 module is plugged onto MEMS exp board
+
+#ifdef USE_SENSOR_FUSION_LIB    // if sensor fusion lib present enable calibration service and quaternion service
+#define CUST_CONFIG_SERV        // enable magnetometer calibration service
+#define CUST_SW_SERV            // enable quaternion service
+#endif
+
+/*************** Debug Defines ******************/
+/* For enabling connection and notification subscriptions debug */
+//#define BLUEMSYS_DEBUG_CONNECTION
+
+/* For enabling trasmission for notified services (except for quaternions) */
+//#define BLUEMSYS_DEBUG_NOTIFY_TRAMISSION
+
+#define MAX_I2C_SPEED               400000  
+//#define NUCLEO_I2C_SHIELDS_SPEED    MAX_I2C_SPEED   // I2C speed in Hz
+//#define NUCLEO_I2C_SHIELDS_SPEED    150000   // I2C speed in Hz. Max Speed 400KHz now limited because of MEMS board
+#define NUCLEO_I2C_SHIELDS_SPEED    100000   
+
+#define ENV_TIMER       500000      // 500 mSec 
+#define CALIB_TIMER      40000      // 40mS
+#define MEMS_TIMER       10000      // 10mS
+
+/*************** Don't Change the following defines *************/
+/* Calibration mask for Sensor fusion short precision */
+#define MASK_CALIB_SENSORFUSION_SHORT 0x00000100
+/* Calibration mask for Sensor fusion float precision */
+#define MASK_CALIB_SENSORFUSION_FLOAT 0x00000080
+/* W2ST command for asking the calibration status */
+#define W2ST_COMMAND_CAL_STATUS 0xFF
+/* W2ST command for resetting the calibration */
+#define W2ST_COMMAND_CAL_RESET  0x00
+/* W2ST command for stopping the calibration process */
+#define W2ST_COMMAND_CAL_STOP   0x01
+/****************************************************************/
+
+#define BLE_DEV_NAME "BlueLic"
+#define BLE_DEV_MAC 0xFF,0x00,0x25,0xAA,0x02,0x04
+#define QUAT_FLOAT_UPDATE_MUL_10MS 2
+#define ACC_GYRO_MAG_UPDATE_MUL_10MS 10
+
+#define BLUEMSYS_CHECK_CALIBRATION ((uint32_t)0x12345678)
+
+#define BUTTON_TIME 1.0        // 1.0Sec
+#define BLUEMSYS_N_BUTTON_PRESS  3  // n push button in BUTTON_TIME
+
+#define BLUEMSYS_STORE_CALIB_FLASH
+
+#ifdef BLUEMSYS_STORE_CALIB_FLASH
+#define BLUEMSYS_FLASH_ADD ((uint32_t)0x08060000)
+#define BLUEMSYS_FLASH_SECTOR FLASH_SECTOR_7
+#else /* BLUEMSYS_STORE_CALIB_FLASH */
+#if defined (__IAR_SYSTEMS_ICC__)
+__no_init uint32_t CalibrationStructureRAM[8];
+#elif defined (__CC_ARM) 
+uint32_t *CalibrationStructureRAM=(uint32_t *)0x20017FC0;
+#elif defined (__GNUC__)
+uint32_t CalibrationStructureRAM[8] __attribute__ ((section (".noinit")));
+#else
+#error "Toolchain not supported"
+#endif
+#endif /* BLUEMSYS_STORE_CALIB_FLASH */
+
+#define BLE_ADVERTISING_INTERVAL    1000
+//#define BLE_ADVERTISING_INTERVAL  160 /* 100ms; in multiples of 0.625ms. */
+
+typedef enum ConnectionStatus_t {
+    DISCONNECTED    =0,
+    CONNECTED       =1
+}cns_t;
+
+const unsigned   LENGTH_OF_LONG_UUID = 16;
+typedef uint16_t ShortUUIDBytes_t;
+typedef uint8_t  LongUUIDBytes_t[LENGTH_OF_LONG_UUID];
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // ifndef __MAIN_H__