[4RS] Rajout du RS Monitor, possible ou pas ?

Un avis sur un poste, des HP ? Comment remplacer un siège ou un volant ? Tout est ici...

Modérateur : Team Clio RS Concept ®

Auteur Message
Avatar de l’utilisateur
JekoAtanasov
Nouveau Membre
Nouveau Membre
Messages : 15
Prénom : Jeko
Voiture : Megane RS 250
Departement : 4000
Slogan : Bulgaria

Rajout du RS Monitor, possible ou pas ?

Messagepar JekoAtanasov » lun. 7 mai 2018 16:30

Dernier message de la page précédente :

NovaS a écrit :You will not see the parking sensors with the version of BIC software that has the script 11.
Parking sensors work with the new BICs and software from 5.0 up.
There is no current way to make the sensors work.
Again, what is the SN from the BIC that has script 11.
Do you have such a BIC or not??
Mine BIC is soft version V05.10
Publicité
Annonce Clio RS Concept
Slogan : Si vous aimez le forum, ne me bloquez pas !!

Rajout du RS Monitor, possible ou pas ?

Messagepar Publicité » lun. 7 mai 2018 16:30

Avatar de l’utilisateur
Bugsounet
Nouveau Membre
Nouveau Membre
Messages : 38
Prénom : Cedric
Voiture : Clio 4 GT Line
Departement : 77
Slogan : Rien n'est impossible tant que l'on a pas essayé !

Rajout du RS Monitor, possible ou pas ?

Messagepar Bugsounet » lun. 7 mai 2018 20:12

Avatar de l’utilisateur
simrucci : do you have the same probleme like me on captur ?
Avatar de l’utilisateur
simrucci
Clioteux de Base
Clioteux de Base
Messages : 68
Voiture : captur
Slogan : share knowledge

Rajout du RS Monitor, possible ou pas ?

Messagepar simrucci » lun. 7 mai 2018 21:36

ouais, mais je crois que c'est normal... ça peut dependre de la configuration des scripts du bic, mais ça peut-etre aussi quelque chose d'autre... il faut attendre des news par NovaS ou ebt25


en plus, aujourd'hui j'ai essaye la version d'rs monitor pour megane... ça change rien pour moi... ça marche egalment... pas plus... les slots me fonctionnent sur les deux versions...
Avatar de l’utilisateur
Bugsounet
Nouveau Membre
Nouveau Membre
Messages : 38
Prénom : Cedric
Voiture : Clio 4 GT Line
Departement : 77
Slogan : Rien n'est impossible tant que l'on a pas essayé !

Rajout du RS Monitor, possible ou pas ?

Messagepar Bugsounet » lun. 7 mai 2018 21:49

J y avais pensé aussi de changer la version de rs monitor. J ai pas eu le courage de tout redemonter. Si tu as tester et que tu as le même problème. On va attendre
Avatar de l’utilisateur
AldaMore_CZ
Nouveau Membre
Nouveau Membre
Messages : 11
Prénom : Alda
Voiture : Laguna III GT
Departement : 91
Slogan : Renault

Rajout du RS Monitor, possible ou pas ?

Messagepar AldaMore_CZ » mer. 9 mai 2018 11:40

I'm afraid that if we can not decode the CAN and rewrite the values of the other units on the ARDUINO platform, we will not get the values there. I already built a unit and started to log in with BIC without script 11 and then with script 11. Unfortunately, I do not have much time, but from the initial data you can already find certain characters specific to script 11.
if you do so, you can use this program. Or if you already have a PID list on CAN, put it here.

#include <mcp_can.h>
#include <mcp_can_dfs.h>

