일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dataflow modeling
- vivado
- prescaling
- pwm
- Algorithm
- ring counter
- Pspice
- BASYS3
- uart 통신
- Linked List
- D Flip Flop
- hc-sr04
- behavioral modeling
- structural modeling
- test bench
- stop watch
- gpio
- FND
- LED
- atmega 128a
- DHT11
- Edge Detector
- ATMEGA128A
- java
- soc 설계
- KEYPAD
- i2c 통신
- half adder
- Recursion
- verilog
- Today
- Total
목록분류 전체보기 (312)
거북이처럼 천천히
보호되어 있는 글입니다.
보호되어 있는 글입니다.

1. 무연납과 유연납의 차이무연납과 유연납의 차이는 함유율에 납 성분이 포함되어 있는가 여부이다.유연납은 있을 유(有) + 납 연 = 납이 있다. 무연납은 없을 무(無) + 납 연 = 납이 없다. = Lead-Free무연납과 유연납을 비교하여 표로 정리하면 다음과 같다. 유연납무연납합유율주로 납(Pb)와 주석(Sn)로 구성되어 있으며,일반적으로 납은 35% ~ 45%의 합유율을 갖는다.납(Pb)은 포함하지 않으며, 주로 주석(Sn)이 95% 이상으로 구성되어 있다. 나머지는 구리(Cu)와 은(Ag)로 구성한다.가격저렴하다.상대적으로 비싸다.녹는점대략 183 ℃에서 녹는다. (인두기는 300 ~ 360 ℃ 온도를 가져야 한다.)약 217 ℃에서 녹는다.( 인두기는 410 ~ 420 ℃ 온도를 가져야 한다..
보호되어 있는 글입니다.

1. xspi_slave_intr_example.c /******************************************************************************** Copyright (C) 2008 - 2014 Xilinx, Inc. All rights reserved.** Permission is hereby granted, free of charge, to any person obtaining a copy* of this software and associated documentation files (the "Software"), to deal* in the Software without restriction, including without limitation ..

1. xuartlite_intr_example.c/******************************************************************************** Copyright (C) 2002 - 2015 Xilinx, Inc. All rights reserved.** Permission is hereby granted, free of charge, to any person obtaining a copy* of this software and associated documentation files (the "Software"), to deal* in the Software without restriction, including without limitation the..

1. 해당 example 파일 위치 2. xintc_example.c /******************************************************************************** Copyright (C) 2002 - 2014 Xilinx, Inc. All rights reserved.** Permission is hereby granted, free of charge, to any person obtaining a copy* of this software and associated documentation files (the "Software"), to deal* in the Software without restriction, including witho..
1) Intro이번 과제를 수행하던 중, UART 통신을 이용하여 4byte 데이터 A, B를 수신 받은 뒤, 이를 메모리 주소 (1byte) + 데이터 (4byte)를 WriteBuffer 배열 (5byte)을 이용하여 SPI 통신할 수 있도록 설계하였다.그러던 중, UART 통신은 Interrupt 방식을 사용했지만, SPI 통신은 Polling 방식으로 사용하였다.사실 이전까지는 Interrupt 방식을 이용하여 설계해본 경험은 있지만, Polling 방식을 이용하여 설계해본 경험이 없었기 때문에 이에 대한 정확한 정의와 차이, 장단점에 대해서 잘 모르기 때문에 이에 대한 정리가 필요했다. 2) Interrupt 방식Interrupt 방식은 CPU가 프로그램 실행하는 과정에서 외부 입출력 장치, ..