Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
ili9341
英飞凌Infineon
【英飞凌测评】英飞凌PSoC™ 62开发板试用报告-LCD ILI9341 8080 DEMO
发布于 2024-03-07 20:53:29 浏览:317
订阅该版
[tocm] # Infineon Psoc6-evaluationkit-062S2 说明 ## 简介 本文档为 `RT-Thread` 为 `PSoC6 CY8CKIT-062S2-43012`开发板提供的 BSP (板级支持包) 说明。 This is a fast display driver for interfacing ILI9341 LCD display with infineon microcontroller over an 8bit parallel (8080-II/I) bus. It's mainly written for my personal usage. ## 开发板介绍 `Psoc6-evaluationkit-062S2` 是 RT-Thread 联合英飞凌推出的一款集成32位双核CPU子系统( ARM Cortex-M4 和 ARM Cortex-M0)的开发板,其具有单周期乘法的150-MHz Arm Cortex-M4F CPU (浮点和存储器保护单元),100-MHz Cortex M0+ CPU,带单周期乘法和MPU,可以充分发挥 PSoC6 双核芯片性能。 该开发板核心 **板载资源** 如下: - MCU:CY8C624ABZI-S2D44,Cortex-M4主频 150MHz,Cortex-M0主频 100MHz,2MB Flash 和 1MB SRAM MCU手册更多详细信息请参考文档 [PSoC 6 MCU: CY8C62x8, CY8C62xA Datasheet (infineon.com)](https://www.infineon.com/dgdl/Infineon-PSOC_6_MCU_CY8C62X8_CY8C62XA-DataSheet-v17_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7d03a70b1) - 板载资源:microSD card , 触摸滑条,Arduino 接口 - 开发环境:ModusToolbox 2.0/MDK V5 PSoC® Creator™ 下载链接 [ModusToolbox™ Software - Infineon Technologies](https://www.infineon.com/cms/en/design-support/tools/sdk/modustoolbox-software/) ## 外设支持 本 BSP 目前对外设的支持情况如下: | **片上外设** | **支持情况** | **备注** | | :----------: | :----------: | :------: | | USB 转串口 | 支持 | UART0 | | GPIO | 支持 | — | | UART | 支持 | UART0-5 | | Touch | 支持 | 触摸滑条 | ## 目前支持 - [x] Support Arduino (simple, there are a few funtions to use ardino in rtt sdk) - [x] LCD display (8080, ILI9341) - [ ] ... ## 快速上手 本 BSP 是以 `VS Code` 和 `RT-Thread Studio` 为开发环境,接下来介绍如何将系统运行起来。 ### VS Code 开发 #### 硬件连接 使用数据线连接开发板到 PC。 #### 编译下载 ## 运行结果 下载程序成功之后,系统会自动运行。打开终端工具串口助手,选择波特率为 115200。复位设备后,而且在终端上可以看到 `RT-Thread` 的输出信息: ```bash \ | / - RT - Thread Operating System / | \ 4.1.1 build Jul 25 2022 18:03:35 2006 - 2022 Copyright by RT-Thread team msh > ``` If you want to show lcd demo, you can input `lcd_demo` to entry, see: ```bash \ | / - RT - Thread Operating System / | \ 4.1.1 build Jul 25 2022 18:03:35 2006 - 2022 Copyright by RT-Thread team msh > lcd_demo msh > ``` ![demo1.png](https://oss-club.rt-thread.org/uploads/20240307/9772adf68a291caf12b8a095ee6a0ea6.png.webp) ## 代码 Define pinouts to connect LCD board. ```c++ uint8_t LCD_CS = A3; // Chip Select goes to Analog 3 uint8_t LCD_CD = A2; // Command/Data goes to Analog 2 uint8_t LCD_WR = A1; // LCD Write goes to Analog 1 uint8_t LCD_RD = A0; // LCD Read goes to Analog 0 uint8_t LCD_RESET = A4; // Can alternately just connect to Arduino's reset pin uint8_t d8[] = {D8, D9, D2, D3, D4, D5, D6, D7}; // write/read the data of 8 pinouts TFTLCD tft = TFTLCD(LCD_CS, LCD_CD, LCD_WR, LCD_RD, LCD_RESET, 240, 320, d8); ``` `tft.begin()`: initialize the lcd device. `tft.setRotation(x)`: set `0-3`, set rotatation. `tft.fillScreen(color)`: set color to full background. `tft.drawPixel(x, y, color)`: `tft.drawLine(x,y,w,h,l,color)`: set position to `(x,y)`, set width to `w`, set height to `h`, set line width to `l` . `tft.fillRect(x,y,w,h,color)`: same as `drawLine` usage. `tft.drawRectangle(x,y,w,h,color)`: same to `drawLine`. `tft.drawChar(x,y,char,front_color,back_color,font,is_bg)`: `font`: see application/font. `tft.drawString(x,y,string,front_color)` > **Can see lcd sources to get information.** [github](https://github.com/rx-ted/infineon-psoc-62) ## 联系人 维护人: - [Rbb666](https://github.com/Rbb666)
0
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
rxted
这家伙很懒,什么也没写!
文章
1
回答
1
被采纳
0
关注TA
发私信
相关文章
1
RT-Thread支持英飞凌芯片吗?
2
RT-Thread系统在英飞凌TC364芯片上仅能在 Cpu 0 运行
3
请问版主RTT有没有移植到infineon的XC2000系列MCU上
4
关于RTT对于infineon 的Aurix系列的支持。
5
RT-AK使用,插件如何构建
6
PSOC6 BSP工程导入不成功
7
PSoCTM 62 初始化串口后进入休眠,功耗增加。
8
英飞凌PSoC 6 RTT开发板普通工程编译完ROM使用量就达到了1101KB
9
2023开发者大会动手实验环境搭建
10
英飞凌CYW43012 Wi-Fi 功能提示MAC地址获取错误
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
cubemx
PWM
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
290
次被采纳
张世争
812
个答案
177
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
2
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
1
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
2
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部