• 전문가 요청 쿠폰 이벤트
*인*
Bronze개인
팔로워0 팔로우
소개
등록된 소개글이 없습니다.
전문분야 등록된 전문분야가 없습니다.
판매자 정보
학교정보
입력된 정보가 없습니다.
직장정보
입력된 정보가 없습니다.
자격증
  • 입력된 정보가 없습니다.
판매지수
전체자료 15
검색어 입력폼
  • 스텝모터 제어기
    MOT2_ROT library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; entity mot2_rot is port( CLK_4M, RSTB, MTP_SW1, MTP_SW2, MTP_SW3, MTP_SW4 : in std_logic MTR_A, MTR_B, MTR_nA, MTR_nB, MTL_A, MTL_B, MTL_nA, MTL_nB : out std_logic ); end mot2_rot; architecture behave of mot2_rot is signal key_in_l : std_logic_vector(1 downto 0); signal key_in_r : std_logic_vector(1 downto 0); signal speed_l : integer range 0 to 25000; signal speed_r : integer range 0 to 25000; signal motor_lcnt : integer range 0 to 25000; signal phase_lclk : std_logic; signal motor_rcnt : integer range 0 to 25000; signal phase_rclk : std_logic; signal phase_lcnt : std_logic_vector(1 downto 0); signal phase_lout : std_logic_vector(3 downto 0); signal phase_rcnt : std_logic_vector(1 downto 0); signal phase_rout : std_logic_vector(3 downto 0); begin key_in_l <= (MTP_SW1 & MTP_SW2); key_in_r <= (MTP_SW3 & MTP_SW4);
    공학/기술| 2012.10.30| 6페이지| 1,500원| 조회(161)
    미리보기
  • 비동기카운터 클럭
    CNT_4 Library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; entity cnt_4 is port( clk : in std_logic; rst : in std_logic; cnt_out : buffer std_logic_vector(3 downto 0); clk_out : buffer std_logic ); end cnt_4; architecture behave of cnt_4 is signal temp : std_logic_vector(2 downto 0):="000"; begin process(clk, rst) begin if rst=`1` then if clk`event and clk=`1` then cnt_out<=cnt_out + 1; end if; else cnt_out<="0000"; end if; end process; process(clk, rst) begin if rst=`0` then temp<="000"; clk_out<=`0`; else if clk`event and clk=`1` then temp <= temp + 1; if temp="100" then temp<="000"; clk_out <= not clk_out; end if; end if; end if; end process; end behave;
    공학/기술| 2012.10.30| 6페이지| 1,500원| 조회(69)
    미리보기
  • 비교기설계
    1Bit Library IEEE; use IEEE.std_logic_1164.all; entity bit_1 is port( A, B : in std_logic; EQ : out std_logic ); end bit_1; architecture behave_bit_1 of bit_1 is begin process(A, B) begin if A = B then EQ <= `1`; else EQ <= `0`; end if; end process; end behave_bit_1; ? 1Bit Test Bench Library IEEE; use IEEE.std_logic_1164.all; entity tb_bit_1 is end tb_bit_1; architecture tb_behave of tb_bit_1 is signal A, B, EQ : std_logic; component bit_1 port( A, B : in std_logic; EQ : out std_logic ); end component;
    공학/기술| 2012.10.30| 4페이지| 1,500원| 조회(77)
    미리보기
  • 메모리설계
    RAM Library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; entity ram is port( CE, RD, WR : in std_logic; ADDR, IN_DATA : in std_logic_vector(3 downto 0); OUT_DATA : out std_logic_vector(3 downto 0) :=(others=>`0`) ); end ram; architecture behave of ram is type RAM_WORD is array (0 to 15) of std_logic_vector(3 downto 0); signal RAM_DATA : RAM_WORD := ("0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000", "0000"); begin process(CE, RD, WR, ADDR, IN_DATA) begin if (CE=`0`) then if (WR=`0`) then RAM_DATA(conv_integer(ADDR))<=IN_DATA; elsif (WR=`1` and RD=`0`) then OUT_DATA<=RAM_DATA(conv_integer(ADDR)); end if; end if; end process; end behave;
    공학/기술| 2012.10.30| 3페이지| 1,500원| 조회(116)
    미리보기
  • 동기카운터 클럭
    CNT0 -- 비동기 카운터의 4비트 카운터에서 clk_out값만 빼고 설계 Library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; entity cnt0 is port( clk, rst : in std_logic; cnt_out : buffer std_logic_vector(3 downto 0) ); end cnt0; architecture behave of cnt0 is begin process(clk, rst) begin if rst = `1` then if clk`event and clk =`1` then cnt_out <= cnt_out+`1`; end if; else cnt_out <= "0000"; end if; end process; end behave; CNT1 Library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; entity cnt1 is port( clk, rst : in std_logic; cnt_out : buffer std_logic_vector(3 downto 0) ); end cnt1; architecture behave of cnt1 is signal add : std_logic_vector(2 downto 0):=(others => `0`);-- clk상승을 세기위한 임시 신호 add signal divi : std_logic:=`0`;-- add에 따라 분주를 나누기 위한 임시 신호 divi begin process(clk, rst) begin if rst = `1` then if clk`event and clk =`1` then if add = "100" then add <= (others => `0`);
    공학/기술| 2012.10.30| 9페이지| 1,500원| 조회(126)
    미리보기
전체보기
받은후기 3
3개 리뷰 평점
  • A+최고예요
    2
  • A좋아요
    1
  • B괜찮아요
    0
  • C아쉬워요
    0
  • D별로예요
    0
전체보기
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2026년 04월 17일 금요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
8:24 오후
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감