test public

Dependencies:   HttpServer_snapshot_mbed-os

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers camera_config.h Source File

camera_config.h

00001 
00002 #ifndef CAMERA_CONFIG_H
00003 #define CAMERA_CONFIG_H
00004 
00005 #include "mbed.h"
00006 #include "DisplayBace.h"
00007 
00008 class camera_config {
00009 
00010 public:
00011 
00012     /** Initialise
00013      *
00014      * @return true = success, false = failure
00015      */
00016     virtual bool Initialise() = 0;
00017 
00018     virtual void SetExtInConfig(DisplayBase::video_ext_in_config_t * p_cfg) = 0;
00019 
00020 };
00021 
00022 #endif
00023