網頁

2016年11月23日 星期三

GitHub 操作

Last Update: 2016/11/23 23:54+08



下載GitHub Client
-> Git Shell
-> forward 到有 .git 的資料夾
-> 一般Git操作


2016年10月16日 星期日

C / C++ Memory Op

Last Update: 2016/10/16 20:53+08



void *malloc(size_t size); // stdlib.h
void free(void *pmem); // stdlib.h
void * memcpy ( void * destination, const void * source, size_t num );

2016年10月15日 星期六

Coding Conventions

Last Update: 2016/10/16 02:24+08



C Coding Conventions
struct foo_t{
 int my_var;
 void my_func(){}
}


Java Coding Conventions
class Foo{
 int myVar;
 void myFunc(){}
}


C# Coding Conventions
class Foo{
 int MyVar;
 void MyFunc(){}
}


My Coding Conventions (Java)
class Foo{
 int myVar;
 void myFunc(){}
}
在寫程式時, 我比較在意是否可以一眼區分出class or variable


2016年9月19日 星期一

C 檔案操作

Last Update: 2016/09/19 20:57+08



fopen, fclose
開檔, 關檔


fget, fput
讀取/寫入一字串

fread, fwrite
讀取/寫入一byte

fscanf, fprintf
格式化讀取/寫入一字串





2016年9月7日 星期三

Altera Quartus [Note] [Macro] Altera PLL

Last Update: 2016/09/07 23:27+08



點擊PLL後


照下述可設定2組CLOCK


Reference
Phase-Locked Loop Basics