a.人力資源(HR),這個跟學校裡面學的差不多~
b.工業工程(IE),主要是利用IE的手法(就是生產及作業管理學的那些)來進行生產製程(包含產線配置、生產排表及分配、產線內各工位工作分擔等),或是各單位間作業流程的最佳化。
c.專案管理(PM),一般來說其業務包括各生產單位間協調、與客戶接觸之窗口、報價(看到客戶產品就要會根據其所需工藝技術及各種材料估算大約的成本)、議價(跟sales差不多,討價還價博感情)、客戶與廠間的溝通協調。另外還有部分的新市場開發部分。需求知識包括市場分析(產業分析、競爭對手分析、供應商分析等等)、議價能力、文書處理(WORD、EXCEL、POWERPOINT)等。
d.生產開發(PE),負責主導新機種的技術開發,所有技術問題均是由他們處理,協調,並解決。這部分多半需要的是理工背景的人!
e.品質保證(QA),負責各生產單位的成品品質問題。會用到很多統計方法去查驗產品良率,以及改進良率問題。所以(感覺)很需要統計的能力!!
- Dec 25 Mon 2017 09:36
-
職位簡稱
- Dec 18 Mon 2017 10:36
-
static、dyamic in C
C語言static有兩個目的
1.static storage (靜態存儲):變數儲存空間為static storage而非function stack,使變數生命週期與程式相同。
2.internal linkage(內部連結):限制變數可視範圍於檔案內。(聽說這是後來加的,為了減少保留字的使用所以也用static)
當你使用static修飾字...
已經有內部連結特性的(區域變數)就加上靜態存儲特性。
- Dec 06 Wed 2017 14:43
-
一些嵌入式C語言基礎
#define bit0 1
#define bit1 (1<<1)//10(shift left)
#define bit2 (1<<2)//100
#define bit3 (1<<3)
#define bit4 (1<<4)
- Dec 04 Mon 2017 15:13
-
USB,UART,I2C,SPI(2)
https://makerpro.cc/2016/07/learning-interfaces-about-uart-i2c-spi/
- Nov 29 Wed 2017 16:54
-
include 防範
https://zh.wikipedia.org/wiki/Include%E9%98%B2%E7%AF%84
- Nov 29 Wed 2017 15:49
-
#define小常識
#define:
只是一種簡單的替換。
例:
替換變數:
#define XXX 1234 //程式碼遇到變數xxx時自動替換成1234
- Nov 29 Wed 2017 15:31
-
struct的小常識
struct a{
int a;
char b;
}
- Nov 29 Wed 2017 14:28
-
揮發性volatile
volatile 變數:
定義為需要被即時更新的變數。
使用說明:
當一個變數的內容可能會被意想不到的更新時(by hardware),一定要使用volatile來聲明該變數。通常,只有三種類型的變數會發生這種“意外”:
• 在記憶體中進行位址映射的周邊暫存器(peripheral registers);
- Nov 28 Tue 2017 17:03
-
USB,UART,I2C,SPI
通訊方式:
Serial communication
Parallel communication
- Nov 16 Thu 2017 10:24
-
HDLC相關
Bit-oriented protocol (bit導向協定)
A bit-oriented protocol is a communications protocol that sees the transmitted data as an opaque stream of bits with no semantics, or meaning. Control codes are defined in terms of bit sequences instead of characters. Bit oriented protocol can transfer data frames regardless of frame contents. It can also be stated as "bit stuffing" this technique allows the data frames to contain an arbitrary number of bits and allows character codes with arbitrary number of bits per character.
HDLC:
IBM : SDLC (Synchronous Data Link Control)
- Nov 14 Tue 2017 13:32
-
data link layer-HDLC之LLC,MAC整理