心得体会

Camel概念【Camel’s message model(消息体模型)】

房东的猫 提交于 2020-03-02 08:33:20
Camel’s message model In Camel, there are two abstractions for modeling messages, both of which we’ll cover in this section .(Camel中有两个抽象的消息体模型) org.apache.camel.Message —The fundamental entity containing the data being carried and routed in Camel (Message 是数据承载和路由交换的基本单元) org.apache.camel.Exchange —The Camel abstraction for an exchange of messages. This exchange of messages has an “in” message and as a reply, an “out”message ( Exchange 是camel抽象出来用于Message之间的信息传递的,它有一对“in”message 和“out”message ) We’ll start by looking at Message to understand how data is modeled and carried in Camel. Then we

android-- A10开发板--Tslib 移植心得体会

孤街浪徒 提交于 2019-12-04 21:58:04
1. tslib ,其实从他的名字就可以看出它的,它是 touchscreen 的 lib, 其实这样还不够具体,其实它开始确实是为了 touchscreen 的鼠标驱动而发展起来的,且只是一个中间处理库,即将原始数据进行调整,比如触摸屏定位。只不过后来不知道什么原因,它火了,其他图形都支持这种方式,像高级版本的 minigui , qt 等成熟嵌入式图形系统。正因为如此,它也就不再局限于 touchsrceen, 只要是输入设备,只需在 tslib 里实现,标准的图形系统只需调用 tslib 的函数即可。 它将其他的输入设备数据处理后成为一个虚拟设备的数据,其他的图形系统只需使用这个虚拟的设备即可实现输入设备的读写操作了。后来发现 tslib 只不过是一个 应用级软件 ,其他的图形系统使用的是 tslib 的函数,因此需要依赖这个库 . 2. 开发环境 : Ubuntu 10.0.4 开发板 A10 交叉编译器 android 平台的 arm-none-linux-gnueabi 3. tslib 源码所在位置 https://github.com/kergoth/tslib 下载压缩包,解压,将文件夹拷贝到 Ubuntn 任意位置 4. 进入文件夹 生成 configure ./autogen.sh 如果报错: http://blog.csdn.net/ypoflyer