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 Arch Zone

  1. Arch Zone

    Sending MMS using AT commands

    please check this Sony Ericsson manual at page 133. what I did with SE K300 was like this 1. AT+CSCS="8859-1"<CR> 2. AT*EAPP=10<CR> 3. AT+CKPD="[[",20<CR> //capture an image, send 4. AT+CKPD="]]VVVV"<CR> 5. AT+CKPD="[[2C255527776["<CR>//back to "Insert Item" 6. AT+CKPD="][^["<CR> 7...
  2. Arch Zone

    syntax quantifying (sum)

    try this $regfile = "m8535.dat" $crystal = 16000000 Dim Tot As Integer Config Lcdpin = Pin , Rs = Portc.0 , E = Portc.2 , Db4 = Portc.4 Config Lcdpin = Pin , Db5 = Portc.5 , Db6 = Portc.6 , Db7 = Portc.7 Config Lcd = 16 * 2 Cursor Off Cls Config Timer0 = Counter , Edge = Falling Config Timer1...
  3. Arch Zone

    change distance unit cm to mm

    as far as i know, ultrasonic sensor has a limitation. with my own ultrasonic module, it can detect object if placed more than 10 cms. so you need to change your sensor type.
  4. Arch Zone

    Digital clock running is to late

    You use stop timer, then many line instructions, then start timer. its add more time cycles. Don't stop the timer, then reset timer1 value immediately at first line of interrupt service. Interupsi_timer1: Timer1 = 3035 Detik = Detik + 1 Writeeeprom Detik , 8 If Detik >= 60 Then...
  5. Arch Zone

    Will 5 sec a day delay in DS1307 RTC affect the time accuracy?

    If the your circuit is always on everyday, you can increase or decrease the clock of rtc as much as the deviation. From your problem, please do this calibration process e.g. at 0:00:06 AM. If you do the calibration when it's at 0:00:00 AM, then the clock 11:59:55 PM and when it becomes 00:00:00...
  6. Arch Zone

    lock bits of AVR (be broken?)

    haha... but that is a special skill of most cr*ckers, they don't have to write all codes. I mean it is a secret layer of PCB, at middle layer. Maybe you think it's a kind of secure socket layer :grin:
  7. Arch Zone

    lock bits of AVR (be broken?)

    Yes, but, if they have enough money to break the lock bits, they also have budget to pay a programmer to debug and skip the protection routines (cr*ck it). Add a secret layer will be the best.
  8. Arch Zone

    lock bits of AVR (be broken?)

    After install new battery and connect to computer, when initial code is sent by computer, the uC wiill check timer value (16 bits) and store it to first two byte data at address 12H - 13H. This is only for the first time, not for next operation since at 10H-11H have been filled with special...
  9. Arch Zone

    lock bits of AVR (be broken?)

    I used battery backup rtc with ram to store the serial number. when they take the chip to read it's memory, all data has been cleared.
  10. Arch Zone

    Serial EEPROM Interfacing_Microcontroller

    You need add paralel RAM and copy that Serial EEPROM data to it. After copying is complete, jump/call it. Or just use IAP type microcontroller with the same steps with the first one. But if all of you did is aimed to update your firmware, using bootlaoder is better.
  11. Arch Zone

    lock bits of AVR (be broken?)

    maybe you need add an external memory to store such as serial number.
  12. Arch Zone

    Read Write Eeprom in Bascom

    Timer and Counter? Sorry, i'm not sure what you want. Do you mean, it's like a Digital scoring board? Please try this, you can modify it as you like. $regfile = "attiny2313.dat" $crystal = 8000000 Dim Multiplier As Byte Dim Second As Byte Dim Score As Byte Ddrd = &H00 'Input Portd = &FF...
  13. Arch Zone

    [SOLVED] atmega16a bascom counter not work

    Ok, try this : $regfile = "m16def.dat" $crystal = 8000000 Const Tick = 10 Dim Y As Byte Config Lcd = 16 * 2 Config Lcdpin = Pin , Db4 = Porta.4 , Db5 = Porta.5 , Db6 = Porta.6 , Db7 = Porta.7 Config Lcdpin = Pin , E = Porta.2 , Rs = Porta.0 Config Lcdmode = Port Tccr0 = 6 Reset Ddrb.0 Ddrc...
  14. Arch Zone

    DIY Moving Message Display

    I just look at post #9, and that is awesome design. As that design add ULN2003, we told HC259 has no current output enough to drive all led in row. If you put 6 pcs, they will go dull, and the brightness can't be the same. When you enter character like : LLLLLL to the display, lowest row is...
  15. Arch Zone

    [SOLVED] atmega16a bascom counter not work

    if there's no problem, counted value will be updated every 500 ms as the delay. but i usually found TCCR0 value was not fill exactly as we need. On your program, the value of TCCR0 will be &H01, but we need &H06 (maybe it's a bug of BASCOM). This &H01 means you set timer0 as timer with no...

Part and Inventory Search

Back
Top