你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。

st-img
chrome
st-img
firefox
st-img
safari
st-img
ie8及以上
shequ.stmicroelectronics.cn
  • ST意法半导体官网
  • STM32中文官网
  • ST全球论坛
登录/注册
  • 首页
  • 技术问答
  • 话题
  • 资源
  • 创客秀
  • 视频
  • 标签
  • 积分商城
  • 每日签到
xu@xupt

xu@xupt

 

回答数 0 关注数 0
关注 私信
  • 动态99
  • 提问
  • 回答0
  • 创客秀 0
  • 分享 0
  • 关注0
1 回答

关于VL53L5CX

ToF
深圳好星星 深圳好星星 回答时间: 2024-5-27 15:51

1. 可以联系代理申请发送L5的功耗估算文件,主要方法是选用autonomous模式,用尽量小的integration time,以及用更小的ranging frequency 2. 可以参考驱动包里的example9和example11. 3.目前没有公开数据及

赞0
3 回答

【STM32C0评测】3、GPIO 测试 驱动WS2812

开发板 Nucleo STM32C0
网络孤客 网络孤客 回答时间: 2024-3-8 12:48

话题没有STM32C0板块吧?

赞0
1 回答

【STM32C0评测】2、FreeRTOS 测试

开发板 STM32C0
背影101 背影101 回答时间: 2024-3-7 17:00

[md]

赞0
3 回答

【STM32C0评测】1、开箱

STM32C0
xu@xupt xu@xupt 回答时间: 2024-3-8 09:18

GitHub

赞0
6 回答

STM32C0主打性价比,但是相比与国产M3、M4以及RP2040的优势在哪里?

STM32C0
网络孤客 网络孤客 回答时间: 2024-3-6 13:48

rp2040要外加存储,这也是成本。

赞0
1 回答

STM32C0和STM32中的哪一款可以Pin2Pin替换?

STM32C0
STMCU-管管 STMCU-管管 回答时间: 2024-3-12 16:12

看看G0

赞0
5 回答

如何快速移植stm32f1的程序到STM32C0中?

STM32F103 STM32C0
butterflyspring butterflyspring 最优答案 回答时间: 2024-1-15 09:33

1. 首先要了解应用需要的资源是否相同或满足。 M3 内核和M4 内核有些不同,F1和F0的外设资源多少也同,用到    不一样的就要修改。 2. 其次看程序的框架,主要是用的库,如果是CUBE库,那就很容易了。

赞1
0 回答

有没有官方,面向OV系列摄像头的驱动?

其它 学习笔记
15 回答

我是xu@xupt,我的2023年总结

线上活动
凤凰息梧桐 凤凰息梧桐 回答时间: 2024-1-4 08:38

不错 继续努力

赞0
2 回答

NanoEdge AI之我见

AI
xu@xupt xu@xupt 回答时间: 2023-11-6 10:01

感谢认可

赞0
3 回答

VL53L5CX如何实现超过15HZ的采样?超频会引发什么现象?

VL53L5
深圳好星星 深圳好星星 最优答案 回答时间: 2023-11-6 14:08

