전체상품목록 바로가기

본문 바로가기

오늘하루 열지않기

전체상품목록 바로가기

본문 바로가기


 
이전 제품 보기 다음 제품 보기
추천메일 보내기 상품조르기 대량구매문의

MSP430F149 개발보드 (MSP430F149 Board) (해외배송 가능상품)

기본 정보
판매가(VAT별도) 13,980원
상품코드 P0000SZY
수량 수량증가수량감소
상품요약정보 MSP430F149 MCU를 탑재한 개발보드입니다.
색상 옵션
SNS 상품홍보
SNS 상품홍보

개인결제창을 통한 결제 시 네이버 마일리지 적립 및 사용이 가능합니다.

상품 옵션

(최소주문수량 1개 이상 / 최대주문수량 0개 이하)

수량을 선택해주세요.

위 옵션선택 박스를 선택하시면 아래에 상품이 추가됩니다.

상품 목록
상품명 상품수 가격
MSP430F149 개발보드 (MSP430F149 Board) 수량증가 수량감소 (  )
총 상품금액(수량) : 0 (0개)
바로구매하기 장바구니 담기 SOLD OUT 관심상품등록

재고안내

  • 상품의 실시간 재고는 네이버 페이 버튼 옆 상담 톡톡 버튼 으로 문의 주시면 더 빠르게 답변이 가능합니다

  • 품목이 많으실 경우는 견적서 출력 후 견적서 출력하신 분의 성함을 알려주시면 빠른 답변이 가능합니다

 

회원가입안내

  • 1. 회원가입 후 무통장 결제시

    할인 쿠폰의 사용이 가능
  • 2. 문의 게시판을 통한 기술지원

  • 3. 신규회원 가입시 2,00원 적립

  • 4. 주문/배송 내역 SMS 발송

회원가입

이벤트




 

MSP430F149 개발보드

(MSP430F149 Board)

aeProduct.getSubject()

개요

  • 본 제품은 MSP430F149 MCU를 탑재한 개발보드입니다.
  • MSP430시리즈를 개발하거나 학습할때 사용하기 좋은 보드입니다.

특징

  • Onboard USB BSL program download PL2303HX, you can download the program for itself or other board. High quality capactiors.
  • Comes with 2 independent button input.
  • Onboard manual reset button.
  • Wireless NRF24L01 connector
  • Comes with 4 test LEDs
  • Buzzer circuit, can be used to play music
  • Provide 32.768KHZ and 8MHZ two crystal connection
  • Using standard JTAG interface (14-pin), support hardware simulation.
  • All IO ports (including AD power, etc.) are led (not welded pin, can be up or down welding).
  • Provide 3.3v and 5v output power supply pin.
  • The board itself can be completed part of the experiment, also be directly inserted into the use of protoyping board, expand more features.
  • Packages include:
    • MSP430f149 (mini430) mini development board
    • Male to Male extension cable
    • 2 sets of copper pillars

