
QNX
阳光柠檬_
...
展开
-
十步开发第一个QNX Neutrino 程序
当然,这是根据QNX官方英文文档 A_Quickstart_Guide.pdf 翻译总结过来的。 官方文档下载地址:http://www.qnx.com/download/feature.html?programid=26166QNX Neutrino开发的十个简略步骤:1. 准备首先,我们需要从官网上下载开发包,下载地址: http://www.qnx.com/products/evaluat原创 2015-09-19 14:11:29 · 11964 阅读 · 6 评论 -
QNX openGL ES 图形界面环境配置
配置qnx6.6 VM 中 screen 环境变量根据 Screen_Developers_Guide.pdf 总结。停止 screen 进程: slay screen确保 screen 进程已停止: pidin ar 查看当前运行进程设置环境变量:GRAPHICS_ROOT export GRAPHICS_ROOT=/armle-v7/usr/lib/graphics/vmware设置环境原创 2015-10-23 14:31:52 · 5557 阅读 · 0 评论 -
安装QNX的Qt开发框架(QDF)
Installing QNX QDFQNX QDF is a collection of Qt header files, libraries, and command-line tools required for building Qt apps. All its content comes from the open-source Qt project and is prebui翻译 2015-09-21 12:05:05 · 2335 阅读 · 0 评论 -
在Qt Creator中配置QNX设备
Configuring a QNX device in Qt CreatorYou must configure a QNX device to tell Qt Creator which target system your apps will be deployed onto. In the QNX Qt development environment, the target is翻译 2015-09-21 12:06:41 · 3365 阅读 · 0 评论 -
QNX图形程序(GF)
官方文档: http://www.qnx.com/developers/docs/6.5.0_sp1/index.jsp?topic=%2Fcom.qnx.doc.gf_dev_guide%2Fdraw.html根据文档中的封装了一个类:/* * CGFDraw.h * * Created on: 2015-10-9 * Author: l */#ifndef CGFDRAW原创 2015-10-10 11:24:45 · 3355 阅读 · 1 评论 -
在Qt Creator中配置QNX编译工具链
Configuring a toolchain in Qt CreatorAfter defining a QNX device to represent your target system, you must set up a toolchain in Qt Creator. The toolchain defines the翻译 2015-09-21 12:01:56 · 3776 阅读 · 0 评论 -
QNX系统中播放wav文件
QNX 中播放音频,用的是libasound 库。 官方提供的 wave.c 的代码,用于播放一个wav格式的音频文件。 但在QNX 6.6 虚拟机里一直播放不了,原因是虚拟机没有/dev/snd/ 而且该目录下也没什么设备。继续看官方的帮助文档,是要运行/sbin/io-audio加载声卡驱动才能播放。The io-audio command can load the following sh原创 2015-10-26 14:56:34 · 4811 阅读 · 2 评论 -
QNX平台下QT开发环境的配置
1. 添加QCC编译器, 事先要装好SDP6.6 : qnx-sdp-6.6-201402230339.exe (官网上有下载)添加x86平台的QCC 添加arm平台的QCC 2. 添加QT版本, 事先要装好 qt-5.3.1-201503051558.exe (官网上有下载)我安装在C盘C:\QNX-qt\ 配置x86平台的qt 版本 配置arm平台的qt 版本 3. 添加 构建套件(K原创 2016-01-04 15:49:08 · 6275 阅读 · 12 评论