8x8模式最大可以跑到50Hz,但是要改一下寄存器。 int example17(void) { // / VL53L5CX ranging variables / // uint8_t status, isAlive, isReady, i, j; uint16_t loop; VL53L5CX_Configuration Dev; / Sensor configuration / uint16_t distance[VL53L5CX_RESOLUTION_8X8]; / Array of 64 zones which returns the data / uint32_t timestamp = 0; // / Customer platform / // /* Fill the platform structure with customer's implementation. For this example, only the I2C address is used. */ Dev.platform.address = VL53L5CX_DEFAULT_I2C_ADDRESS; / (Optional) Reset sensor toggling PINs (see platform, not in API) / //Reset_Sensor(&(Dev.platform)); /* (Optional) Set a new I2C address if the wanted address is different from the default one (filled with 0x20 for this example). */ //status = vl53l5cx_set_i2c_address(&Dev, 0x20); // / Power on sensor and init / // / (Optional) Check if there is a VL53L5CX sensor connected / status = vl53l5cx_is_alive(&Dev, &isAlive); if(!isAlive || status) { printf("VL53L5CX not detected at requested address\n"); return status; } / (Mandatory) Init VL53L5CX sensor / status = vl53l5cx_init(&Dev); if(status) { printf("VL53L5CX ULD Loading failed\n"); return status; } printf("VL53L5CX ULD ready ! (Version : %s)\n", VL53L5CX_API_REVISION); // / Set some params / // / Program continuous mode (best one for speed) / status = vl53l5cx_set_ranging_mode(&Dev, VL53L5CX_RANGING_MODE_CONTINUOUS); / Change resolution. Use 8x8 for this example, but 4x4 is also supported / //status = vl53l5cx_set_resolution(&Dev, VL53L5CX_RESOLUTION_8x8); status = vl53l5cx_set_resolution(&Dev, VL53L5CX_RESOLUTION_8X8); / Reduce sharpener. This is mandatory as the signal strength is very low / status = vl53l5cx_set_sharpener_percent(&Dev, 0); / Increase max frequency. Dedicated function to be created in the future / uint8_t frequency_hz = 50; // Max 4x4: 150 fps / max 8x8: 50 fps status = vl53l5cx_dci_replace_data(&Dev, Dev.temp_buffer, VL53L5CX_DCI_FREQ_HZ, 4,(uint8_t*)&frequency_hz, 1, 0x01); // / Ranging loop / // / Use dedicated start ranging function in “plugin_fast_ranging” / status = vl53l5cx_start_fast_ranging(&Dev); loop = 0; while(loop < 1000) { /* Use polling function to know when a new measurement is ready. Another way can be to wait for HW interrupt raised on PIN A3 (GPIO 1) when a new measurement is ready */ status = vl53l5cx_check_data_ready(&Dev, &isReady); if(isReady) { /* Get all the distances and decompress them */ status = vl53l5cx_get_fast_ranging_data(&Dev, distance); /* Print 8x8 zones */ for(i = 0; i < 8; i++){ for(j = 0; j < 8; j++){ /* Check if distance is valid. Max distance has been limited to 2047 mm in the * firmware. When a target status is flagged as invalid, the distance is set to 2048. It * allows to easily detect invalid data. */ if(distance[i * 8 + j] == VL53L5CX_FAST_RANGING_INVALID_STATUS) { printf("xxxx, "); } else { printf("%4u, ", distance[i * 8 + j]); } } printf("\n"); } printf("\n"); /* For STM32 only: print the time elapsed since last frame */ printf("Time %d ms\n",(int)(HAL_GetTick() - timestamp)); timestamp = HAL_GetTick(); // loop++; } /* Wait a few ms to avoid too high polling (function in platform * file, not in API) */ //WaitMs(&(Dev.platform), 5); } / Stop the sensor: use dedicated stop ranging function in “plugin_fast_ranging” / status = vl53l5cx_stop_fast_ranging(&Dev); printf("End of ULD demo\n"); return status; }

赞1
6 回答

STM WIFI芯片如何导出CSI信息?

STM32WB
xu@xupt xu@xupt 回答时间: 2023-10-27 11:43

我去研究一下,感谢提醒

赞0
11 回答

求STM32CubeMX AI教程

AI
邢云子 邢云子 回答时间: 2025-3-27 16:57

同求

赞0
6 回答

有没有NanoEdge AI Studio 中文教程?

AI
xu@xupt xu@xupt 最优答案 回答时间: 2023-11-6 19:19

感谢,我去学习一下

赞0
4 回答

如何使用stm32WBA52CG获取WIFI的CSI信号?

STM32WB
butterflyspring butterflyspring 回答时间: 2023-10-20 17:35

打算怎么收集呢?想利用WBA的哪个功能或外设呢?

赞0
1 回答

有没有最新的STM32F103中文说明书

STM32F1
butterflyspring butterflyspring 回答时间: 2023-10-17 09:57

目前看来,大部分中文资料在STM32中文官网上可以搜索到,你可以试试看。

赞1
1 回答

关于tinyml开发

AI人工智能
xu@xupt xu@xupt 回答时间: 2023-10-16 16:56

求中文文档

赞0
2 回答

VL53L5CX如何快速实现开发?

VL53L5
深圳好星星 深圳好星星 最优答案 回答时间: 2023-10-17 10:39

请确认以下你下载的软件包是不是官网的IMG-023? STSW-IMG023 - Ultra Lite Driver (ULD) for VL53L5CX multi-zone sensor - STMicroelectronics 这个包里面有UM和Example Code,都很清晰。 设置器件采集参数都很简单,基本都是调用一个接口就可以了,比如: status = vl53l5cx_set_resolution(&Dev,VL53L5CX_RESOLUTION_8X8); status = vl53l5cx_set_ranging_frequency_hz(&Dev, 15); ...

赞1
xu@xupt xu@xupt


阅读作者更多的帖子

所在话题

参与活动

  • 滴滴押注社区团购,明确“投入不设上限,要做市场第一”

    线下 2020-10-16
  • 滴滴押注社区团购,明确“投入不设上限,要做市场第一”

    网络 2020-10-16
  • 滴滴押注社区团购,明确“投入不设上限,要做市场第一”

    网络 2020-10-16
  • 滴滴押注社区团购,明确“投入不设上限,要做市场第一”

    网络 2020-10-16
  • 滴滴押注社区团购,明确“投入不设上限,要做市场第一”

    线下 2020-10-16
  • 滴滴押注社区团购,明确“投入不设上限,要做市场第一”

    线下 2020-10-16