mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2025-07-31 20:21:04 +00:00
motify compile link error
motify compile link error
This commit is contained in:
parent
923914edae
commit
03e74a8e50
5418 changed files with 1367914 additions and 206149 deletions
|
|
@ -0,0 +1,65 @@
|
|||
//
|
||||
// ConfigViewController.h
|
||||
// SimpleConfig
|
||||
//
|
||||
// Created by Realsil on 14/11/11.
|
||||
// Copyright (c) 2014年 Realtek. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef SimpleConfig_ConfigViewController_h
|
||||
#define SimpleConfig_ConfigViewController_h
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "SimpleConfig.h"
|
||||
#import "String.h"
|
||||
#import "ClientViewController.h"
|
||||
#import "Lib/ZBarSDK/Headers/ZBarSDK/ZBarSDK.h"
|
||||
|
||||
|
||||
typedef struct rtk_sc_context{
|
||||
unsigned int m_mode;
|
||||
unsigned int m_recv_len;
|
||||
unsigned char m_recv_buf[MAX_BUF_LEN];
|
||||
}SC_CONTEXT;
|
||||
|
||||
@interface ConfigViewController : UIViewController <ZBarReaderDelegate, UITableViewDelegate, UITableViewDataSource>
|
||||
{
|
||||
@private
|
||||
BOOL upOrdown;
|
||||
int num ;
|
||||
|
||||
// SC Related
|
||||
SC_CONTEXT m_context;
|
||||
// QRCode Related
|
||||
int m_num ;
|
||||
BOOL m_upOrdown;
|
||||
NSTimer *m_qrcode_timer;
|
||||
}
|
||||
|
||||
@property (retain, nonatomic) IBOutlet UITextField *m_input_ssid;
|
||||
@property (retain, nonatomic) IBOutlet UITextField *m_input_password;
|
||||
@property (retain, nonatomic) IBOutlet UITextField *m_input_pin;
|
||||
@property (retain, nonatomic) IBOutlet UIButton *m_config_button;
|
||||
@property (retain, nonatomic) IBOutlet UIButton *m_control_button;
|
||||
|
||||
@property (retain, nonatomic) IBOutlet UILabel *m_old_label;
|
||||
@property (retain, nonatomic) IBOutlet UISwitch *m_old_switch;
|
||||
@property (retain, nonatomic) IBOutlet UITextField *m_old_time;
|
||||
@property (retain, nonatomic) IBOutlet UISwitch *m_hide_ssid_switch;
|
||||
|
||||
@property (strong, nonatomic) SimpleConfig *simpleConfig;
|
||||
|
||||
@property (strong, nonatomic) UIImageView *m_qrscan_line;
|
||||
@property (strong, nonatomic) UIAlertView *waitingAlert;
|
||||
@property (strong, nonatomic) UIProgressView *cfgProgressView;
|
||||
@property (nonatomic, strong) UIImageView *line;
|
||||
|
||||
@property (strong, nonatomic) NSMutableArray *confirm_list;
|
||||
@property (strong, nonatomic) IBOutlet UITableView *tableDeviceList;
|
||||
|
||||
- (IBAction)rtk_start_listener:(id)sender;
|
||||
- (IBAction)rtk_scan_listener:(id)sender;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue