-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a way to control the camera from the test framework
- Loading branch information
Aic Project
committed
Nov 23, 2016
1 parent
128e7b6
commit e1a531f
Showing
4 changed files
with
102 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#ifndef _AMQP_RC_H_ | ||
#define _AMQP_RC_H_ | ||
#ifndef _RC_H_ | ||
#define _RC_H_ | ||
|
||
#include <pthread.h> | ||
#include "camera-common.h" | ||
|
||
int connect_socket(const char* ip, short port); | ||
void switch_device(CameraDevice* new_dev); | ||
pthread_t* start_amqp_thread(void); | ||
pthread_t* start_socket_thread(void); | ||
#endif |