buf[3] = resp->rsSA;
buf[4] = ((resp->rqSEQ)<<2) | (resp->rsLUN & 0x3);
buf[5] = resp->cmd;
- memcpy(buf+6, data, datalen);
+ memcpy_P(buf+6, data, datalen);
len = datalen + 7;
buf[len-1] = ipmb_csum(buf+3, len - 4);
void ipmb_invalid(struct ipmb_resp *resp)
{
#if 1
- const unsigned char cmd_invalid[] = {IPMB_CC_INVALID};
+ static const unsigned char cmd_invalid[] PROGMEM = {IPMB_CC_INVALID};
ipmb_send(resp, cmd_invalid, sizeof(cmd_invalid));
#endif
void ipmb_cmd(struct ipmb_req *req)
{
struct ipmb_resp resp;
- const unsigned char get_devid[] =
+ static const unsigned char get_devid[] PROGMEM =
{IPMB_CC_NORMALLY, 0x42, 0x42, 0x01, 0x01, 0x51, 0xff /* Add. Dev. Supp */, 0x00, 0x00, 0x00, 0x00, 0x00 };
- const unsigned char get_wd_timer[] =
+ static const unsigned char get_wd_timer[] PROGMEM =
{IPMB_CC_NORMALLY, 0x42, 0x00, 0x00, 0x04, 0xff, 0xff, 0xfe, 0xfe};
- const unsigned char cc_normal[] =
+ static const unsigned char cc_normal[] PROGMEM =
{IPMB_CC_NORMALLY};
- const unsigned char sel_info[] =
+ static const unsigned char sel_info[] PROGMEM =
{IPMB_CC_NORMALLY, 0x51, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00};
- const unsigned char sel_alloc_info[] =
+ static const unsigned char sel_alloc_info[] PROGMEM =
{IPMB_CC_NORMALLY, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- const unsigned char sel_entry[] =
+ static const unsigned char sel_entry[] PROGMEM =
{IPMB_CC_ERROR};
- const unsigned char sel_timestamp[] =
+ static const unsigned char sel_timestamp[] PROGMEM =
{IPMB_CC_NORMALLY, 0x00, 0x00, 0x00, 0x00};
- const unsigned char chassis_status[] =
+ static const unsigned char chassis_status[] PROGMEM =
{IPMB_CC_NORMALLY, 0x60, 0x10, 0x00, 0x00};
- const unsigned char reserve_sdr[] =
+ static const unsigned char reserve_sdr[] PROGMEM =
{IPMB_CC_NORMALLY, 0x00, 0x00};
- const unsigned char get_sdr[] =
+ static const unsigned char get_sdr[] PROGMEM =
{IPMB_CC_NORMALLY, 0xff, 0xff};
resp.rqSA = req->rqSA;