joeljding.blogspot.com joeljding.blogspot.com

joeljding.blogspot.com

JJD的讀書、實作、筆記

這是整理讀書筆記、實習與實作心得的地方

http://joeljding.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR JOELJDING.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.4 out of 5 with 7 reviews
5 star
3
4 star
4
3 star
0
2 star
0
1 star
0

Hey there! Start your review of joeljding.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1.1 seconds

FAVICON PREVIEW

  • joeljding.blogspot.com

    16x16

  • joeljding.blogspot.com

    32x32

CONTACTS AT JOELJDING.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
JJD的讀書、實作、筆記 | joeljding.blogspot.com Reviews
<META>
DESCRIPTION
這是整理讀書筆記、實習與實作心得的地方
<META>
KEYWORDS
1 jjd的讀書、實作、筆記
2 這是整理讀書筆記、實習與實作心得的地方
3 strtok 在兩重迴圈內的現象
4 mainc /
5 include stdio h
6 include stdlib h
7 include string h
8 main
9 argc
10 char
CONTENT
Page content here
KEYWORDS ON
PAGE
jjd的讀書、實作、筆記,這是整理讀書筆記、實習與實作心得的地方,strtok 在兩重迴圈內的現象,mainc */,include stdio h,include stdlib h,include string h,main,argc,char,argv,pch2 ;,pch =,strtok,while,null,pch2 =,printf,return,saveptr2 ;,strtok r,saveptr ;,const char,tmp ;,tmp =,strdup,str2 ;,free
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

JJD的讀書、實作、筆記 | joeljding.blogspot.com Reviews

https://joeljding.blogspot.com

這是整理讀書筆記、實習與實作心得的地方

INTERNAL PAGES

joeljding.blogspot.com joeljding.blogspot.com
1

JJD的讀書、實作、筆記: 第三個練習(下)徒手移植 FreeRTOS V8.1.2

https://joeljding.blogspot.com/2015/01/freertos-v812.html

第三個練習(下)徒手移植 FreeRTOS V8.1.2. 移植有兩種:移植到從未支援過的CPU(或說不支援的CPU架構);移植到前人曾經移植過的CPU。 前者困難:與CPU架構、編譯工具相關,但支援種類很豐富[2]。 將 FreeRTOS V8.1.2 下載解開,放在 BSP 目錄裡,跟 FreeRTOS V7.4.0 並排放。見 CMakeLists.txt。 支援的檔案放在 FreeRTOS/Source/portable/[compiler name]/[processor name]。按照文件[2]的建議步驟檢查一遍即可。 1] Creating a New FreeRTOS Port link. 2] Official FreeRTOS Ports link. 3] error: missing binary operator before token "long" link. 訂閱: 張貼留言 (Atom). 四枝筆新單曲出黑膠 聯名 Spinbox 唱盤開放預購. Gino Chen My Life 點點滴滴. VLC Multicast Streaming 設定.

2

JJD的讀書、實作、筆記: 第三個練習(中)練習在 FreeRTOS V7.4.0 上編程

https://joeljding.blogspot.com/2015/01/freertos-v740_13.html

第三個練習(中)練習在 FreeRTOS V7.4.0 上編程. Chapter 02 Queue Management (p.71 p.96 of 212). Example 10. Blocking when receiving from a queue link. Example 11. Blocking when sending to a queue or sending structures on a queue link. 1] Richard Barry, Using the FreeRTOS Real Time Kernel - A Practical Guide - Cortex-M3 Edition, year 2010. Version 1.3.2. 2] chapter 2 example github. 3] chapter 2 example github. 訂閱: 張貼留言 (Atom). 四枝筆新單曲出黑膠 聯名 Spinbox 唱盤開放預購. Gino Chen My Life 點點滴滴. VLC Multicast Streaming 設定.

3

JJD的讀書、實作、筆記: 幹掉 ^M

https://joeljding.blogspot.com/2015/01/m.html

