Contenu récent par pepelxl

  1. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    Has anyone managed to make friends with RCC/NAC old dashboards? I have CIROCCO for SMEG. I don't want to change it to a new one because of other graphic themes. The problem is that the dashboard accepts strings of track names with null-terminator, and RCC sends messages without null-terminator...
  2. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    IVI has the same set of encodings as all other multimedia.
  3. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    https://github.com/pepelxl/psa_coder I have uploaded the software, if you wish, then add a description via the Pull Request button.The reason for the creation of the software is the incorrect mask ratio in alternative programs.
  4. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    maybe later, now there is no time to work on software.
  5. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    I can see the arguments for sorting the list, but I can't change the order to rcc w3. does anyone have any ideas?
  6. P

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    It's already included in Ludwig's sketch.
  7. P

    photo des entrailles RCC

    Merci
  8. P

    photo des entrailles RCC

    Je cherche des photos des entrailles de RCC W2 W3. Particulièrement intéressé par wave 3. Mais les options wave 2 sont prêtes à regarder, il y en a 6. maintenant, il n'y a que des photos de single antenna. Nous avons besoin de bonne qualité pour que les marques de puces soient visibles.
  9. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    I’ll ask here as the topic with the largest number of views and the presence of people who know how to juggle firmware, does anyone have a .cal file for smegIV2 with firmware 6.4? I need it from any car.
  10. P

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    @VLud , 0e6 code can be optimized and reduced by half. I think your version will be cleaner and more practical.
  11. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    @gusao10 I gave up developing my software because it has an incorrect structure and a problem with communication with the vcp driver. The biggest problem is the lack of SEED for esp90 blocks. The only known password was posted by Ludwig, but it does not fit most blocks. Also, new revisions have...
  12. P

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    __u8 checksumm0E6(const __u8* frame) { /* Autors: organizer of the bacchanal: styleflava algorithm: Ilia code: Pepelxl */ static __u8 iter = 0; __u8 cursumm = 0; for (__u8 i = 0; i < 7; i++) { cursumm += (frame[i] >> 4) + (frame[i] & 0x0F)...
  13. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    mask is not an xor, but the value of the bit indicating the encoding location.
  14. P

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    I assume you have the second option, since the first byte in your encoding is 0x06 and this offset is called "CONFIG_INDICE_TELECODAGE". Such a byte is available in most modern ECUs, and I assume that the developers control the encoding string variant with it. The first option provided by me...