export qtdir=$pwd
export ld_library_path=$pwd/lib
export tslib_tsdevice=/dev/event0
export tslib_plugindir=$pwd/lib/ts
export tslib_consoledevice=none
export tslib_conffile=$pwd/etc/ts.conf
export pointercal_file=$pwd/etc/ts-calib.conf
export qws_mouse_proto=tslib:/dev/event0
export tslib_calibfile=$pwd/etc/ts-calib.conf
export lang=zh_cn
export qws_display="linuxfb:mmwidth160:mmheight120:0"
export qt_qws_fontdir=$pwd/lib/fonts
在ARM開發板上搭建 C語言 環境
相關概念 棧是一種具有後進先出性質的資料組織方式,也就是說後存放的先取出,先存放的後取出。棧底是第乙個進棧的資料所處的位置,棧頂是最後乙個進棧的資料所處的位置。根據sp指標指向的位置,棧可以分為滿棧和空棧。1 滿棧 當堆疊指標sp總是指向最後壓入堆疊的資料。2 空棧 當堆疊指標sp總是指向下乙個將要...
開發板上mount和samba的一些經驗
3 samba 4 臨時增加網段 開發板上跑程式經常需要搭建nfs伺服器和samba伺服器用於掛載和互動檢視檔案 sudo apt get install nfs kernel serversudo vim etc exports在檔案尾部新增 mnt rw,sync,no subtree chec...
GDB 在arm開發板上的遠端除錯
嵌入式linux的gdb除錯環境由host和target兩部分組成,host端使用arm linux gdb,target board端使用gdbserver。除錯時,應用程式在嵌入式目標系統上執行,而gdb除錯在host端。一 編譯安裝gdb gdbserver 這是我的編寫的編譯指令碼 bin ...