신청을 해 말아?
근데 귀찮잖아? 안될거야
그나저나 천명도 안오는데 해서 머하나~
'개소리 왈왈 > 블로그' 카테고리의 다른 글
웹호스팅 결제 -_- (0) | 2016.02.22 |
---|---|
대한민국 결제 환경 이대로 좋은가!! (0) | 2016.02.21 |
블로그 접어야 하나 ㅋㅋ (0) | 2015.11.14 |
다음 쪽지 종료 공지 (0) | 2015.10.28 |
카카오 티스토리... (0) | 2015.10.07 |
신청을 해 말아?
근데 귀찮잖아? 안될거야
그나저나 천명도 안오는데 해서 머하나~
웹호스팅 결제 -_- (0) | 2016.02.22 |
---|---|
대한민국 결제 환경 이대로 좋은가!! (0) | 2016.02.21 |
블로그 접어야 하나 ㅋㅋ (0) | 2015.11.14 |
다음 쪽지 종료 공지 (0) | 2015.10.28 |
카카오 티스토리... (0) | 2015.10.07 |
lm3s1607 데이터 시트
TxFIFO가 있는데 이녀석에서 Transmitter로 한 바이트가 보내지면 TX 인터럽트가 떨어진다.
그런 이유로 가장 마지막 바이트가 UART를 통해 보내지는 시점에 (다음 바이트를 받기 위해) TX 인터럽트가 발생한다.
그래서 485 등을 사용시에는 TX 인터럽트 떨어졌다고 바로 TX Enable을 꺼버리면 안된다.
cortex-m3 hibernate module... (0) | 2016.04.14 |
---|---|
cortex-m3 인터럽트 관련 조사 (0) | 2016.02.18 |
coflash 구조 및 에러 메시지.. (0) | 2015.12.11 |
ADCHardwareOversampleConfigure() (0) | 2015.11.17 |
lm3s811 / lm31968 adc 사양비교 (0) | 2015.11.17 |
근데 닌자 ㅋㅋㅋ
국제 공통이었냐?
오리진의 선물 - NFS 모스트 원티드 (0) | 2016.02.03 |
---|---|
스팀 195개.. 오리진 45개? (0) | 2016.01.12 |
indiegala giveaday (0) | 2015.12.13 |
인디갈라 give a day (0) | 2015.12.10 |
오리진의 선물 (0) | 2015.12.03 |
gcc -M을 통해서 해당 소스가 끌어와야 하는 헤더들의 목록을 얻어낼수 있다.
이걸 이용하여 역으로
make 파일에서 사용해야 하는 헤더들의 목록을 생성해 낼 수 있고
이걸 make dep나 make depend를 통해서 수행하게 된다.
생각해보니.. ifdef로 된거.. option 파일이 아닌
-D 인자를 통해서 gcc -M -Dflag 해주면... 외부에서 소스변경없이 구현이 가능해져서 더 편하려나?
[링크 : http://developinghappiness.com/?p=174]
[링크 : http://developinghappiness.com/?page_id=222]
make 기본셸 (0) | 2016.06.08 |
---|---|
makefile := = 차이점 (0) | 2016.06.04 |
make 암시적 룰 (0) | 2015.12.18 |
make jobserver unavailable (0) | 2015.12.16 |
make 아카이브 (0) | 2015.12.14 |
타겟을 만들지 않아도 컴파일 되는 이유... 라고 해야하나?
*.c는 $(CC)를
*.cc나 *.C는 $(CXX)를 이용해서 컴파일 하는데
$(CPPFLAGS) 와 $(CFLAGS)를 인자로 받으니..
여기에 헤더와 링커 경로를 넣어주면 자동으로 알아서 작동하는 마법!
Compiling C programs n.o is made automatically from n.c with a recipe of the form ‘$(CC) $(CPPFLAGS) $(CFLAGS) -c’. Compiling C++ programs n.o is made automatically from n.cc, n.cpp, or n.C with a recipe of the form ‘$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c’. We encourage you to use the suffix ‘.cc’ for C++ source files instead of ‘.C’. [링크 : http://www.gnu.org/software/make/manual/make.html#Catalogue-of-Rules] |
[링크 : http://korea.gnu.org/manual/4check/make-3.77/ko/make_10.html#SEC91]
패턴 규칙 예제(Pattern Rule Examples) 다음은 make에 의해서 실제로 미리 정의된 패턴 규칙들의 몇가지 예제들이다. 먼저 `.c' 파일들을 `.o' 로 컴파일하는 규칙은: %.o : %.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@ [링크 : http://korea.gnu.org/manual/4check/make-3.77/ko/make_10.html#SEC96] |
makefile := = 차이점 (0) | 2016.06.04 |
---|---|
make 의존성 파일? (0) | 2015.12.18 |
make jobserver unavailable (0) | 2015.12.16 |
make 아카이브 (0) | 2015.12.14 |
make 매크로 (0) | 2015.12.14 |
-E는 프리프로세서를 거친 결과를 뽑아준다면..
-M은 확장된 헤더의 목록만 빼준다.
-E
Stop after the preprocessing stage; do not run the compiler proper. The output is in the form of preprocessed source code, which is sent to the standard output.
-M
Instead of outputting the result of preprocessing, output a rule suitable for make describing the dependencies of the main source file. The preprocessor outputs one make rule containing the object file name for that source file, a colon, and the names of all the included files, including those coming from -include or -imacros command line options.
Unless specified explicitly (with -MT or -MQ), the object file name consists of the name of the source file with any suffix replaced with object file suffix and with any leading directory parts removed. If there are many included files then the rule is split into several lines using \-newline. The rule has no commands.
This option does not suppress the preprocessor's debug output, such as -dM. To avoid mixing such debug output with the dependency rules you should explicitly specify the dependency output file with -MF, or use an environment variable like DEPENDENCIES_OUTPUT . Debug output will still be sent to the regular output stream as normal.
Passing -M to the driver implies -E, and suppresses warnings with an implicit -w.
-MM
Like -M but do not mention header files that are found in system header directories, nor header files that are included, directly or indirectly, from such a header.
This implies that the choice of angle brackets or double quotes in an #include directive does not in itself determine whether that header will appear in -MM dependency output. This is a slight change in semantics from GCC versions 3.0 and earlier.
gcc -fPIC (0) | 2016.06.22 |
---|---|
gcc dependency .d 파일? (0) | 2016.03.28 |
gcc 초기화 관련 (0) | 2015.10.21 |
precompiled header on GCC (라즈베리로 테스트) (2) | 2015.07.30 |
gcc에서 precompiled header 사용하기 (0) | 2015.07.29 |
대충 보면 어셈인줄 알았는데.. 스크립트라네...
[링크 : http://wiki.osdev.org/Linker_Scripts]
[링크 : http://www.scoberlin.de/content/media/http/informatik/gcc_docs/ld_3.html]
[링크 : http://korea.gnu.org/manual/release/ld/ld-mahajjh/ld_3.html]
PCB 마킹 의미 (0) | 2016.07.28 |
---|---|
COM26T2844VTX 관련... (0) | 2016.03.16 |
시리얼 저항 / 직렬 저항 / 댐핑 저항 (0) | 2015.12.17 |
microchip PIC (0) | 2015.09.08 |
9$ computer C.H.I.P? (0) | 2015.05.27 |
이게 다 같은 건가?
일단 이걸 쓰는 이유는
1. 전류제한
2. 임피던스 매칭으로 노이즈 제거
3. 전압변경(좋은 방법은 아니지만)
등등등...
[링크 : http://programfrall.tistory.com/43]
[링크 : http://pcbee.tistory.com/entry/직렬series-저항-값에-대한-고찰]
[링크 : http://blog.naver.com/rlaghlfh/110127337569] 댐핑 저항
[링크 : http://www.solvline.com/technical_info/tech_note_view.php?no=24] 종단 저항(terminator)
COM26T2844VTX 관련... (0) | 2016.03.16 |
---|---|
링커 스크립트 문법(ld syntax) (0) | 2015.12.17 |
microchip PIC (0) | 2015.09.08 |
9$ computer C.H.I.P? (0) | 2015.05.27 |
PowerQUICC (0) | 2015.04.02 |
흐음...
pull up/down 저항이 낮아서 문제가 되려나?
[링크 : http://e2e.ti.com/support/microcontrollers/tiva_arm/f/908/p/348680/1220668]
[링크 : http://www.alteraforum.com/forum/archive/index.php/t-32059.html]
JTAG Mode | SWD Mode | Signal | Required pull-up / pull-down (if not implemented internally by MCU) |
TCK | SWCLK | Clock into the core | Use 10K-100K Ohm pull-down resistor to GND |
TDI | - | JTAG Test Data Input | Use 10K-100K Ohm pull-up resistor to VCC |
TDO | SWV | JTAG Test Data Output / SWV trace data output (SWO) | Use 10K-100K Ohm pull-up resistor to VCC |
TMS | SWDIO | JTAG Test Mode Select / SWD data in/out | Use 10K-100K Ohm pull-up resistor to VCC |
GND | GND | - | - |
[링크 : https://www.lpcware.com/content/faq/lpcxpresso/debug-design]
[링크 : http://www.support.code-red-tech.com/CodeRedWiki/HardwareDebugConnections] 조만간 폭파
Signal | Connects to... |
---|---|
TMS | Test Mode State pin — Use 100K Ohm pull-up resistor to VCC. |
TDO | Test Data Out pin. |
RTCK | JTAG Return Test ClocK. (see Note below) |
TDI | Test Data In pin — Use 100K Ohm pull-up resistor to VCC. |
TRST | Test ReSeT/ pin — Use 100K Ohm pull-up resistor to VCC. TRST is optional and not available on some devices. You may leave it unconnected. |
TCLK | Test CLocK pin — Use 100K Ohm pull-down resistor to GND. |
VCC | Positive Supply Voltage — Power supply for JTAG interface drivers. |
GND | Digital ground. |
RESET | RSTIN/ pin — Connect this pin to the (active low) reset input of the target CPU. |
CPUCLK | CPU clock (according IEEE Standard 1149.1). |
OCDSE | Enable/Disable OCDS interface (Infineon-specific). |
TRAP | Trap condition (Infineon-specific). |
BRKIN | Hardware break in (Infineon-specific). |
BRKOUT | Hardware break out (Infineon-specific). |
/JEN | JTAG Enable (STMicroelectronics specific). |
TSTAT | JTAG ISP Status (STMicroelectronics specific) (optional). |
/RST | Chip reset (STMicroelectronics specific). |
/TERR | JTAG ISP Error (STMicroelectronics specific) (optional). |
[링크 : http://www.keil.com/support/man/docs/ulink2/ulink2_hw_connectors.htm]
[링크 : http://forum.falinux.com/zbxe/?document_srl=796669...]
ulink flashmagic (0) | 2016.09.02 |
---|---|
armada 370 - ARMv7 인데 neon이 없네? (0) | 2015.12.30 |
jtag과 swd (0) | 2015.12.14 |
비글본 github 저장소 (0) | 2015.10.30 |
arm9 dsp / arm11 simd instuction 비교? (0) | 2015.10.01 |
음.. 소스 레벨에서는 역시 무리이고..
돌려보고 최대로 먹는거 보면서 분할을 해줘야 하려나?
[링크 : http://www.freertos.org/FAQMem.html]
[링크 : http://www.microchip.com/forums/m590414.aspx]
[링크 : http://sourceforge.net/p/freertos/discussion/382005/thread/33791e60/]
[링크 : http://www.freertos.org/uxTaskGetStackHighWaterMark.html]
[링크 : http://www.freertos.org/Stacks-and-stack-overflow-checking.html]
esp32 freertos (0) | 2023.12.08 |
---|---|
stm32 freertos (0) | 2023.12.08 |
lm3s811 freeRTOS ADC... (0) | 2015.11.16 |
freertos 자료 (0) | 2015.11.12 |
freeRTOS 패키지? (0) | 2015.11.11 |