IDE Cable
Programmer 장비로 MCU칩에 넣을때는 맞춰서 연결하면 된다.
---------------------------------------------------------------------------------------------------------------
유선통신의 대표적인 형태로는 I2C, SPI가 있다.
SPI (=Serial Peripheral Interface)
▲이 통신방식은 ISP통신이고 관련자료및 약자들의 의미는 여기링크에...
http://electronics.stackexchange.com/questions/55960/difference-between-miso-mosi-and-txd-rxd
(Note!!! : 글자위에 짝대기 or 글자뒤에 프라임이 붙으면 Active Low이다. 즉, GND값이 들어가면 동작)
SCK : Clock signal from master to slave
MOSI : Master Out Slave In
MISO : Master In Slave Out
SS : Slave Select signal selects salve devices.
SPI is a bus and can have multiple devices on the bus.
Because of a clock signal present, SPI can be operated faster than UART.
Master와 Slave가 통신하기 위해서는 양쪽의 SS비트가 모두 Low가 되야한다.
(관련자료 링크)