commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
22 lines
462 B
C
22 lines
462 B
C
/* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*/
|
|
|
|
#ifndef __NET_FASTBOOT_H__
|
|
#define __NET_FASTBOOT_H__
|
|
|
|
/**********************************************************************/
|
|
/*
|
|
* Global functions and variables.
|
|
*/
|
|
|
|
/**
|
|
* Wait for incoming fastboot comands.
|
|
*/
|
|
void fastboot_start_server(void);
|
|
|
|
/**********************************************************************/
|
|
|
|
#endif /* __NET_FASTBOOT_H__ */
|