從 DOS/Windows 寫的 c 程式檔,移到 UNIX 上,句尾總多了一堆不受歡迎的 M。 2 輸入 ESC : %s / Ctrl V Ctrl M / g. 訂閱: 張貼留言 (Atom). 四枝筆新單曲出黑膠 聯名 Spinbox 唱盤開放預購. Gino Chen My Life 點點滴滴. VLC Multicast Streaming 設定. 超棒的解析 device already mounted or mount point busy 問題方式. 彥霖 實驗筆記 : 痞客邦 PIXNET :. Wandboard開發板:Android 5.0.2編譯. 12304;广告】《大话数据结构》在多看书城6月6日中午12点至晚上24点特价销售:0.99元 - 伍迷. USB HID for Visual C. Asleep from Day 0xlab: Launching New Studio. Simple範本. 由 Blogger.

4

JJD的讀書、實作、筆記: strtok 在兩重迴圈內的現象

https://joeljding.blogspot.com/2015/03/strtok.html

我有兩個字串 "X,x" "Y,y",需要各自 parse 並組成 XY, Xy, xY, xy 四種組合。 乍看之下,這個問題並不困難:兩個 strtok 的 while 迴圈,應該就可以解決問題。以下就這樣寫:. 不過,結果不是我心裡想的,xY, xy 都不見了:. Joelding@localhost strtok]$ ./a.out. 重看一下 strtok 的文件(man strtok),strtok 內部似乎使用了 static 的變數,保留了字串的位置,使得下次重複呼叫時,可以繼續 parse 字串。那麼,上面程式使用了兩個 while 迴圈,給了不同的字串,顯然使得函數內部錯亂。 Strtok 的文件還介紹了一種可供 reentrant 的版本:strtok r,應該可以解決問題:. Saveptr , *. 結果還是不對,少了 xy 這一項:. Joelding@localhost strtok]$ ./a.out. Joelding@localhost strtok]$ ./a.out. 43: str2=Y # str2 的內容給更改了,只剩下 Y. Saveptr , *.

5

JJD的讀書、實作、筆記: linux command stty

https://joeljding.blogspot.com/2015/01/linux-command-stty.html

Use linux command stty. To setup a port. For example, "115200bps, 8-N-1" can be. Stty -F /dev/ttyUSB0 speed 115200 cs8 -parenb -cstopb. Then, echo/cat can be used on character drivers. Writing to serial port from linux command line link. In this article, the write tried to manually send ascii characters no matter it was printable or non-printable. 訂閱: 張貼留言 (Atom). Gino Chen My Life 點點滴滴. VLC Multicast Streaming 設定. 超棒的解析 device already mounted or mount point busy 問題方式. 彥霖 實驗筆記 : 痞客邦 PIXNET :.

UPGRADE TO PREMIUM TO VIEW 2 MORE

TOTAL PAGES IN THIS WEBSITE

7

LINKS TO THIS WEBSITE

patrick0703.blogspot.com patrick0703.blogspot.com

patrick blog: 組合語言 開發程式設定

http://patrick0703.blogspot.com/2009/02/blog-post_27.html

Scattered descriptor File RAMBoot.scf. ARMfromELF Output File name hello.bin. 訂閱: 張貼留言 (Atom). Wikipedia - Recent changes [en]. Wikipedia:Requests for comment/Protect user pages by default. Mc 在 putty 下的顯示問題. Format My Source Code for Blogging. Linux Kernel module and Device Driver.

patrick0703.blogspot.com patrick0703.blogspot.com

patrick blog: 面試問題

http://patrick0703.blogspot.com/2009/04/blog-post_01.html

