Skip to content

0xA304 FRAMEWORKMSG_MACHINE_STATUS_ACK

DummkopfOfHachtenduden edited this page Sep 3, 2021 · 2 revisions
1   byte    result
if(result == 1)
{
    // These are not per core or per memory stick. 
    // t-0 to t-3 are simply the recent measurements stored in a ring-buffer.
    // t-0 is the current.
    // t-1 is the previous. 
    // t-2 is the one before that and so on...

    // CPU in %
    4   uint    CPU0 // t-0
    4   uint    CPU1 // t-1
    4   uint    CPU2 // t-2
    4   uint    CPU3 // t-3
    
    // RAM in bytes (incorrect RAM display in SMC due to this)
    4   uint    RAM0 // t-0
    4   uint    RAM1 // t-1
    4   uint    RAM2 // t-2
    4   uint    RAM3 // t-3
}
Clone this wiki locally