-
Notifications
You must be signed in to change notification settings - Fork 4
/
powerup_data.json
2438 lines (2432 loc) · 116 KB
/
powerup_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"submissions": [
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We've made background improvements to improve your vehicle's software to enhance your overall experience."
}
],
"inhibitMinutes": 20,
"inhibitRequired": true,
"modelYears": [],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["DDM", "PDM"],
"powerupVersion": "23-PU0813-DOR-UP2",
"releaseDateEu": "",
"releaseDateUs": "2023-12-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We've made background improvements to improve your vehicle's center display software to enhance your overall experience."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "For vehicles equipped with BlueCruise this adds support for lane change assist in the cluster."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": [],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["IPC"],
"powerupVersion": "6.8.0",
"releaseDateEu": "",
"releaseDateUs": "2023-12-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Driver facing camera improvements. Adds robustness to the Driver State Monitoring system and increases availibility of BlueCruise and reduces false eyes-off warnings."
}
],
"inhibitMinutes": 38,
"inhibitRequired": true,
"modelYears": ["2022", "2023"],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["CMR"],
"powerupVersion": "6.13.0",
"releaseDateEu": "",
"releaseDateUs": "2023-12-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "2023 Models: Several modifications have been made to improve the quality of your instrument panel and other features. There is nothing you need to do."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "2022 Models: We've made an enhancement to let you know that if your frunk is ever ajar, you will now hear a louder chime. This was done to help ensure that you'll know to take action if ever necessary."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["IPC"],
"powerupVersion": "6.8.0",
"releaseDateEu": "",
"releaseDateUs": "2023-12-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We've made a Software Update that allows you to open your frunk remotely using the FordPass App. That's right. Now you can control your frunk from the palm of your hand. Plus, you'll also receive a Frunk Ajar warning if you try to drive away without your Frunk being fully closed."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["GFM"],
"powerupVersion": "6.7.0",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We know how important DC Fast Charging is to you, so we've tweaked the charging module to improve reliability and performance."
}
],
"inhibitMinutes": 10,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["OBCC"],
"powerupVersion": "23-PU0722-DC-CHG3",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We've made background improvements to your vehicle's software to enhance your overall experience."
}
],
"inhibitMinutes": 22,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["ABS", "BECM", "PCM", "SOBDMA", "SOBDMB", "SOBDMC"],
"powerupVersion": "6.6.0",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "A small adjustment so your vehicle can prepare for future updates."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": ["2021", "2022", "2023"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["SCCM"],
"powerupVersion": "6.5.0",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Refinements have been made to help improve connectivity."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021", "2022", "2023"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["TCU"],
"powerupVersion": "6.4.0",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Ford Power-Up delivers the latest software updates to your vehicle. While many updates happen seamlessly in the background as you're driving, some updates look to your preferred schedule to install the latest while you're not using your vehicle (like overnight). Go to Settings, then Software Updates to set your schedule."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "To make sure that these non-driveable updates install correctly please ensure that your vehicle is in park, ignition is off, the lights are off, doors, windows, trunk and frunk are closed, and the brake pedal is not being pressed."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["SCCM"],
"powerupVersion": "6.4.0",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "4.0.23291",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "New, Clean Design If your vehicle has an 8\" or 12\" SYNC® screen, you may notice that it looks a little different today. That's because we just unveiled a new design that will help you find your favorite menu settings."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Selectable Drive Modes We've made some changes to the messaging for different drive modes. You should not see a fault message if a drive mode times out."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Improvement to conditions not met alerts With this update, you'll now receive new pop-up alerts to inform you when a condition is not being met so that you can take the required action to receive your vehicle software update. For a non-drivable update, conditions may include that your vehicle is parked, it's not running, all the lights are off, doors and trunk are closed, and you're not pressing the brake pedal."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Ford BlueCruise Map Update If your vehicle is equipped with Ford BlueCruise."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021", "2022", "2023"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "6.3.0",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Easy on the eyes. You may have noticed that things look a little different on your vehicle screen today. That's because we're continuing to improve the modern design to make it simple to navigate and find what you're looking for. A few changes you'll notice include a smaller top bar, and we've moved some icons to make it easier to view. A dedicated user profile button has even been added. Smart Changes to Phone As A Key Setting up Phone As A Key just got easier. That's because you can now edit and save your Phone As A Key settings from the driver profile screen in-vehicle. To manage your Phone As A Key settings in your driver profile, go to Personal Profile > Edit > Phone in your vehicle's SYNC® screen. You may also set up automatic sign-in so that your driver profile is ready as soon as you enter the vehicle. Step up to the mic All Ford F-150 Lightning customers are now able to share instant feedback with Ford, by recording and sending voice feedback from the convenience of your vehicle. Available in the U.S. only and requires FordPass® Connect modem activation. We will use this feedback to help make quality and design improvements. If you have a safety or service-related concern, please contact your dealer or the Customer Relationship Center. To get started, simply go to the Features tab or App screen in-vehicle and tap on Record Feedback. We look forward to hearing from you. Details matter This update helps make it easy for you to review your charging session summary, including the state of charge, cost, distance added, charge time and even the balance on your subscription (if applicable)."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Selectable Drive Modes We've made some changes to the messaging for different drive modes. You should not see a fault message if a drive mode times out."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Improvement to conditions not met alerts With this update, you'll now receive new pop-up alerts to inform you when a condition is not being met so that you can take the required action to receive your vehicle software update. For a non-drivable update, conditions may include that your vehicle is parked, it's not running, all the lights are off, doors and trunk are closed, and you're not pressing the brake pedal."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Ford BlueCruise Map Update If your vehicle is equipped with Ford BlueCruise."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Lightning"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "6.3.0",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Intelligent Range Update... For more accurate range predictions, our newly enhanced Intelligent Range works with your Ford Navigation System by factoring in elements like traffic speed, external temperature and hill grades to the route you have selected. Travel with confidence knowing you have what you need to get where you're going."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "Europe: Improvements and fixes. This update brings optimization of vehicle connectivity (FordPass Connect) as well as adjustments and fixes to the system for better stability."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["TCU"],
"powerupVersion": "6.3.0",
"releaseDateEu": "2023-11-01",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Small changes here and there. Ongoing updates like this help you enjoy the best possible version of your F-150® truck. Enjoy."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": [],
"models": ["Lightning"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["GWM"],
"powerupVersion": "6.2.0",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "If you recently received the 6.2.0 update, we've just released version 6.2.1 with even more enhancements to improve your driving experience."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": ["6.2.1", "23-PU1103-NAT-VCE"],
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Easy on the eyes. You may have noticed that things look a little different on your vehicle screen today. That's because we're continuing to improve the modern design to make it simple to navigate and find what you're looking for. A few changes you'll notice include a smaller top bar and we've moved some icons to make it easier to view. A dedicated user profile button has even been added."
},
{
"link": "",
"linkText": "",
"models": [],
"text": "EStep up to the mic, please! For this latest Ford Power-Up software update, we listened to your feedback and made it easier for you to continue to share your experiences by recording and sending voice feedback from the convenience of your vehicle. Prior to this update, access for this feature was in the Settings-General menu. But now it's been moved to the App screen and will be available whenever your vehicle is activated in FordPass. Look for the new Record Feedback microphone icon — and continue to let us know what you really think"
},
{
"link": "",
"linkText": "",
"models": [],
"text": "No need to sound the alarm! This update will allow you to easily turn the motion sensor alarm OFF from the vehicle settings screen or alert POPUP. That means when you have a passenger or pet inside, they can move around while you do the same outside."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "6.2.0",
"releaseDateEu": "",
"releaseDateUs": "2023-09-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Ford Bluecruise Map Update: If your vehicle is equipped with BC, we've made an update to your BC maps expiration."
},
{
"link": "",
"linkText": "",
"models": ["Mustang Mach-E"],
"text": "Intelligent Backup Power: We've made an update to help ensure a smooth experience when using your vehicle for power. If your connection is disrupted, the system will search for another before timing out."
},
{
"link": "",
"linkText": "",
"models": ["F-150", "Lightning"],
"text": "Intelligent Backup Power: We've made an update to help ensure a smooth experience when using your vehicle for power. If your connection is disrupted, the system will search for another before timing out."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": [],
"models": ["Lightning", "F-150", "Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["GWM"],
"powerupVersion": "6.1.0",
"releaseDateEu": "2023-11-01",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Small changes here and there. Ongoing updates like this help you enjoy the best possible version of your F-150® truck. Enjoy."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": ["2021"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["BCM"],
"powerupVersion": "2.7.4",
"releaseDateEu": "",
"releaseDateUs": "2023-11-16",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "This update addresses the issue where radio presets have been affected during vehicle software updates."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2023"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["ACM"],
"powerupVersion": "23-PU0110-RAD-PS",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We updated your PCM to fix a potential no-start condition."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["PCM"],
"powerupVersion": "Recall 21B37",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "If you recently received the 6.2.0 update, we've just re-released the same version with a few enhancements to improve your driving experience. Display Updates You may have noticed that things look a little different on your vehicle screen today. That's because we're continuing to improve the modern design to make it simple to navigate and find what you're looking for. A few changes you'll notice include a smaller top bar and we've moved some icons to make it easier to view. A dedicated user profile button has even been added. Record Feedback For this latest Ford Power-Up software update, we listened to your feedback and made it easier for you to continue to share your experiences by recording and sending voice feedback from the convenience of your vehicle. Prior to this update, access for this feature was in the Settings-General menu. But now it's been moved to the App screen and will be available whenever your vehicle is activated in FordPass"
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["GWM"],
"powerupVersion": "23-PU1103-NAT-VCE",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "A small adjustment so your vehicle can prepare for future updates."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021", "2022", "2023"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["GWM"],
"powerupVersion": "6.2.0",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "This update helps allow passengers in the back seat to mirror their device onto the Rear Seat Entertainment screen using the available Wifi hotspot service within your vehicle."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Expedition"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["TCU"],
"powerupVersion": "5.3.1",
"releaseDateEu": "",
"releaseDateUs": "2023-11-01",
"submitDate": "2023-12-28T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "If your Expedition® SUV is equipped with 15.5″ portrait screen, you’ll receive the following updates: Easy on the eyes You may have noticed that things look a little different on your vehicle screen today. That’s because we’re continuing to improve the modern design to make it simple to navigate and find what you’re looking for. A few changes you’ll notice include a smaller top bar and we’ve moved some icons to make it easier to view. A dedicated user profile button has even been added. Step up to the mic, please For this latest Ford Power-Up software update, we listened to your feedback and made it easier for you to continue to share your experiences by recording and sending voice feedback from the convenience of your vehicle. Prior to this update, access for this feature was in the Settings-General menu. But now it’s been moved to the App screen and will be available whenever your vehicle is activated in FordPass®. Look for the new Record Feedback microphone icon — and continue to let us know what you really think."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Expedition"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "5.2.1",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-12-28T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "4.0.23167 Rev 926",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "The functionality of your Rear View Camera has been improved. We've added a Picture-in-Picture (PiP) capability to the Trailer Reverse Guidance feature, so you can simultaneously monitor two camera views. This split view allows you to view Trailer Reverse Guidance cameras and your choice of either the Center High-Mounted Stop Lamp camera view or the trailer auxiliary camera (bought and installed separately) at the same time to ensure the best visibility while backing your trailer into the tightest of spots."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "4.3.6",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "v4.0.23159",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Update to digital owner's manual."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Lightning"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "23-PU0274-DOM-RS",
"releaseDateEu": "",
"releaseDateUs": "2023-08-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "4.0.23159",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "We made sure that what you need to know is in there and easy to find. Go see it on Ford.com/support or in the FordPass® App. You can also access it in your vehicle through the SYNC®4 touchscreen under the Features tab or through the SYNC® 4A touchscreen under Apps."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021", "2022", "2023"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["APIM"],
"powerupVersion": "22-PU0724-DOM-RS",
"releaseDateEu": "",
"releaseDateUs": "2023-10-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "Some minor fine-tuning to keep everything running smoothly. Restores driver assist functionality on specific VINs that may have a configuration mismatch with the server." }],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": ["2021"],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modulesUpdated": ["IPMA"],
"powerupVersion": "23-PU0407-BCDC-FX",
"releaseDateEu": "",
"releaseDateUs": "2023-08-01",
"submitDate": "2023-09-05T12:52:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Updates are bringing the heat. We've made some enhancements to help while you're out on a road trip. First, if you're heading toward a DC fast charging station (using your vehicle's navigation), your battery will now start to warm up within 20 miles of your destination. This allows the battery to accept a charge at a faster rate in cold weather when you have excess heater capacity, getting you back on the road. Remember, you must enter your fast charging station into the Navigation System in order for preheating to work. We've also made a quality improvement to the power steering control. There is nothing you need to do."
}
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-08-27T14:58:00.000Z",
"modulesUpdated": ["GWM"],
"powerupVersion": "5.1.1",
"releaseDateEu": "",
"releaseDateUs": "2023-08-01",
"submitDate": "2023-08-27T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "A few modifictions were made to help improve the illuminated malfunction indicator lamps." }],
"inhibitMinutes": 10,
"inhibitRequired": true,
"modelYears": [],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-08-27T14:58:00.000Z",
"modulesUpdated": ["ABS", "PCM", "BECM", "SOBDMC"],
"powerupVersion": "22-PU1009-MIL-PPO",
"releaseDateEu": "",
"releaseDateUs": "2023-08-01",
"submitDate": "2023-08-27T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "A few adjustments have been made to imporve yout Pro Power Onboard, allowing for an alert that let's you know to close the outlet cover to avoid interference with shifting." }],
"inhibitMinutes": 10,
"inhibitRequired": true,
"modelYears": [],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-31T14:58:00.000Z",
"modulesUpdated": ["PCM"],
"powerupVersion": "22-PU1009-PPO-SI",
"releaseDateEu": "",
"releaseDateUs": "2023-07-01",
"submitDate": "2023-07-31T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "Static-free inbound. If your vehicle is equipped with a B&O system, your vehicle has been updated to remove unexpected static." }],
"inhibitMinutes": 5,
"inhibitRequired": true,
"modelYears": [],
"models": ["F-150"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-24T14:58:00.000Z",
"modulesUpdated": ["DSP"],
"powerupVersion": "23-PU0327-DSP-AMP",
"releaseDateEu": "",
"releaseDateUs": "2023-07-01",
"submitDate": "2023-07-24T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "Smart Changes. Just a quick note to let you know some refinements have been made. These will make your vehicle better prepared to receive future updates that are more complex." }],
"inhibitMinutes": 10,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-24T14:58:00.000Z",
"modulesUpdated": ["DCME", "DCMF", "DCMG", "DCMH"],
"powerupVersion": "23-PU0314-DCM-LAT",
"releaseDateEu": "",
"releaseDateUs": "2023-06-01",
"submitDate": "2023-07-24T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "Improved DC Fast Charging. We know how important DC Fast Charging is to you, so we've tweaked the charging module to improve reliability and performance." }],
"inhibitMinutes": 10,
"inhibitRequired": true,
"modelYears": [],
"models": ["Lightning"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-24T14:58:00.000Z",
"modulesUpdated": ["APIM", "OBCC"],
"powerupVersion": "22-PU0722-DC-CHG3",
"releaseDateEu": "",
"releaseDateUs": "2023-08-01",
"submitDate": "2023-07-24T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "Customer Satisfaction Program 21B36: We fine-tuned your Phone As A Key software to help improve reliability and reduce potential Bluetooth disconnection when unlocking or starting your vehicle. This completes customer satisfaction program 21B36." }],
"inhibitMinutes": 10,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-24T14:58:00.000Z",
"modulesUpdated": ["RFA"],
"powerupVersion": "23-PU0415-BLM-VIS",
"releaseDateEu": "",
"releaseDateUs": "2023-06-01",
"submitDate": "2023-07-24T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "An update that's music to your ears. Just a quick note to let you know some refinements have been made to keep things running at their best. This update addresses the issue where radio presets have been affected during vehicle software updates. Talk about something to sing about."
}
],
"inhibitMinutes": 12,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-24T14:58:00.000Z",
"modulesUpdated": ["ACM"],
"powerupVersion": "23-PU0110-RAD-PS",
"releaseDateEu": "",
"releaseDateUs": "2023-08-01",
"submitDate": "2023-07-24T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{ "link": "", "linkText": "", "models": [], "text": "While you may have seen this update before, we're resending to ensure some housekeeping features are included to help further enhance your user experience." },
{ "link": "", "linkText": "", "models": [], "text": "SYNC update to support public WiFi" },
{ "link": "", "linkText": "", "models": [], "text": "Apple Carplay 'easy listening improvements'" },
{ "link": "", "linkText": "", "models": [], "text": "Video streaming apps for US vehicles: YouTube, NBC News, NBC Today" },
{ "link": "", "linkText": "", "models": [], "text": "New games: Bridge Battle and Parking Lot" }
],
"inhibitMinutes": 0,
"inhibitRequired": false,
"modelYears": [],
"models": ["Lightning"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-24T14:58:00.000Z",
"modulesUpdated": ["GWM"],
"powerupVersion": "23-PU0503-CON-FX",
"releaseDateEu": "",
"releaseDateUs": "2023-06-01",
"submitDate": "2023-07-24T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": [],
"text": "Ford BlueCruise Delivery, Plus Minor Changes. If your Ford Mustang Mach-E is equipped withthe Ford Co-Pilot360 Active 2.0 Prep Package, your Ford BlueCruise hands-free highway driving feature has now been delivered. This completes what we call Product Improvement Program 21G01. There is nothing you need to do except enjoy the update. Note: You may have already received some of this functionality in a prior update, but this version has been fine-tuned and includes additional tweaks to other features."
}
],
"inhibitMinutes": 145,
"inhibitRequired": true,
"modelYears": [],
"models": ["Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-07-01T14:58:00.000Z",
"modulesUpdated": ["APIM"],
"powerupVersion": "4.3.6",
"releaseDateEu": "",
"releaseDateUs": "2023-07-01",
"submitDate": "2023-06-01T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [{ "link": "", "linkText": "", "models": [], "text": "Minor updates here and there. Some minor fine-tuning so your vehicle can easily install the more detailed updates coming down the road." }],
"inhibitMinutes": 145,
"inhibitRequired": true,
"modelYears": ["2021"],
"models": ["F-150", "Mustang Mach-E"],
"modifiedBy": "@tonesto7",
"modifiedDate": "2023-06-01T14:58:00.000Z",
"modulesUpdated": ["GWM"],
"powerupVersion": "4.3.5",
"releaseDateEu": "",
"releaseDateUs": "2023-06-01",
"submitDate": "2023-06-01T14:58:00.000Z",
"submittedBy": "",
"updateMethod": "OTA",
"wifiRequired": false
},
{
"apimVersion": "",
"changes": [
{
"link": "",
"linkText": "",
"models": ["F-150"],
"text": "A vehicle with a view. The functionality of your Rear View Camera has been improved. Some camera views are now available while your vehicle is in motion. To monitor your cargo area or trailer, simply press your camera button and use the center high-mounted stop lamp camera (if equipped) or Rear View Camera, or watch the view from a trailer auxiliary camera (bought and installed separately). For more information on these features, visit Ford.com/support or your digital Owner's Manual."
},
{
"link": "",
"linkText": "",
"models": ["Mustang Mach-E"],
"text": "Updates are bringing the heat. We've made some enhancements to help while you're out on a road trip. First, if you're heading toward a DC fast charging station (using your vehicle's navigation), your battery will now start to warm up within 20 miles of your destination. This allows the battery to accept a charge at a faster rate in cold weather when you have excess heater capacity, getting you back on the road. Remember, you must enter your fast charging station into the Navigation System in order for preheating to work. We've also made a quality improvement to the power steering control. There is nothing you need to do."
}
],
"inhibitMinutes": 5,
"inhibitRequired": true,