你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。
chrome
firefox
safari
ie8及以上
ST
意法半导体官网
STM32
中文官网
ST
全球论坛
登录/注册
首页
技术问答
话题
资源
创客秀
视频
标签
积分商城
每日签到
ST公司出品【图形化配置工具】
精华
[复制链接]
静以@致远
发布时间:2014-1-3 16:07
文章
文章封面:
-
文章简介:
-
官方出品,功能还不够完善(个人观点),但能够生成基本的管脚配置共5个分卷,别漏掉啦
【第一卷】
MicroXplorer-V3.2.part1.rar
(4 MB, 下载次数: 5697)
2014-1-3 15:58 上传
点击文件名下载附件
【第二卷】
MicroXplorer-V3.2.part2.rar
(4 MB, 下载次数: 4505)
2014-1-3 15:57 上传
点击文件名下载附件
【第三卷】
MicroXplorer-V3.2.part3.rar
(4 MB, 下载次数: 4816)
2014-1-3 15:58 上传
点击文件名下载附件
【第四卷】
MicroXplorer-V3.2.part4.rar
(4 MB, 下载次数: 5272)
2014-1-3 15:58 上传
点击文件名下载附件
【第五卷】
MicroXplorer-V3.2.part5.rar
(3.74 MB, 下载次数: 4516)
2014-1-3 15:57 上传
点击文件名下载附件 再来个时钟配置工具,除了F1系列的,其他4个都有啦,可以直接生成源文件
时钟配置工具
æ¶éé ç½®.rar
(4.43 MB, 下载次数: 3567)
2014-1-3 16:01 上传
点击文件名下载附件
赞
0
收藏
10
评论
359
分享
发布时间:2014-1-3 16:07
举报
请先
登录
后回复
359个回答
00dd
回答时间:2018-8-9 14:13:25
a0a.1 0b0c
for(j=0;j<3;j++){ for(i=0; i<4; i++)//R G B 中一个字节对应的发送缓存 { tmp = (uint8_t)(color &0x00000003); switch(tmp) { case 0x00: *pb = BIT00; break; case 0x01: *pb = BIT01; break; case 0x02: *pb = BIT10; break; case 0x03: *pb = BIT11; break; } color = color >>2; pb--; } pb += 7; }
赞
评论
回复
支持
反对
d1255874908
回答时间:2018-6-16 12:12:08
a0a.1 0b0c
感谢楼主,下载成功,安装提示缺少,Java Runtime Environment,然后我安装了Java,然后进入安装,自动选择安装目录,安装一阵,最后提醒, javaw.exe not found ,reinstall java jre;实际上,我的电脑里搜索,有javaw.exe 。因此,MicroXplorer无法安装,困惑。
赞
评论
回复
支持
反对
阿峰-2003139
回答时间:2017-6-7 15:48:03
a0a.1 0b0c
bobby15 发表于 2015-10-24 14:48
安装不了啊
这样就可以了,在安装目录了里会有一个.jar文件,双击打开即可
赞
评论
回复
支持
反对
静以@致远
回答时间:2014-1-3 16:09:07
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
生成代码鉴赏:论坛啥时候能支持代码片段呢?????
/** ****************************************************************************** * File Name : mx_gpio.c * Date : 03/01/2014 15:37:11 * Description : This file provides code for the configuration * of all used GPIO pins. ****************************************************************************** * * COPYRIGHT 2014 STMicroelectronics * * Licensed under MCD-ST Liberty SW License Agreement V2, (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.st.com/software_license_agreement_liberty_v2 * * 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. * ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/#include "mx_gpio.h"/* USER CODE BEGIN 0 */ /* USER CODE END 0 */ /*----------------------------------------------------------------------------*//* Configure GPIO *//*----------------------------------------------------------------------------*//* USER CODE BEGIN 1 */ /* USER CODE END 1 */ void mx_pinout_config(void) { /* Private typedef ---------------------------------------------------------*/ GPIO_InitTypeDef GPIO_InitStruct; /** ADC GPIO Configuration PA1 ------> ADC_IN1 */ /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); /*Configure GPIO pin */ GPIO_InitStruct.GPIO_Pin = GPIO_Pin_1; GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AN; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_Init(GPIOA, &GPIO_InitStruct); /** I2C1 GPIO Configuration PB6 ------> I2C1_SCL PB7 ------> I2C1_SDA */ /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_6; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOB, &GPIO_InitStruct); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_7; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOB, &GPIO_InitStruct); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOB, GPIO_PinSource6, GPIO_AF_I2C1); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOB, GPIO_PinSource7, GPIO_AF_I2C1); /** SPI2 GPIO Configuration PB12 ------> SPI2_NSS PB13 ------> SPI2_SCK PB14 ------> SPI2_MISO PB15 ------> SPI2_MOSI */ /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_12; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOB, &GPIO_InitStruct); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_13; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOB, &GPIO_InitStruct); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_14; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOB, &GPIO_InitStruct); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_15; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOB, &GPIO_InitStruct); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOB, GPIO_PinSource12, GPIO_AF_SPI2); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOB, GPIO_PinSource13, GPIO_AF_SPI2); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOB, GPIO_PinSource14, GPIO_AF_SPI2); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOB, GPIO_PinSource15, GPIO_AF_SPI2); /** USART1 GPIO Configuration PA9 ------> USART1_TX PA10 ------> USART1_RX */ /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOA, &GPIO_InitStruct); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOA, &GPIO_InitStruct); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOA, GPIO_PinSource9, GPIO_AF_USART1); /*Configure GPIO pin alternate function */ GPIO_PinAFConfig(GPIOA, GPIO_PinSource10, GPIO_AF_USART1); /** USB GPIO Configuration PA11 ------> USB_DM PA12 ------> USB_DP */ /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_11; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOA, &GPIO_InitStruct); //!!! GPIO_Init is commented because some parameters are missing GPIO_InitStruct.GPIO_Pin = GPIO_Pin_12; GPIO_InitStruct.GPIO_Mode = ; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_InitStruct.GPIO_Speed = GPIO_Speed_400KHz; GPIO_Init(GPIOA, &GPIO_InitStruct); /** Configure pins as GPIO PA8 ------> GPIO_Input */ /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); /*Configure GPIO pin */ GPIO_InitStruct.GPIO_Pin = GPIO_Pin_8; GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_Init(GPIOA, &GPIO_InitStruct);} /* USER CODE BEGIN 2 */ /* USER CODE END 2 */
赞
评论
回复
支持
反对
静以@致远
回答时间:2014-1-3 16:10:53
a0a.1 0b0c
回复:ST公司出品【图形化配置工具】
截图回复一张
赞
评论
回复
支持
反对
沐紫
回答时间:2014-1-3 17:05:42
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
多谢楼主分享代码!
赞
评论
回复
支持
反对
那片清茶
回答时间:2014-1-3 17:37:34
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
看看。。。。。。。。。。。。。
赞
评论
回复
支持
反对
xyy211502
回答时间:2014-1-3 17:47:25
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
顶顶顶顶顶顶顶顶
赞
评论
回复
支持
反对
zykzyk-93033
回答时间:2014-1-4 10:59:12
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
继续改进好啊
赞
评论
回复
支持
反对
ruiziyq
回答时间:2014-1-4 15:48:03
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
xiexie!!!!
赞
评论
回复
支持
反对
tubegong
回答时间:2014-1-4 20:34:05
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
没想到ST也有这种工具
赞
评论
回复
支持
反对
yongjun
回答时间:2014-1-4 21:03:35
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
看看,到底怎样
赞
评论
回复
支持
反对
小贾-370388
回答时间:2014-1-5 15:44:58
a0a.1 0b0c
回复:ST公司出品【图形化配置工具】
支持一下
赞
评论
回复
支持
反对
yanghc
回答时间:2014-1-5 18:24:52
a0a.1 0b0c
回复:ST公司出品【图形化配置工具】
kkkkkkkkkkkkkk
赞
评论
回复
支持
反对
海洋之星-339614
回答时间:2014-1-5 20:56:30
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
这绝对是好东西,支持
赞
评论
回复
支持
反对
JackH
回答时间:2014-1-6 08:58:04
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
官方出品 支持 ~~~!
赞
评论
回复
支持
反对
yinyue01
回答时间:2014-1-6 09:46:29
a0a.1 0b0c
RE:ST公司出品【图形化配置工具】
顶,看看~~~~~~~
赞
评论
回复
支持
反对
1
2
3
4
5
6
7
8
9
10
... 24
/ 24 页
下一页
所属标签
关于
意法半导体
我们是谁
投资者关系
意法半导体可持续发展举措
创新与技术
意法半导体官网
联系我们
联系ST分支机构
寻找销售人员和分销渠道
社区
媒体中心
活动与培训
隐私策略
隐私策略
Cookies管理
行使您的权利
官方最新发布
STM32N6 AI生态系统
STM32MCU,MPU高性能GUI
ST ACEPACK电源模块
意法半导体生物传感器
STM32Cube扩展软件包
关注我们
微信公众号
手机版
快速回复
返回顶部
返回列表
RE:ST公司出品【图形化配置工具】
回复:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
回复:ST公司出品【图形化配置工具】
回复:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】
RE:ST公司出品【图形化配置工具】