Salut à tous.

Je suis sur ma raspberry Pi Modèle 3B+. Quand j'interroge ses caractéristiques, pour le processeur je trouve (en rouge) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
~> cat /proc/cpuinfo
processor       : 0
model name      : ARMv7 Processor rev 4 (v7l)
BogoMIPS        : 38.40
Features        : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x0
CPU part        : 0xd03
CPU revision    : 4

processor       : 1
model name      : ARMv7 Processor rev 4 (v7l)
BogoMIPS        : 38.40
Features        : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x0
CPU part        : 0xd03
CPU revision    : 4

processor       : 2
model name      : ARMv7 Processor rev 4 (v7l)
BogoMIPS        : 38.40
Features        : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x0
CPU part        : 0xd03
CPU revision    : 4

processor       : 3
model name      : ARMv7 Processor rev 4 (v7l)
BogoMIPS        : 38.40
Features        : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x0
CPU part        : 0xd03
CPU revision    : 4

Hardware        : BCM2835
Revision        : a020d3
Serial          : 000000004f858079
Model           : Raspberry Pi 3 Model B Plus Rev 1.3
~>
~>
Maintenant, je passe par son code d'identification : "A020D3".
--> https://www.raspberrypi.org/document...odes/README.md

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
+ ----------+---+-----+------+------+-----------+------+
| uuuu uuuu | F | MMM | CCCC | PPPP | TTTT TTTT | RRRR |
+ ----------+---+-----+------+------+-----------+------+
| .... .... |       A |    0 |   2  |    0    D |    3 |
| .... .... | 1   010 | 0000 | 0010 | 0000 1101 | 0011 |
+ ----------+---+-----+------+------+-----------+------+
RRRR = 3 --> version 1.3
TTTT TTTT = 0D --> 3B +
PPPP = 2 --> BCM2837
CCCC = 0 --> Sony UK
MMM = 2 --> 1 Go
F = 1 --> révision de nouveau style.

Si j'analyse la partie consacré au processeur (PPPP), je trouve la valeur 2 qui correspond à "BCM2837".
Comment expliquer que d'un coté je trouve "BCM2835" et de l'autre coté "BCM2837" ?

@+