How do I read BCM43362 chip version

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

I want to read BCM43362 chip version. Please provide the command for doing this.

1 Solution
VikramR_26
Employee
Employee
25 sign-ins 10 sign-ins 10 comments on KBA

I have not tried it, but by my knowledge using the mfg_test app in the test folder. the wl tool command has an option of wl -version. This should tell the version.

hth

vik86

View solution in original post

4 Replies
VikramR_26
Employee
Employee
25 sign-ins 10 sign-ins 10 comments on KBA

I have not tried it, but by my knowledge using the mfg_test app in the test folder. the wl tool command has an option of wl -version. This should tell the version.

hth

vik86

RuRa_2181051
Level 1
Level 1
10 sign-ins First question asked First reply posted

The question was that the version needs to be read on realtime software. Is there a way to do it?

Anonymous
Not applicable

Vik,

Can you show how to read version in runtime? If not already supported then please post enhancement request for future release.

//Johan

0 Likes

So to read the chip version there is revinfo command, and the api is

wl_revinfo(void *wl, cmd_t *cmd, char **argv")

The same can be tested by running the mfg_test app in test folder.

$> wl43362A2.exe --serial 78 revinfo

vendorid 0x14e4

deviceid 0x4343

radiorev 0x2064000

chipnum 0xa962

chiprev 0x1

chippackage 0x9

corerev 0x19

boardid 0x598

boardvendor 0x14e4

boardrev P305

driverrev 0x55ae60c

ucoderev 0x2d70136

bus 0x0

phytype 0x8

phyrev 0x3

anarev 0x0

So wl_version gives the firmware version and wl_revinfo provides the chip details.

thnx

vik86