程式設計部分: QT是c 的寫的,請問c與c 有何不同? Ans:c 具有物件 繼承 封裝 同名義是,個別在詳細說明一下. 邏輯DEBUG:程式沒問題 但硬體不聽你操作 如何debug,. Socket:為什麼socket server要用while連線 不是連一次 就可以. Ans:被打開時 touch一個file在nfs資料夾中 QT會去打開此檔案 看是否開的起來. Ans:沒有,架構上有參照,但因為硬體連接的腳位已和當初不一樣 必須要修改暫存器的address. 2 本部門做IPMI,遠端伺服器管理,用網頁或者ap介面即時監控遠端cpu 風扇 記憶體的狀況. 3 3個月試用期 給你小工作 跟專案有關的 讓你修改部分功能. 訂閱: 張貼留言 (Atom). Wikipedia - Recent changes [en]. Wikipedia:Requests for comment/Protect user pages by default. Mc 在 putty 下的顯示問題. Format My Source Code for Blogging.

patrick0703.blogspot.com patrick0703.blogspot.com

patrick blog: arm7加入inetd和telnet ,設定baud rate

http://patrick0703.blogspot.com/2009/02/arm7inetdtelnet-baud-rate.html

Arm7加入inetd和telnet ,設定baud rate. 用custom vendor = network application = inetd. 終端機的baud rate跟arm板晶片的baud rate都要設9600 或 115200才能傳送資料過去. 程式中要設定115200 baud rate 公式可看date sheet :115200=x/16(dividsor 2),x已知. 所以dividsor 算出後是10進制,再轉成2進制,寫到暫存器中. 訂閱: 張貼留言 (Atom). Format My Source Code for Blogging. Mc 在 putty 下的顯示問題. Wikipedia - Recent changes [en]. Wikipedia:Requests for comment/Protect user pages by default. Linux Kernel module and Device Driver.

patrick0703.blogspot.com patrick0703.blogspot.com

patrick blog: linux database 設定 與使用

http://patrick0703.blogspot.com/2009/02/linux-database.html