문서

  • flash tool
  • Programming
    • Use on board PL2303 USB-TTL programmer, and connect as follow:
    RXD - P11  TXD - P22  RTS - TCK  DTR - RST  GND - GND  
    • Target board should also be powered independently.
    • To use regularly, remove all the connection jumpers, and set
    RXD - P34  TXD - P35  
    • To download programe, open software MSPFET, open download file, turn on board power, use "AUTO" to download
  • Troubleshooting
    • Erase failed. Synchronization error. - this is normally a wiring problem.
    • Init failed. Could not open port. - check serial uart setttings, com port, baudarate, driver, etc.
  • Tutorial

    IO Features

    • MSP430 port has P1, P2, P3, P4, P5, P6, S and COM (different models, including the port is not only the same, such as MSP430X11X series only P1, P2 port, and MSP430X4XX series contains all the ports) Can be used directly for input / output.
    • MSP430 system does not have special input / output instructions, input / output operations through the transfer instruction to achieve. Each bit of port P1`P6 can be used independently for input / output, that is, with bit addressing.
    • Common keyboard interface can be directly used to simulate the port, with the query or interrupt control.
    • As the MSP430 port only data port, no status port or control port, in practical applications, such as in the query input / output transmission, you can use a port or a few bits to send the status information, by querying the corresponding bit State to determine whether the peripheral is in the "ready" state.

    Port function

    1. P1, P2 port: I / O, interrupt function, other on-chip peripheral functions such as timers, comparators;
    2. P3, P4P5P6 port: I / O, other on-chip peripheral functions such as SPI, UART mode, A / D conversion, etc .; (3) S, COM port: I / O, drive LCD.
    • MSP430 ports have a wealth of control registers for users to achieve the appropriate operation.
    • Where P1 and P2 have seven registers and P3 to P6 have four registers. By setting the register we can implement:
    1. each I / O bit is programmed independently;
    2. any combination of input, output and interrupt;
    3. P1, P2 All 8 bits can all be used as external interrupt handling;
    4. can be used so the instruction to register operation;
    5. can be byte input, output, can also be bit by bit operation.
    • The functions of ports P1 and P2 can be implemented by their seven control registers. Here, Px stands for P1 or P2.
    1. PxDIR: input / output direction register. 8 bits are independent of each other, can be defined 8 pin input / output direction. 8 bits are reset after PUC. When using the input / output function, you should first define the direction of the port. As input can only be read, as output, readable and writable. 0: input mode; 1: output mode. Such as: P1DIR | = BIT4; //P1.4 output, P2DIR = 0XF0; // high 4-bit output, low 4-bit input.
    1. PXIN: input register, read-only register. The user can not write it, only by reading the contents of its register to know the I / O port input signal. So the direction of its pin to be selected as input. Such as re-keyboard keyboard scanning program often read the line or column line port register value to determine the case. For example: unsigned char key;
    P1DIR & = ~ BIT4; //P1.4 input  ...  Key = P1IN & 0X10; // output port P1.4 value  ...  
    1. PXOUT: output register. This register is the output buffer register of the I / O port, and the contents of the output buffer are read regardless of the pin direction definition. Change the contents of the direction register, the contents of the output cache are not affected. Such as: PIOUT | = 0X01; //P1.0 output 1, PIOUT & = ~ 0X01; //P1.0 output 0.
    1. PXIFG: interrupt flag register. His 8 flags indicate whether the corresponding pin has an interrupt request pending. 0: no interrupt request, 1: interrupt request. The interrupt flag is PXIFG.0 ~ PXIFG.7. It should be noted that: PXIFG.0 ~ PXIFG.7 share an interrupt vector, for multi-source interrupt. When any of the events caused by the interruption of processing, PXIFG.0 ~ PXIFG.7 will not automatically reset, must be determined by the software which is the event, and the corresponding logo reset. In addition, the external interrupt event time must be maintained at no less than 1.5 times the MCLK time to ensure that the interrupt request is accepted and the corresponding interrupt flag bit is set.
    1. PXIES: Interrupt Trigger Edge Select Register. If a pin of the port is allowed to be interrupted, it is also necessary to define the interrupt trigger mode for this pin. 0: rising edge triggers the corresponding flag to be set, 1: falling edge triggers the corresponding flag to be set. Such as: MOV.B # 07H, & P1IES; p1 Low 3-bit falling edge triggers an interrupt.
    1. PXIE: Interrupt enable register. Each port of the PX port has a bit to control whether the pin is allowed to be interrupted. 0: disable interrupt, 1: enable interrupt. MOV.B # 0E0H, & P2IE; P2 high 3 bits are allowed to interrupt.
    1. PXSEL: Function selection register. P1, P2 two ports also have other on-chip peripherals function, these functions and external contact with the chip through the multiplexing P1, P2 pin way to achieve. PXSEL is used to select the I / O port function of the pin and the peripheral module function. 0: select pin for I / O port, 1: select pin for peripheral module function. Such as: P1SEL | = 0X10; //P1.4 for the peripheral module function.
    •  Ports P3, P4, P5, P6 no interrupt capability, the rest with the same PI, P2. Remove the three registers associated with the interrupt P1, P2 and the three registers, ports P3, P4, P5, P6 of the four registers (usage with P1, P2) were PXDIR, PXIN, PXOUT, PXSEL available to users.
    •  Ports COM and S, they achieve a direct interface with the LCD chip. COM is the common terminal of the liquid crystal chip, and S is the segment terminal of the liquid crystal chip. The LCD chip output can also be configured as a digital output port via software

연관제품

상품결제정보

결제는 신용카드, 실시간 계좌이체, 무통장 입금 등을 선택하여 진행하실 수 있습니다. 세금계산서 발행을 요청하실 경우에는 결제방법을 무통장 입금으로 선택하시고 사업자등록증 사본을 cs@vctec.co.kr으로 보내주셔야 합니다.

배송정보

  • 배송 방법 : 택배
  • 배송 지역 : 전국지역
  • 배송 비용 : 3,500원
  • 배송 기간 : 1일 ~ 10일
  • 배송 안내 : - 산간벽지나 도서지방은 별도의 추가금액을 지불하실 수 있습니다.
    - 상품종류에 따라서 상품의 배송이 다소 지연될 수 있습니다.
    - 구매 총액이 10만원 미만의 주문 경우는 택배발송시에는 배송비 3,500원이 추가됩니다.
    - 구매 총액 10만원 미만 주문의 퀵발송 및 급행처리 요청시 핸들링 비용 3,500원이 추가 됩니다.
    - 매장이 아니므로 방문구매 및 수령이 불가능 합니다.
    - 영업일 기준 2일 이내 미출고 물품은 해외 수입 제품입니다.
    - 높은 전압과 전류를 사용하는 제품은 사용 전 안전에 유의 바랍니다.
    - 제품을 교육수준으로 설명하거나 사용자 프로젝트에 대한 컨설팅이나 기술지원을 하지 않사오니 참고부탁 드립니다.

교환 및 반품정보

교환 및 반품안내
- 상품을 공급 받으신 날로부터 7일이내에 교환 및 반품이 가능하며,
- 미개봉/미설치 제품인 경우이거나 불량제품인 경우에 한해 가능합니다.

- 교환/반품시 승인 없이 제품을 먼저 발송시 왕복 택배비가 발생합니다.
- 상품가치가 훼손되어 재판매가 불가능 할 경우는 교환/반품이  불가능합니다.
- 소프트웨어는 개봉시 교환/반품이 불가능합니다.

- 주문수입제품의 경우는 환불/교환이 불가능합니다.

- 수입제품의 경우는 수리가 불가능합니다.
- 배송지연안내를 받으신 경우는 주문 수입되는 경우이며, 주문 수입 제품의 경우 환불/교환이 불가능합니다.

- 고객변심에 의한 교환 및 반품 시 왕복 배송비는 고객님께서 부담하셔야 합니다.
- 제품구성품 및 스펙은 제조사 사정에 의해 예고없이 변경 될수도 있습니다.

서비스문의

기술문의는 상품Q&A 및 상단의 "제품문의" 게시판으로만 답변을 드리고 있사오니, 게시판에 문의 요청 드립니다.
견적서 출력 및 주문서작성 시에는 브라우저의 팝업창 해제를 취소하셔야 해당 창이 나타납니다.

제품리뷰

제품 리뷰를 적어주세요.

게시물이 없습니다

상품문의하기 모두 보기

상품 Q&A

상품에 대해 궁금한 점을 해결해 드립니다.

게시물이 없습니다

상품문의하기 모두 보기

 

이전 제품  
다음 제품