It is in the same carconfigoscilloscope wrote: ↑12 Jun 2022, 02:37
sorry to jump in what your talking about , is the "carconfig" option with the CEM hack ware on git. or is this a separate piece of software that is avalible ?
Vida CEM swapping
-
ZRimaZ
- Posts: 77
- Joined: 8 March 2009
- Year and Model: XC60 MY2016 3.0 T6
- Location: Lithuania, Kaunas
- Has thanked: 23 times
- Been thanked: 13 times
Re: Vida CEM swapping
Have a nice day,
ZRimaZ
ZRimaZ
- RickHaleParker
- Posts: 7129
- Joined: 25 May 2015
- Year and Model: See Signature below.
- Location: Kansas
- Has thanked: 8 times
- Been thanked: 958 times
⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙
1998 C70, B5234T3, 16T, AW50-42, Bosch Motronic 4.4, Special Edition package.
2003 S40, B4204T3, 14T twin scroll AW55-50/51SN, Siemens EMS 2000.
2004 S60R, B8444S TF80 AWD. Yamaha V8 conversion
2005 XC90 T6 Executive, B6294T, 4T65 AWD, Bosch Motronic 7.0.
1998 C70, B5234T3, 16T, AW50-42, Bosch Motronic 4.4, Special Edition package.
2003 S40, B4204T3, 14T twin scroll AW55-50/51SN, Siemens EMS 2000.
2004 S60R, B8444S TF80 AWD. Yamaha V8 conversion
2005 XC90 T6 Executive, B6294T, 4T65 AWD, Bosch Motronic 7.0.
-
matija0610
- Posts: 50
- Joined: 25 October 2021
- Year and Model: 2003 S60 D5
- Location: Croatia
- Has thanked: 21 times
- Been thanked: 13 times
@6000 or @4000
- RickHaleParker
- Posts: 7129
- Joined: 25 May 2015
- Year and Model: See Signature below.
- Location: Kansas
- Has thanked: 8 times
- Been thanked: 958 times
Is there a shuffle order ?
Last edited by RickHaleParker on 12 Jun 2022, 08:13, edited 2 times in total.
⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙⸙
1998 C70, B5234T3, 16T, AW50-42, Bosch Motronic 4.4, Special Edition package.
2003 S40, B4204T3, 14T twin scroll AW55-50/51SN, Siemens EMS 2000.
2004 S60R, B8444S TF80 AWD. Yamaha V8 conversion
2005 XC90 T6 Executive, B6294T, 4T65 AWD, Bosch Motronic 7.0.
1998 C70, B5234T3, 16T, AW50-42, Bosch Motronic 4.4, Special Edition package.
2003 S40, B4204T3, 14T twin scroll AW55-50/51SN, Siemens EMS 2000.
2004 S60R, B8444S TF80 AWD. Yamaha V8 conversion
2005 XC90 T6 Executive, B6294T, 4T65 AWD, Bosch Motronic 7.0.
-
vtl
- Posts: 4724
- Joined: 16 August 2012
- Year and Model: 2005 XC70
- Location: Boston
- Has thanked: 114 times
- Been thanked: 603 times
No, but endianness is different (do bswap_16).
Wrote this to aid the brick CEM cracking.
Code: Select all
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <assert.h>
int main(int argc, char *argv[])
{
int ifd = open(argv[1], O_RDONLY);
int ofd = open(argv[2], O_RDWR | O_CREAT, 0666);
int i, ret;
unsigned char buf[256];
assert(ifd > 0);
assert(ofd > 0);
do {
ret = read(ifd, buf, sizeof(buf));
if (ret <= 0)
break;
for (i = 0; i < sizeof(buf); i += 2) {
unsigned char tmp = buf[i];
buf[i] = buf[i + 1];
buf[i + 1] = tmp;
}
write(ofd, buf, sizeof(buf));
} while (ret > 0);
close(ifd);
close(ofd);
return 0;
}
Last edited by vtl on 12 Jun 2022, 08:20, edited 1 time in total.
-
vtl
- Posts: 4724
- Joined: 16 August 2012
- Year and Model: 2005 XC70
- Location: Boston
- Has thanked: 114 times
- Been thanked: 603 times
I'm lazy and have no free time this summer to pull off the CEM for reflashing (and cars - we've sold wife's Ford XC60, but couldn't get a replacement, so both car and truck should be on wheels at all times). Need something over OBD. Maybe I'll just pull the siren and leave the flash-over-CAN project till later.
-
vtl
- Posts: 4724
- Joined: 16 August 2012
- Year and Model: 2005 XC70
- Location: Boston
- Has thanked: 114 times
- Been thanked: 603 times
Oh, also, also... Maybe internet wisdom knows at least where to start looking at... I'm planning upgrading my tires (and suspension) from stock 27" to 29", but want to keep the speedometer/odometer sane. I know there's a tire size selection somewhere in car (CEM? TCM?). Unfortunately, 215/65R16 is the biggest size. I need to tweak that as well. So the question is: what ECU keeps the tire size?
-
ZRimaZ
- Posts: 77
- Joined: 8 March 2009
- Year and Model: XC60 MY2016 3.0 T6
- Location: Lithuania, Kaunas
- Has thanked: 23 times
- Been thanked: 13 times
Yes, there're one or two parameters in config, depending on MY. But is is very strange with it, I have to clear it myself - on Friday I made ECM, TCM and DEM software upgrade online for my XC60 MY2016. Originally it is from USA, but already converted to EU and, of course, after upgrade everything came back to original configuration - USA, so I had to make US-EU conversion again. At the same time I decided to do the samo operation as you - adjust tyre size and tyre circumference to the real one - 235/60/R18 and 2322mm instead of programmed from factory, which is 215/55 R16 W and 2250.vtl wrote: ↑12 Jun 2022, 08:33
Oh, also, also... Maybe internet wisdom knows at least where to start looking at... I'm planning upgrading my tires (and suspension) from stock 27" to 29", but want to keep the speedometer/odometer sane. I know there's a tire size selection somewhere in car (CEM? TCM?). Unfortunately, 215/65R16 is the biggest size. I need to tweak that as well. So the question is: what ECU keeps the tire size?
Done. Config appeared OK, but DIM DTC about wrong configuration came up. Did not pay attention, because was not sute ig it was not before...
Returning from work to home just got message that traction control is off and blinking tyre pressure indicator. OK, probably puncture
So, the answer to your question - yes, there are tyre size parameters, but....
OMG! Long-story-teller!!!
Have a nice day,
ZRimaZ
ZRimaZ
- gnalan
- Posts: 968
- Joined: 21 July 2020
- Year and Model: 2001 S60
- Location: Ohio
- Has thanked: 557 times
- Been thanked: 135 times
235/60R18:
π*((235*0.60*2)+(18*25.4))=2322.27mm
215/55R16:
π*((215*0.55*2)+(16*25.4))=2019.73mm
Not sure where 2250mm came from...
Last edited by gnalan on 12 Jun 2022, 10:24, edited 1 time in total.
2001 S60, B5244S, AW55-50SN, FWD (Sold)
Cancer/Illness/Caregiver Support Thread
Cancer/Illness/Caregiver Support Thread
-
- Similar Topics
- Replies
- Views
- Last post
-
- 1 Replies
- 6396 Views
-
Last post by RickHaleParker
-
- 5 Replies
- 8644 Views
-
Last post by forumoto






