Китайская Arduino UNO

Тема в разделе "Arduino & Shields", создана пользователем DevilOfDeath, 19 июн 2014.

  1. Unixon

    Unixon Оракул Модератор

    Какая еще условная совместимость? Ардуина программно представляет собой точно такой же порт, переименованный исключительно для наглядности.

    Посмотрите, что из себя представляют так называемые "драйвера" ардуины. Там один только inf файл в котором устройство с VID/PID ардуины привязывается к стандартному драйверу usbser. Всё. Кроме этого переименования больше ничего не делается.
     
    Последнее редактирование: 20 июн 2014
  2. zyto

    zyto Нуб

    Автор, отпишись, пожалуйста по результатам - удалось ли заставить работать...
     
  3. DevilOfDeath

    DevilOfDeath Нуб

    ничего не помогло, жду нормальный ардуино и попробую перешить китайский.
     
  4. Ragga

    Ragga Нуб

    Мне с подобной ошибкой на очень похожей плате (CH340) помогла прошивка бутлоадера через китайский же mini pro (90р). План Б был купить отдельно ATmega328P уже прошитую (75р).
     
  5. DevilOfDeath

    DevilOfDeath Нуб

    Восстановил, т.е. перепрошил бутзагрузчик китайского ардуино с помощью оригинального ардуино.
    теперь заработал.
    :)
     
  6. bujanoff

    bujanoff Нуб

  7. Mongoose

    Mongoose Нуб

    Китайская была с МК в smd исполнении?
    Такая же проблема, МК atmega328p в smd, можно-ли его прошить бутлодером другой ардуиной не выпаивая из платы?
     
  8. Airbus

    Airbus Радиохулиган Модератор

    У меня такое было-этим и спасся!
    Такое тоже было-перешивал
    Долго это да и смысла нет-проще Лодыря переписать
     
  9. DevilOfDeath

    DevilOfDeath Нуб

    не обязательно вытаскивать проц.
    можно параллельно подключить к нормально плате и зашить бут.
    на ютубе видеинструкция была,
    к сожалению не сохранил ссылку.
     
  10. Зачем китайскую Arduino Uno купил?
     
  11. Tomasina

    Tomasina Сушитель лампочек Модератор

    наверное затем, что они стоят по 173 руб. против 1790 р. за оригинальные, а работают точно также.
    Разве при одних и тех же затратах сделать 10 поделок вместо одной - не искушение?
    А иногда возникающая криворукость китайцев легко исправляется дружным сообществом ;)
     
  12. DrProg

    DrProg Вечный нерд

    А мне нравятся китайские Pro Mini для отливания поделок "в мраморе". Дешево и надежно, пока проблем с ними не видел.
     
  13. DevilOfDeath

    DevilOfDeath Нуб

    Да, она на много дешевле )
    Бывает, что прошивка у них слитает, либо вообще нету )
     
  14. а зачем покупать оригинал?
     
  15. Megakoteyka

    Megakoteyka Оракул Модератор

    Чтобы разработчики ардуино получили свой профит, например.
     
  16. Рамиль

    Рамиль Нуб

    Добрый вечер!

    У меня ардуино UNO китайского производства. Драйвер установлер. При попытке залить ARDUINO ISP пишет:

    Размер скетча в двоичном коде: 5 492 байт (из 32 256 байт максимум)
    avrdude: stk500_getsync(): not in sync: resp=0x00
    Далее при попытке залить ATTINY 13 - Blink.ino:10:21: error: Arduino.h: No such file or directory
    Blink.ino: In function 'void setup()':
    Blink:15: error: 'OUTPUT' was not declared in this scope
    Blink:15: error: 'pinMode' was not declared in this scope
    Blink.ino: In function 'void loop()':
    Blink:20: error: 'HIGH' was not declared in this scope
    Blink:20: error: 'digitalWrite' was not declared in this scope
    Blink:21: error: 'delay' was not declared in this scope
    Blink:22: error: 'LOW' was not declared in this scope
    Пожалуйста, дайте совет?
     
  17. Как говорится: СКЕТЧ В Студию!!!
     
  18. Рамиль

    Рамиль Нуб

    // ArduinoISP version 04m3
    // Copyright (c) 2008-2011 Randall Bohn
    // If you require a license, see
    // http://www.opensource.org/licenses/bsd-license.php
    //
    // This sketch turns the Arduino into a AVRISP
    // using the following arduino pins:
    //
    // pin name: not-mega: mega(1280 and 2560)
    // slave reset: 10: 53
    // MOSI: 11: 51
    // MISO: 12: 50
    // SCK: 13: 52
    //
    // Put an LED (with resistor) on the following pins:
    // 9: Heartbeat - shows the programmer is running
    // 8: Error - Lights up if something goes wrong (use red if that makes sense)
    // 7: Programming - In communication with the slave
    //
    // 23 July 2011 Randall Bohn
    // -Address Arduino issue 509 :: Portability of ArduinoISP
    // http://code.google.com/p/arduino/issues/detail?id=509
    //
    // October 2010 by Randall Bohn
    // - Write to EEPROM > 256 bytes
    // - Better use of LEDs:
    // -- Flash LED_PMODE on each flash commit
    // -- Flash LED_PMODE while writing EEPROM (both give visual feedback of writing progress)
    // - Light LED_ERR whenever we hit a STK_NOSYNC. Turn it off when back in sync.
    // - Use pins_arduino.h (should also work on Arduino Mega)
    //
    // October 2009 by David A. Mellis
    // - Added support for the read signature command
    //
    // February 2009 by Randall Bohn
    // - Added support for writing to EEPROM (what took so long?)
    // Windows users should consider WinAVR's avrdude instead of the
    // avrdude included with Arduino software.
    //
    // January 2008 by Randall Bohn
    // - Thanks to Amplificar for helping me with the STK500 protocol
    // - The AVRISP/STK500 (mk I) protocol is used in the arduino bootloader
    // - The SPI functions herein were developed for the AVR910_ARD programmer
    // - More information at http://code.google.com/p/mega-isp

    #include "pins_arduino.h"
    #define RESET SS

    #define LED_HB 9
    #define LED_ERR 8
    #define LED_PMODE 7
    #define PROG_FLICKER true

    #define HWVER 2
    #define SWMAJ 1
    #define SWMIN 18

    // STK Definitions
    #define STK_OK 0x10
    #define STK_FAILED 0x11
    #define STK_UNKNOWN 0x12
    #define STK_INSYNC 0x14
    #define STK_NOSYNC 0x15
    #define CRC_EOP 0x20 //ok it is a space...

    void pulse(int pin, int times);

    void setup() {
    Serial.begin(19200);
    pinMode(LED_PMODE, OUTPUT);
    pulse(LED_PMODE, 2);
    pinMode(LED_ERR, OUTPUT);
    pulse(LED_ERR, 2);
    pinMode(LED_HB, OUTPUT);
    pulse(LED_HB, 2);
    }

    int error=0;
    int pmode=0;
    // address for reading and writing, set by 'U' command
    int here;
    uint8_t buff[256]; // global block storage

    #define beget16(addr) (*addr * 256 + *(addr+1) )
    typedef struct param {
    uint8_t devicecode;
    uint8_t revision;
    uint8_t progtype;
    uint8_t parmode;
    uint8_t polling;
    uint8_t selftimed;
    uint8_t lockbytes;
    uint8_t fusebytes;
    int flashpoll;
    int eeprompoll;
    int pagesize;
    int eepromsize;
    int flashsize;
    }
    parameter;

    parameter param;

    // this provides a heartbeat on pin 9, so you can tell the software is running.
    uint8_t hbval=128;
    int8_t hbdelta=8;
    void heartbeat() {
    if (hbval > 192) hbdelta = -hbdelta;
    if (hbval < 32) hbdelta = -hbdelta;
    hbval += hbdelta;
    analogWrite(LED_HB, hbval);
    delay(20);
    }


    void loop(void) {
    // is pmode active?
    if (pmode) digitalWrite(LED_PMODE, HIGH);
    else digitalWrite(LED_PMODE, LOW);
    // is there an error?
    if (error) digitalWrite(LED_ERR, HIGH);
    else digitalWrite(LED_ERR, LOW);

    // light the heartbeat LED
    heartbeat();
    if (Serial.available()) {
    avrisp();
    }
    }

    uint8_t getch() {
    while(!Serial.available());
    return Serial.read();
    }
    void fill(int n) {
    for (int x = 0; x < n; x++) {
    buff[x] = getch();
    }
    }

    #define PTIME 30
    void pulse(int pin, int times) {
    do {
    digitalWrite(pin, HIGH);
    delay(PTIME);
    digitalWrite(pin, LOW);
    delay(PTIME);
    }
    while (times--);
    }

    void prog_lamp(int state) {
    if (PROG_FLICKER)
    digitalWrite(LED_PMODE, state);
    }

    void spi_init() {
    uint8_t x;
    SPCR = 0x53;
    x=SPSR;
    x=SPDR;
    }

    void spi_wait() {
    do {
    }
    while (!(SPSR & (1 << SPIF)));
    }

    uint8_t spi_send(uint8_t b) {
    uint8_t reply;
    SPDR=b;
    spi_wait();
    reply = SPDR;
    return reply;
    }

    uint8_t spi_transaction(uint8_t a, uint8_t b, uint8_t c, uint8_t d) {
    uint8_t n;
    spi_send(a);
    n=spi_send(b);
    //if (n != a) error = -1;
    n=spi_send(c);
    return spi_send(d);
    }

    void empty_reply() {
    if (CRC_EOP == getch()) {
    Serial.print((char)STK_INSYNC);
    Serial.print((char)STK_OK);
    }
    else {
    error++;
    Serial.print((char)STK_NOSYNC);
    }
    }

    void breply(uint8_t b) {
    if (CRC_EOP == getch()) {
    Serial.print((char)STK_INSYNC);
    Serial.print((char)b);
    Serial.print((char)STK_OK);
    }
    else {
    error++;
    Serial.print((char)STK_NOSYNC);
    }
    }

    void get_version(uint8_t c) {
    switch(c) {
    case 0x80:
    breply(HWVER);
    break;
    case 0x81:
    breply(SWMAJ);
    break;
    case 0x82:
    breply(SWMIN);
    break;
    case 0x93:
    breply('S'); // serial programmer
    break;
    default:
    breply(0);
    }
    }

    void set_parameters() {
    // call this after reading paramter packet into buff[]
    param.devicecode = buff[0];
    param.revision = buff[1];
    param.progtype = buff[2];
    param.parmode = buff[3];
    param.polling = buff[4];
    param.selftimed = buff[5];
    param.lockbytes = buff[6];
    param.fusebytes = buff[7];
    param.flashpoll = buff[8];
    // ignore buff[9] (= buff[8])
    // following are 16 bits (big endian)
    param.eeprompoll = beget16(&buff[10]);
    param.pagesize = beget16(&buff[12]);
    param.eepromsize = beget16(&buff[14]);

    // 32 bits flashsize (big endian)
    param.flashsize = buff[16] * 0x01000000
    + buff[17] * 0x00010000
    + buff[18] * 0x00000100
    + buff[19];

    }

    void start_pmode() {
    spi_init();
    // following delays may not work on all targets...
    pinMode(RESET, OUTPUT);
    digitalWrite(RESET, HIGH);
    pinMode(SCK, OUTPUT);
    digitalWrite(SCK, LOW);
    delay(50);
    digitalWrite(RESET, LOW);
    delay(50);
    pinMode(MISO, INPUT);
    pinMode(MOSI, OUTPUT);
    spi_transaction(0xAC, 0x53, 0x00, 0x00);
    pmode = 1;
    }

    void end_pmode() {
    pinMode(MISO, INPUT);
    pinMode(MOSI, INPUT);
    pinMode(SCK, INPUT);
    pinMode(RESET, INPUT);
    pmode = 0;
    }

    void universal() {
    int w;
    uint8_t ch;

    fill(4);
    ch = spi_transaction(buff[0], buff[1], buff[2], buff[3]);
    breply(ch);
    }

    void flash(uint8_t hilo, int addr, uint8_t data) {
    spi_transaction(0x40+8*hilo,
    addr>>8 & 0xFF,
    addr & 0xFF,
    data);
    }
    void commit(int addr) {
    if (PROG_FLICKER) prog_lamp(LOW);
    spi_transaction(0x4C, (addr >> 8) & 0xFF, addr & 0xFF, 0);
    if (PROG_FLICKER) {
    delay(PTIME);
    prog_lamp(HIGH);
    }
    }
     
  19. Рамиль

    Рамиль Нуб

    Здравствуйте! Записал скетч BLINK в Ардуино, свтодиод L заморгал. Теперь как мне вернуться к перврначальному состоянию? Или другими словами сделать так, чтобы светодиод престал моргать? Заранее спасибо!
     
  20. Рамиль

    Рамиль Нуб

    Выдергиваю шнур из дуино - перестает моргать, вставляю-опять моргает! Так и должно быть?