Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by bigreat

  1. B

    C6713 DSK, windows Vista, CCS 3.1 connection problem

    ccs vista Hi, I made it works on Vista (core 2). Very simple, just run the driver and CSS in compatible model. ahmedseu, I'm actually a starter of C6713, and I need to use it for a school's project. If I meet some problems, may i contact you? Thank you
  2. B

    C6713 DSK, windows Vista, CCS 3.1 connection problem

    vista ccs HI, I just received the C6713 DSK, and I installed the CCS 3.1, drivers from the coming CD. However, I connected the DSK board to my laptop (VISTA OS) via USB, and ran 6713 DSK Diagnostics Utility v3.1. It said: ======================== Starting diagnostic test suite. -->...
  3. B

    Request answer to introduction to the design and analysis...

    Re: Request answer to introduction to the design and analysi Is anyone help me? :) :(
  4. B

    Request answer to introduction to the design and analysis...

    HI: I'm a senior high school student, and I study-myself the Anany Levitin's book: " introduction to the design and analysis of algorithm" because The book isnot my school 's official Book, So i can't download the answer from the publisher's web site. But I really need the answer to...
  5. B

    How to Use AVR To Find Fire

    how to use avr? Our School hold a competitions that who can use a machine find the fire(like the fire in the fireplace) as far as more than 100M away and the machine can do some reflection like light a LED, then he will win. I want use AVR to control the machine and do reflection. But I have...
  6. B

    Let's learn & build simple AVR project!Need ur participa

    Re: Let's learn & build simple AVR project!Need ur parti 4th: .include "m32def.inc" .def mp=r16 .def tm=r17 .def tm2=r18 .def shu=r19 .def max=r20 .def tm3=r21 ldi tm3,250 ldi max,23 ldi mp,0xff out ddrb,mp ldi mp,high(ramend) out sph,mp ldi mp,low(ramend) out spl,mp main: ldi...
  7. B

    Let's learn & build simple AVR project!Need ur participa

    Re: Let's learn & build simple AVR project!Need ur parti 3rd: .include "m32def.inc" .def mp=r16; .def tm=r17;timer 1 .def tm2=r18;timer2 .def tm3=r21;timer3 .def shu=r19;loop counter .def max=r20;max of loop ;.def num=r21 ;----ldi number--- ldi tm3,250 ldi max,23 ;ldi num,2 ;----dingyi0---- ldi...
  8. B

    Let's learn & build simple AVR project!Need ur participa

    Re: Let's learn & build simple AVR project!Need ur parti 2ed: #include "iom32.h" const unsigned char num[10]={0X3F,0X24,0X5D,0X75,0X66,0X73,0X7B,0X25,0X7F,0X77}; char i=0; void delay(unsigned long int delayValue) { unsigned long int a; for(a=0;a<delayValue;a++) ; } main() {...
  9. B

    Let's learn & build simple AVR project!Need ur participa

    my code: include "m32def.inc" .def mpr=r16 ldi mpr,0xff out ddrb,mpr read: ldi zh,high(mytable<<1) ldi zl,low(mytable<<1) ;adiw zl,4 ;lpm ;MOV R24,R0 ; Copy LSB to 16-bit register ADIW ZL,4 ; Point to MSB in program memory LPM ; Read MSB of table value MOV R25,R0 ; Copy MSB to 16-bit register...
  10. B

    Use A51 control nokia 3310 lcd

    nokia a51 sdin bit p1.1 sclk bit p1.0 dc bit p1.2 sce bit p1.3 res bit p1.4 xadd data 30h ;0-83 yadd data 31h ;0-5 lcdd data 32h org 0000h JMP start start: clr res nop nop setb res mov a,#00100001b...
  11. B

    Use C51 control nokia 3310 lcd

    #include <reg51.h> #define uchar unsigned char #define uint unsigned int sbit sdin=P1^3; sbit sclk=P1^4; sbit dc=P1^2; sbit sce=P1^1; sbit res=P1^0; void write_command(uchar dd) { char i; sce=0; dc=0; for(i=7;i>=0;i--) { sdin=(dd>>i)&1; sclk=0; sclk=1...
  12. B

    nokia 3310 lcd display question

    lcdupdate nokia 3310 i use atmega32l control nokia 3310 lcd. the code is from microsyl. these is my main code: #include "iom32.h" #include "nokialcd.c" void delay(unsigned long int); int as; void main() { LcdInit(); //init 3310 LCD LcdClear(); //clear 3310 LCD LcdUpdate(); //move...
  13. B

    Can Atmega32l use TWI control Nokia 3310 lcd

    thanx but it only a little difficult for me who is a beginner of avr.is there any more simple code? like display only a simple word or picture?
  14. B

    Can Atmega32l use TWI control Nokia 3310 lcd

    i have had a nokia 3310 lcd. and an atmega32l, the nokia 3310 lcd have an sda and an scl pin. can i use atmega32l twi control it? thanx
  15. B

    Problem with ports of Atmega32l PortC

    Atmega32l PortC question i do these code: .def mp=r16 ldi mp,0xff out ddrc,mp out portc,mp but i use a led test every one port of portc when i test pc0,1,6,7,the led is normally bright when i test pc2,3,5 the led is only a little bright when i test pc4,the led is went out what's the matter...

Part and Inventory Search

Back
Top