/*====================================================================* * * Copyright (c) 2013 Qualcomm Atheros, Inc. * * All rights reserved. * *====================================================================*/ /*====================================================================* * * signed BootDevice1 (struct plc * plc); * * plc.h * * boot a powerline device by writing parameters and firmware into * volatile memory and starting execution; volatile memory must be * initialized and configured before calling this function; * * this function is identical to BootDevice2 but calls functions * that expect the older image file format; * * Contributor(s): * Charles Maier * *--------------------------------------------------------------------*/ #ifndef BOOTDEVICE1_SOURCE #define BOOTDEVICE1_SOURCE #include #include "../plc/plc.h" signed BootDevice1 (struct plc * plc) { char string [PLC_VERSION_STRING]; if (BootParameters1 (plc)) { return (-1); } if (BootFirmware1 (plc)) { return (-1); } if (WaitForStart (plc, string, sizeof (string))) { return (-1); } Confirm (plc, "%s is running", string); return (0); } #endif