#include <mcp_can.h>
#include <spi.h>
long unsigned int rxId;
unsigned int temp = 0x0;
unsigned char len = 0;
unsigned char rxBuf[8];
unsigned char stmp[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; // Plantilla de mensaje
MCP_CAN CAN1(5); // Configure CS para la recepción de 1 bus a pin 5
MCP_CAN CAN2(10); // Configure CS para enviar a 2 bus al pin 10
void setup()
{
Serial.begin(115200);
CAN1.begin(CAN_500KBPS, MCP_8MHz); // init can bus : baudrate = 500k / 8MHz
CAN2.begin(CAN_500KBPS, MCP_8MHz); // init can bus : baudrate = 500k / 8MHz
pinMode(2, INPUT); //Pin 2 para entrada INT
Serial.println("Started…"); // Salida iniciada ... al monitor del puerto}
void loop()
{
if(!digitalRead(2)) // If pin 2 is low, read receive buffer
{
CAN1.readMsgBuf(&len, rxBuf); // Lectura de datos: len = data length, buf = data byte (s)rxId = CAN1.getCanId(); // Recibimos el mensaje ID
if(rxId == 0x5DA){
Serial.print("TEMP: "); // Salida TEMP: al monitor del puerto
Serial.println(temp, HEX); // Salida de temperatura en el monitor de puerto en formato decimal
// Enviar un mensaje para restablecer el valor de temperatura en la pantalla
if(temp!=rxBuf[0]){
stmp[2]=0xFF;
}
CAN2.sendMsgBuf(0x558, 0, 8, stmp);
delay(10); // 10 ms de retraso
// Envía el mensaje configurando la nueva temperatura
temp=rxBuf[0];
stmp[2]=temp;
CAN2.sendMsgBuf(0x558, 0, 8, stmp);
}
// Transfiere datos a Driving ECO2
if(rxId == 0x646){
CAN2.sendMsgBuf(0x314, 0, 8, rxBuf);
Serial.print("ID1: ");
Serial.print(rxId, HEX);
Serial.print(" Data: ");
for(int i = 0; i<len; i++) // Print each byte of the data
{
if(rxBuf < 0x10) // If data byte is less than 0x10, add a leading zero
{
Serial.print("0");
}
Serial.print(rxBuf, HEX);
Serial.print(" ");
}
Serial.println();
}
}
}
Avatar de l’utilisateur
ebt25
Nouveau Membre
Nouveau Membre
Messages : 28
Prénom : ebt25
Voiture : Laguna III
Departement : 10
Slogan : not yet ;)

Rajout du RS Monitor, possible ou pas ?

Messagepar ebt25 » mer. 9 mai 2018 11:56

So, all parameters of the rs monitor work on script 11? But it does not work, for example, UPA,? What is your BIC number with operating script 11 and what version of the software?
Avatar de l’utilisateur
AldaMore_CZ
Nouveau Membre
Nouveau Membre
Messages : 11
Prénom : Alda
Voiture : Laguna III GT
Departement : 91
Slogan : Renault

Rajout du RS Monitor, possible ou pas ?

Messagepar AldaMore_CZ » mer. 9 mai 2018 12:10

Avatar de l’utilisateur
ebt25
Nouveau Membre
Nouveau Membre
Messages : 28
Prénom : ebt25
Voiture : Laguna III
Departement : 10
Slogan : not yet ;)

Rajout du RS Monitor, possible ou pas ?

Messagepar ebt25 » mer. 9 mai 2018 12:34

Ok, but what Renault number: 283467937R, 283466187R 283468105R ? or other ?
and what soft: 5.10, 6.20, 7.10, 9.0 ? or other ?
Avatar de l’utilisateur
AldaMore_CZ
Nouveau Membre
Nouveau Membre
Messages : 11
Prénom : Alda
Voiture : Laguna III GT
Departement : 91
Slogan : Renault

Rajout du RS Monitor, possible ou pas ?

Messagepar AldaMore_CZ » mer. 9 mai 2018 12:39

283466187R 5.10
Avatar de l’utilisateur
NovaS
Nouveau Membre
Nouveau Membre
Messages : 45
Prénom : Andrei
Voiture : Megane 3 RS
Slogan : No slogan

Rajout du RS Monitor, possible ou pas ?

Messagepar NovaS » mer. 9 mai 2018 12:42

So from what i tried lately: the script 11 is present only on soft up to 4.20.
The UPA is working from version 5.1 up. Older software did not have the reverse sensors implemented.
The problem is that there is a need to extract script 11 from soft 4.20 and insert it into version 5.1 or later.
What i do not have exactly and maybe someone can share (or it will take me some time because i have a lot to do at work) is the memory address from wher script 11 starts and ends so I can put it inside a version 7.5 software for example.
Avatar de l’utilisateur
Qbak
Nouveau Membre
Nouveau Membre
Messages : 27
Voiture : Laguna 3
Slogan : R-Link

Rajout du RS Monitor, possible ou pas ?

Messagepar Qbak » mer. 9 mai 2018 12:53

Avatar de l’utilisateur
NovaS
Do you have memory dump from your BIC?
Avatar de l’utilisateur
AldaMore_CZ
Nouveau Membre
Nouveau Membre
Messages : 11
Prénom : Alda
Voiture : Laguna III GT
Departement : 91
Slogan : Renault

Rajout du RS Monitor, possible ou pas ?

Messagepar AldaMore_CZ » mer. 9 mai 2018 13:03

I'm afraid DUMP script will not help us. We would have to combine these scripts, and we probably will not. If we are not in a state where we write down our own script with the definition of how to work. That's why I find it easier to produce BIC2 and do it in CAN to boost it in the same way that they did for DUSTER when they show the alternate outdoor temperature and engine temperature.
Avatar de l’utilisateur
ebt25
Nouveau Membre
Nouveau Membre
Messages : 28
Prénom : ebt25
Voiture : Laguna III
Departement : 10
Slogan : not yet ;)

Rajout du RS Monitor, possible ou pas ?

Messagepar ebt25 » mer. 9 mai 2018 13:14

AldaMore_CZ a écrit :283466187R 5.10
I have the same BIC the same number and version of the software but other scripts.
https://www.dropbox.com/s/mq3spviktlm5r ... R.jpg?dl=0

If the memory from BIC is readable through the frame (ReadMemoryByAddress) $ 23
and written by (WriteMemoryByAddress) $ 3D it would be fine.
Only I do not know yet in which session the reading works:
10C0, 1081, 1086
Whether authentication is required (SecurityAccess) $ 27
2781, 2786 etc.
and what is the address of the memory:
23 XXXXXXXX YYYY
XXXXXXXX - memory type and address
YYYY - Memory Size to read
Dernière modification par ebt25 le mer. 9 mai 2018 13:44, modifié 1 fois.
Avatar de l’utilisateur
Qbak
Nouveau Membre
Nouveau Membre
Messages : 27
Voiture : Laguna 3
Slogan : R-Link

Rajout du RS Monitor, possible ou pas ?

Messagepar Qbak » mer. 9 mai 2018 13:22

AldaMore_CZ a écrit :We would have to combine these scripts
And DUMP is first step to do it.

Avatar de l’utilisateur
AldaMore_CZ
You have written that you have bic v5.10 with no script 11 -> and you modify something to have this script.
Can you confirm it?
It will help us to find the solution.
Avatar de l’utilisateur
AldaMore_CZ
Nouveau Membre
Nouveau Membre
Messages : 11
Prénom : Alda
Voiture : Laguna III GT
Departement : 91
Slogan : Renault

Rajout du RS Monitor, possible ou pas ?

Messagepar AldaMore_CZ » mer. 9 mai 2018 13:43

We reprogrammed it with the "R ... ult-NET" network and their software, there we forced the modification for RS1, because BIC has the same software as the small RS1 display, if you have a small RS1 display you can connect it to a BIC it will also work you just where you will have a display instead of a BIC, unfortunately I do not know how to modify the scripts.
Avatar de l’utilisateur
NovaS
Nouveau Membre
Nouveau Membre
Messages : 45
Prénom : Andrei
Voiture : Megane 3 RS
Slogan : No slogan

Rajout du RS Monitor, possible ou pas ?

Messagepar NovaS » mer. 9 mai 2018 15:39

Avatar de l’utilisateur
ebt25
10C0 - defaul aftersails session
1081 - main repropraming session

Yes i have the dump of the software and I am also able to write it back.
Please make a distinction between soft and script.
We can make a newer soft with the script 11. We just need to figure out the script 11 inside the old BICs.

Membres en ligne

Utilisateurs parcourant ce forum : Aucun utilisateur inscrit et 67 invités