Linux database 設定 與使用. Tmp /sqlite test.sqlite. 128;sqlite create table my(name varchar(80), num smallint);. 128;sqlite insert into my values('yutao', 100);. 128;sqlite insert into my values('uclinux', 99);. 128;sqlite select * from my;. 128;sqlite .tables. 128;sqlite .schema. 128;create table my(name varchar(80), num smallint);. 128;sqlite .q. 58958; test.sqlite. 輸入資料:inset into 表格名稱 values(.); (分號代表執行,字串要加單引號' ). 用where name='patrick'; or select num form my where name='patrick'. 刪除表格 drop table 表格名稱.

kartaforfun.blogspot.com kartaforfun.blogspot.com

Karta Language: 磁片版linux

http://kartaforfun.blogspot.com/2009/02/linux.html

Syslinux /dev/fb0 做出 MBR 和 ldlinux.sys. Tar zxfv busybox-1.1.3.tar.gz. Make menuconfig 改 .config. Mke2fs #dd if=/dev/ram9 of=initrd ). 訂閱: 張貼留言 (Atom). 密技偷看initrd.gz 或.img 或ramdisk.gz. Design the new driver in make menuconfig. Hello world 3 #ifdef. Hello world 2 單一hello.c檔變兩個.

patrick0703.blogspot.com patrick0703.blogspot.com

patrick blog: pxa270 設定

http://patrick0703.blogspot.com/2009/03/pxa270.html

37325;新開機依次. Run kernel 重新燒寫核心. 35299;tools 到/usr/local/arm tar zxvf xxx.bz2 -C /usr/local/arm. Linux 使用arm-linux-gcc. Uclinux 使用arm-elf-gcc. 21040;etc/profile加入路徑export PATH=$PATH:/usr/local/arm 重新登入即可. 38568;意地方下arm-linux-gcc. Netstat -at看有沒有ftp. 29992;mount看 哪些可讀可寫. Init 一開始會執行init /etc/inittab - /etc/initd/rcs - /bin/mount -a - /etc/fstab. Usr/etc/rc.local- /sbin/ifconfig/ eth0 192.168.35.150 netmask 255.255.255.0 up. Bin/cp -rf /usr/Qt-E/* /tmp/qt/. 22519;行qt 在/usr/QtiE/* /tmp/qt/. Mc 在 putty 下的顯示問題.

kartaforfun.blogspot.com kartaforfun.blogspot.com

Karta Language: 三月 2009

http://kartaforfun.blogspot.com/2009_03_01_archive.html

Route add default gw 192.168.35.254. 2重要的資料結構file operations,file,inode. 重要的資料結構file operations,file,inode. 通常初始化為 THIS MODULE (. 改變的是file結構裡的loff t f pos參數,file結構看後面. Loff t *);. Aio read ) (. Loff t );. Loff t *);. Aio write ) (. Loff t );. Filldir t );. Poll table struct *);. 檢查檔案I/O狀態,下次的讀寫如有停頓,延遲,來不及的情況,應該提供kernel用來休眠等待. Vm area struct *);. Aio fsync ) (. File lock *);. Loff t *);. Loff t *);. Loff t *,. Read actor t ,. Loff t *,. Get unmapped area )(. File lock *);. File operations fops = {.

kartaforfun.blogspot.com kartaforfun.blogspot.com

Karta Language: 二月 2009

http://kartaforfun.blogspot.com/2009_02_01_archive.html

MAJOR(dev t dev);. MINOR(dev t dev);. MKDEV(int major , int minor);. 1int register chrdev region(dev t first , unsigned int count , char *name);. Ex: register chrdev region( MKDEV(major,minor) , 1 , "char reg" );. 第三個參數:出現在/proc/devices與sysfs的名稱 (2.6以上 sysfs /sys/module/.). 2int alloc chrdev region(dev t *dev , unsigned int firstminor , unsigned int count , char *name);. Ex: alloc chrdev region( &dnoev , 0 , 1 , "char reg" );. 第四個參數:出現在/proc/devices與sysfs的名稱 (2.6以上 sysfs /sys/module/.). Design the new dr...

kartaforfun.blogspot.com kartaforfun.blogspot.com

Karta Language: 密技偷看initrd.gz 或.img 或ramdisk.gz

http://kartaforfun.blogspot.com/2009/02/initrdgz-img-ramdiskgz.html

密技偷看initrd.gz 或.img 或ramdisk.gz. 偷看initrd.gz 或.img 或ramdisk.gz. Cp -af /boot/initrd-2.4.20-8.img . Mv initrd-2.4.20-8.img initrd.gz. Mount -o loop initrd tmp. Mv initrd.gz initrd-2.4.20-8.img. 訂閱: 張貼留言 (Atom). 密技偷看initrd.gz 或.img 或ramdisk.gz. Design the new driver in make menuconfig. Hello world 3 #ifdef. Hello world 2 單一hello.c檔變兩個.

UPGRADE TO PREMIUM TO VIEW 42 MORE

TOTAL LINKS TO THIS WEBSITE

51

OTHER SITES

joeljcox.com joeljcox.com

Home Page

Joel Cox is a Licensed Clinical Social Worker in Portland Oregon. This site is currently under construction. Please check back at a later time.

joeljcox.info joeljcox.info

www.joeljcox.info

This Web page parked FREE courtesy of CheapNames. Search for domains similar to. Is this your domain? Let's turn it into a website! Would you like to buy this. Find Your Own Domain Name. See our full line of products. Easily Build Your Professional Website. As low as $4.99/mo. Call us any time day or night .

joeljcox.net joeljcox.net

www.joeljcox.net

This Web page parked FREE courtesy of CheapNames. Search for domains similar to. Is this your domain? Let's turn it into a website! Would you like to buy this. Find Your Own Domain Name. See our full line of products. Easily Build Your Professional Website. As low as $4.99/mo. Call us any time day or night .

joeljcox.org joeljcox.org

www.joeljcox.org

This Web page parked FREE courtesy of CheapNames. Search for domains similar to. Is this your domain? Let's turn it into a website! Would you like to buy this. Find Your Own Domain Name. See our full line of products. Easily Build Your Professional Website. As low as $4.99/mo. Call us any time day or night .

joeljdavis.com joeljdavis.com

Joel J Davis - San Diego's Classical Guitarist

Joel J Davis - San Diego's Classical Guitarist. Welcome to the Home of Joel J Davis. Enjoying the warm sounds of the classical guitar makes any occasion more special. Whether you are planning a wedding, banquet, dinner party, corporate luncheon or memorial, this music will enhance your event. Designed and Hosted by IT Business Labs. Template by http:/ www.nodethirtythree.com/.

joeljding.blogspot.com joeljding.blogspot.com

JJD的讀書、實作、筆記

我有兩個字串 "X,x" "Y,y",需要各自 parse 並組成 XY, Xy, xY, xy 四種組合。 乍看之下,這個問題並不困難:兩個 strtok 的 while 迴圈,應該就可以解決問題。以下就這樣寫:. 不過,結果不是我心裡想的,xY, xy 都不見了:. Joelding@localhost strtok]$ ./a.out. 重看一下 strtok 的文件(man strtok),strtok 內部似乎使用了 static 的變數,保留了字串的位置,使得下次重複呼叫時,可以繼續 parse 字串。那麼,上面程式使用了兩個 while 迴圈,給了不同的字串,顯然使得函數內部錯亂。 Strtok 的文件還介紹了一種可供 reentrant 的版本:strtok r,應該可以解決問題:. Saveptr , *. 結果還是不對,少了 xy 這一項:. Joelding@localhost strtok]$ ./a.out. Joelding@localhost strtok]$ ./a.out. 43: str2=Y # str2 的內容給更改了,只剩下 Y. Saveptr , *.

joeljding.wordpress.com joeljding.wordpress.com

JJD的筆記與心得

在 WordPress.com 建立免費網站或網誌. The Sandbox 1.6.2 Theme. 透過 WordPress.com 打造網站.

joeljean.com joeljean.com

Joel Jean - Home

Massachusetts Institute of Technology. Cambridge, MA 02139. I am currently serving as executive director of the Tata-MIT GridEdge Solar. Research program and postdoc in the MIT Organic and Nanostructured Electronics Laboratory ( ONE Lab. 2011 2017 Joel Jean.

joeljean.wordpress.com joeljean.wordpress.com

Life's a Game | Grin and win it.

Life's a Game. Grin and win it. Medium: Living in a carbon bubble. View story at Medium.com. Stuff I didn’t know about Saudi Arabia (KAUST Solar Future Symposium). Zooming into the King Abdullah University of Science and Technology (KAUST) in Thuwal, Saudi Arabia. Nestled in the welcoming desert of western Saudi Arabia, KAUST is modeled after Caltech, which is a small technical school in the welcoming desert of the western U.S. It even borrowed. Caltech’s president in 2013. Religious police). KAUST i...

joeljeffrey.com joeljeffrey.com

Saskatoon Comedian | Joel Jeffrey | Comedy For All Events

Joel Jeffrey is one of Saskatoon's hottest up and coming comedians. Joel has been using his witty personality and hilarious sense of humor to make people laugh for 15 years on radio on stations across Western Canada. He currently hosts a daily morning show on 96.3 Cruz FM. In Saskatoon and loves making people chuckle as they get ready to start their day. Joel is now using those same talents on the comedy stage to tell ridiculous stories leaving audiences exhausted from laughing.

joeljelinski.bandcamp.com joeljelinski.bandcamp.com

Joel Jelinski

Or browse results titled. 1 & (pageBandParentLabel() pageLabel() , col1: columns() = = 1, col2: columns() = = 2, col3: columns() = = 3 } ". 0 }" Other Linked Artists/Labels. Edit artists. add more artists. Please verify your email by clicking the link we sent to . Change email / Send again. O Holy Night (Instrumental). Purchasable with gift card. Released December 25, 2012. All tracks laid down by me. Enjoy! O Holy Night (Instrumental). Beauty Lies in the Imperfection. My Life in a Capsule. Sep 12, 2017.