J-Link EDU Specifications

MCU 2020. 10. 12. 21:12

 

JTAG/SWD Interface
JTAG speed Max. 15Mhz
SWO sampling frequency Max. 30Mhz

 

 

 

 

 

 

 

 

'MCU' 카테고리의 다른 글

UART flow control  (0) 2014.02.04
Posted by 깍수
,

노트북 사용하고 있을 경우 터치 패드 때문에 불편한 경우가 발생하는데 이를 쉽게 해결하는 방법은 소프트웨어 센터에

synaptiks를 설치 한다.


프로그램을 실행하여 Touchpad management를 선택하고 Automatically switch off touchpad, if a mouse is plugged

선택하게 되면 마우스가 연결 되었을 경우에 Touchpad가 비활성화가 된다. 현재 마우스가 연결되어 있을 경우 해당 버턴(Check) 아래에 연결된 마우스가 표시 되는 것을 확인할 수 있다.

'Linux' 카테고리의 다른 글

ubuntu 한글키 설정 (12.04 LTS)  (0) 2015.05.18
Posted by 깍수
,

* HUD 단축키 제거

설정 - 키보드 - 바로 가기(탭) - 실행 아이콘(메뉴) : 허드(HUD)를 표시할 키를 사용 안함으로 변경


* xmodmap에 keycode 추가

vi ~/.Xmodmap

keycode 108 = Hangul

keycode 105 = Hangul_Hanja


Posted by 깍수
,

언제 시간날 때 아래 내용에 대해서 정리가 필요할 듯....


* Android(JB)

http://processors.wiki.ti.com/index.php?title=TI-Android-JB-PortingGuide


* Android(ICS)

http://processors.wiki.ti.com/index.php/TI-Android-ICS-PortingGuide



Posted by 깍수
,

FFS(3)				   BSD Library Functions Manual 			   FFS(3)

NAME
     ffs, ffsl, ffsll, fls, flsl, flsll -- find first or last bit set in a bit string

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <strings.h>

     int
     ffs(int value);

     int
     ffsl(long value);

     int

     int
     ffsll(long long value);

     fls(int value);

     int
     flsl(long value);

     int
     flsll(long long value);

DESCRIPTION
     The ffs(), ffsl() and ffsll() functions find the first bit set (beginning with the least
     significant bit) in value and return the index of that bit.

     The fls(), flsl() and flsll() functions find the last bit set in value and return the index
     of that bit.

     Bits are numbered starting at 1 (the least significant bit).  A return value of zero from
     any of these functions means that the argument was zero.

SEE ALSO
     bitstring(3)

HISTORY
     The ffs() function appeared in 4.3BSD.  Its prototype existed previously in <string.h>
     before it was moved to <strings.h> for IEEE Std 1003.1-2001 (``POSIX.1'') compliance.

     The ffsl(), fls() and flsl() functions appeared in FreeBSD 5.3.  The ffsll() and flsll()
     functions appeared in FreeBSD 7.1.

BSD					 October 26, 2008				      BSD


Posted by 깍수
,

Android.mk 파일에 $(warning xxxx) 를 사용하면 해당 메세지가 출력 되는 것을 볼 수 있다.


예) 단순히 내용 출력

- Android.mk

$(warning ######  Start)


- 출력 결과

######  Start


예) 환경 변수를 확인할 경우

- Android.mk

ENABLE_WEBGL := true


$(warning ######  Check 1 WEBGL : $(ENABLE_WEBGL)  )


- 출력 결과

######  Check 1 WEBGL : true


'android > Platform' 카테고리의 다른 글

TI의 안드로이드 PortingGuide 링크  (0) 2014.12.02
Posted by 깍수
,

Memory (Shift+Alt+M) 창을 열려면 Set Dump Address 이름으로 Pop-up 창이 뜨게 되는데

Dump Address / Expression 에 해당 메모리 정보를 입력 한다. 단 Linux 환겨일 경우 MMU에 의해 Virtual Memory

주소를 사용해야 하기 때문에 주소 앞에 "A:"를 넣어 준다. ex) A:7E00F114

그리고 Memory Type에 PM으로 선택하면 된다.



Posted by 깍수
,



Posted by 깍수
,

* 2012.07 버젼의 u-boot

해당 버젼의 u-boot의 경우 GPT를 인식 못 하기 때문에 MBR을 사용해야 하면 LK Boot의 경우 MBR과 GPT를

모두 인식 하기 때문에 어떤 것을 사용해도 무방하다.


'android' 카테고리의 다른 글

ramdisk-uboot.img 수정  (0) 2014.06.30
특정 모듈에 대해서만 build 하는 방법  (0) 2014.02.05
ODROID-A T-flash map  (0) 2013.12.24
android platform 빌드 하기  (0) 2013.12.23
[Tip] android platform version 정보 확인  (0) 2013.12.11
Posted by 깍수
,

ubuntu 12.04 source list

Tip 2014. 9. 29. 20:54

deb http://ftp.daum.net/ubuntu/ precise main restricted
deb-src http://ftp.daum.net/ubuntu/ precise main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ftp.daum.net/ubuntu/ precise-updates main restricted
deb-src http://ftp.daum.net/ubuntu/ precise-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://ftp.daum.net/ubuntu/ precise universe
deb-src http://ftp.daum.net/ubuntu/ precise universe
deb http://ftp.daum.net/ubuntu/ precise-updates universe
deb-src http://ftp.daum.net/ubuntu/ precise-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://ftp.daum.net/ubuntu/ precise multiverse
deb-src http://ftp.daum.net/ubuntu/ precise multiverse
deb http://ftp.daum.net/ubuntu/ precise-updates multiverse
deb-src http://ftp.daum.net/ubuntu/ precise-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://ftp.daum.net/ubuntu/ lucid-backports main restricted universe multiverse
# deb-src http://ftp.daum.net/ubuntu/ lucid-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu lucid partner
# deb-src http://archive.canonical.com/ubuntu lucid partner

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse
deb http://archive.canonical.com/ precise partner

Posted by 깍수
,