블로그 이미지
Leeway is... the freedom that someone has to take the action they want to or to change their plans.
maetel

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
  • total
  • today
  • yesterday

Category

2008. 7. 2. 02:04 Hardware/network

http://www.webopedia.com/TERM/U/UART.html

Pronounced u-art, and short for universal asynchronous receiver-transmitter, the UART is a computer component that handles asynchronous serial communication. Every computer contains a UART to manage the serial ports, and some internal modems have their own UART.

As modems have become increasingly fast, the UART has come under greater scrutiny as the cause of transmission bottlenecks. If you are purchasing a fast external modem, make sure that the computer's UART can handle the modem's maximum transmission rate. The newer 16550 UART contains a 16-byte buffer, enabling it to support higher transmission rates than the older 8250 UART.


http://en.wikipedia.org/wiki/UART

a piece of computer hardware that translates data between parallel and serial forms.

A UART is usually an individual (or part of an) integrated circuit used for serial communications over a computer or peripheral device serial port. UARTs are now commonly included in microcontrollers.



http://terms.empas.com/dicsearch/view.html?i=3006728

범용 비동기화 송수신기 (汎用非同期化送受信機)
컴퓨터의 비동기 직렬 통신을 처리하는 프로그램. 보통 마이크로칩으로 실현되며, RS-232C DTE 인터페이스를 제공하여, 모뎀이나 기타 다른 직렬 장치들과 통신하거나 데이터를 주고받을 수 있게 한다. UART는 병렬 데이터를 직렬 비트 스트림으로 변환, 또는 복원하고, 패리티 비트를 추가하거나 패리티를 검출, 제거하며, 비동기 통신을 위해 시작 비트와 정지 비트를 추구하고 삭제하는 기능들을 수행한다. 또한, UART 직렬 통신 측의 속도와 중앙 처리 장치(CPU) 속도에는 큰 차이가 있어 완충기(buffer)를 내장하기도 한다.

'Hardware > network' 카테고리의 다른 글

RS232 data communication - MT9  (0) 2008.08.16
bluetooth on Mac  (0) 2008.06.17
Video Tracking on PC  (0) 2007.08.11
posted by maetel
2008. 1. 16. 17:33 Context

Marshall Mcluhan's philosophy of communication in the postmodern age of globalization

Marshall Mcluhan's philosophy of communication in the postmodern age of globalization
Hwa Yol Jung 저
pp. 49~77(29pages)

UCI URL : http://uci.or.kr/G300-bX489435.v11n34p49


1. Prologue
2. Communication as a Civilizational Topic
3. Communication as a Tactile Topic
4. Globality and Intercultural Dialogue
5. Epilogue REFERENCES      
       
        
    한국어 초록     
    이 논문에서 나는 세계화, 즉 이 세계를 '세계촌'으로 상정하는 맥락에서 맥루한의 커뮤니케이션 철학을 '제1 철학'으로 기술, 평가하려 한다. 그는 공식적인 '세계주의자'이다. 지금까지 맥루한은 미디어 테크놀로지의 패러다임 변환으로 단단하게 엮어진 역사철학자로 간주되었을 따름이다. 여기에서 패러다임 변환이란, 글을 읽기 전의 시대(구전)에서 글을 읽는 문자시대(원고/활자), 그리고 전자시대(후기 문자시대)로의 변환을 의미한다. 더욱이 맥루한의 철학에서 커뮤니케이션의 감각기관과 매체유형은 상호 연관되어 잇다. 그에게 시각과 근대성의 관계가 촉각과 포스트모더니티의 관계와 같은 것이다. 후자를 통해 전자를 알 수 있는 것이다. 세계화의 과정을 상호문화적 대화로 탐구하면서, 그의 커뮤니케이션 철학은 횡단적 보편성(transversality)을 통해 합류를 가능하게 하는 문화적 경계를 지날 수 있다.
posted by maetel
2007. 5. 29. 03:16 Computation
Fundamentals of network media
Basic course in data communications and networked digital media. Networking and data communications discussed from viewpoints of computer and telecommunication networks. Computer graphics and virtual reality. Digital media and production of contents.

-> read Lectures

'Computation' 카테고리의 다른 글

Physical Computing  (0) 2007.11.17
Visualization Toolkit (VTK)  (0) 2007.07.09
Name Server 변경  (0) 2007.05.18
physics engine  (0) 2007.05.03
shiffman's ICM @NYU  (0) 2006.04.11
posted by maetel
2007. 1. 3. 05:09 Hardware

Wiring

void setup() {
  Serial.begin(38400);
}

void loop() {
  if (Serial.real() == 65) {
    Serial.print((analogRead(0)/4));
    Serial.print((analogRead(1)/4));
    Serial.print((analogRead(2)/4));


Processing

import processing.serial.*;
Serial port;
float xpos;

void setup() {
  size(256,256);
  noStroke();
  println(Serial.list());
  port = new Serial(this, Serial.list()[2], 38400);
//  port.clear();
}
void draw(){
 
background(0);
while (port.available() > 0) {
  xpos = port.read();
}
rect(xpos,100,20,20);
}


Wiring

int ax = 0; //set the pin number
int ay = 1;
int az = 2;
int x = 0; //the value of acceleration on x-axis
int y = 0;
int z = 0;

void setup() {
  Serial.begin(38400);
}

void loop() {
  x = analogRead(ax); //read the value of analog pin 0
  y = analogRead(ay);
  z = analogRead(az);
  Serial.print(x/4);
  Serial.print(y/4);
  Serial.print(z/4); //write the scaled value to the serial port
}


 

된장... shielding... orz

'Hardware' 카테고리의 다른 글

[Noah Shibley] eagle PCB  (0) 2008.04.01
smd toast oven  (0) 2008.03.24
soldering  (0) 2006.12.14
testing serial  (0) 2006.12.10
hardware term  (0) 2006.02.21
posted by maetel