基于ESP32的无线姿态追踪器
 
 
 
 
 
 
Go to file
詹力 c431d7bbd1 更新GeekTrack实物图 2022-09-18 18:55:06 +08:00
1.Hardware 更新GeekTrack实物图 2022-09-18 18:55:06 +08:00
2.Firmware 调通第一版固件 2022-09-18 18:40:49 +08:00
3.Docs 调通第一版固件 2022-09-18 18:40:49 +08:00
6.Image 更新GeekTrack实物图 2022-09-18 18:55:06 +08:00
README.md 更新GeekTrack实物图 2022-09-18 18:55:06 +08:00

README.md

GeekTrack

功能描述:一个无线姿态追踪模块,可以追踪姿态。可以用于全身动作捕捉也可以用于人体步态追踪, GeekTrack实际是GeekMotion阉割屏幕减少尺寸的版本目的是为了方便固定在身体上用于姿态追踪

GeekMotion: https://github.com/Logzhan/GeekMoton

状态PCB已经打样测试完成设备WIFI正常信号对比PCB天线弱一些。IMU、气压计读取数据正常、SD卡识别正常。

  • WIFI通信功能
  • IMU、MAG传感器。
  • LettleShell命令行模块可以采用命令行和ESP32交互。
  • 计步器
  • 运动识别(待实现)
  • 电梯识别(待实现)
  • SD卡存储
.\6.I .\6.I

命令行支持(移植letter shell)

.\6.I

支持:

  • 命令行自动补全
  • 历史命令行记忆
  • ...

更新日志:

2022-09-03 : 1上传第一版原理图和PCB图

lettleShell移植支持说明 需要适配esp32的ld文件。

样例: C:\Users\Administrator\esp\esp-idf\components\esp32\ld
在这个文件夹里面把原来的esp32.project.ld.in替换当前目前的id文件用于支持命令行替换前记得备份

  /* 核心原理是找到这个.flash.appdesc, 然后加入_shell_command_start和*_shell_command_end/  
.flash.appdesc : ALIGN(0x10)
  {
    _rodata_start = ABSOLUTE(.);

    *(.rodata_desc .rodata_desc.*)               /* Should be the first.  App version info.        DO NOT PUT ANYTHING BEFORE IT! */
    *(.rodata_custom_desc .rodata_custom_desc.*) /* Should be the second. Custom app version info. DO NOT PUT ANYTHING BEFORE IT! */
	
	_shell_command_start = ABSOLUTE(.);
	KEEP (*(shellCommand))
	_shell_command_end = ABSOLUTE(.);

    /* Create an empty gap within this section. Thanks to this, the end of this
     * section will match .flah.rodata's begin address. Thus, both sections
     * will be merged when creating the final bin image. */
    . = ALIGN(ALIGNOF(.flash.rodata));
  } >default_rodata_seg