Giter Club home page Giter Club logo

Comments (6)

elektron-bbs avatar elektron-bbs commented on May 24, 2024 1

Das ist ein Bug in der Firmware, es wird immer diese Frequenz, unabhängig von der verwendeten, in der Versionsausgabe angegeben.

from signalesp.

sidey79 avatar sidey79 commented on May 24, 2024 1

@RaiderXXL

Ich habe die Ausgabe angepasst. In der Nächsten Firmware wird es dann behoben sein.

from signalesp.

DuschdrBabbe avatar DuschdrBabbe commented on May 24, 2024

Danke, hab ich auch erst bemerkt als trotzdem Geräte automatisch angelegt wurden...

from signalesp.

sidey79 avatar sidey79 commented on May 24, 2024

Eigentlich sollte das aus dem cc1101 Modul ausgelesen werden .

Ihr seit ganz sicher, dass ihr ein 433 Modul habt?

from signalesp.

DuschdrBabbe avatar DuschdrBabbe commented on May 24, 2024

Zumindest hab ich 5 Stück bestellt und empfange auch 433 Geräte.... einer läuft auch als NanoCUL mit aculfw kann gerne morgen noch Bilder des Moduls Posten

from signalesp.

elektron-bbs avatar elektron-bbs commented on May 24, 2024

@sidey79
Da wird auch etwas aus den Registern ausgelesen, nur hat die Chipversion nichts mit der verwendeten Frequenz zu tun.

if (hasCC1101) {
  MSG_PRINT(F("cc1101"));
  switch(cc1101::chipVersion()) {

// case 0x08: // CC1101_VERSION 0x31
case 0x18: // CC1101_VERSION 0xF1
MSG_PRINT(F(" 433MHz"));
break;
case 0x04: // CC1101_VERSION 0x31
case 0x14: // CC1101_VERSION 0xF1
MSG_PRINT(F(" 868MHz"));
break;
}
}

Ich hatte das dann mal für mich geändert in:

if (hasCC1101) {
  MSG_PRINT(F(" cc1101"));
  /*
    PARTNUM       | VERSION      | Radio
    ------------- | ------------ | ------
    0             | 3            | CC1100
    0             | 4            | CC1101
    0             | 5            | CC1100E
    0             | 6            | CC430 RF1A
    0             | 7            | CC110L
    0             | 14           | CC1101 newer version
  */
  switch(cc1101::chipVersion()) {
    case 0x03:
      MSG_PRINT(F(" Chip:CC1100"));
      break;
    case 0x04:
      MSG_PRINT(F(" Chip:CC1101"));
      break;
    case 0x05:
      MSG_PRINT(F(" Chip:CC1100E"));
      break;
    case 0x07:
      MSG_PRINT(F(" Chip:CC110L"));
      break;
    case 0x14:
      MSG_PRINT(F(" Chip:CC1101"));
      break;
    default:
      MSG_PRINT(F(" Chip:unknown"));
      break;
  }
}

from signalesp.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.