sdp.h 301 B

12345678910111213141516
  1. /*
  2. * sdp.h - Serial Download Protocol
  3. *
  4. * Copyright (C) 2017 Toradex
  5. * Author: Stefan Agner <stefan.agner@toradex.com>
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef __SDP_H_
  10. #define __SDP_H_
  11. int sdp_init(int controller_index);
  12. void sdp_handle(int controller_index);
  13. #endif /* __SDP_H_ */