File tree Expand file tree Collapse file tree 6 files changed +14
-7
lines changed Expand file tree Collapse file tree 6 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 659659 "$(inherited)",
660660 "@executable_path/Frameworks",
661661 );
662- MARKETING_VERSION = 2.8 ;
662+ MARKETING_VERSION = 2.9 ;
663663 PRODUCT_BUNDLE_IDENTIFIER = com.csl.CS108iOSClient;
664664 PRODUCT_NAME = "$(TARGET_NAME)";
665665 TARGETED_DEVICE_FAMILY = "1,2";
682682 "$(inherited)",
683683 "@executable_path/Frameworks",
684684 );
685- MARKETING_VERSION = 2.8 ;
685+ MARKETING_VERSION = 2.9 ;
686686 PRODUCT_BUNDLE_IDENTIFIER = com.csl.CS108iOSClient;
687687 PRODUCT_NAME = "$(TARGET_NAME)";
688688 TARGETED_DEVICE_FAMILY = "1,2";
Original file line number Diff line number Diff line change 584584 <stackView opaque="NO" contentMode="scaleToFill" spacing="60" translatesAutoresizingMaskIntoConstraints="NO" id="Y6L-Xl-CtA" userLabel="Power">
585585 <rect key="frame" x="0.0" y="0.0" width="310" height="34"/>
586586 <subviews>
587- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Power (dBm )" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lFJ-9N-x0b">
587+ <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Power (0-300 )" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lFJ-9N-x0b">
588588 <rect key="frame" x="0.0" y="0.0" width="100" height="34"/>
589589 <fontDescription key="fontDescription" name="Lato-Regular" family="Lato" pointSize="15"/>
590590 <nil key="textColor"/>
Original file line number Diff line number Diff line change 1919 <key >CFBundleShortVersionString </key >
2020 <string >$(MARKETING_VERSION) </string >
2121 <key >CFBundleVersion </key >
22- <string >2681 </string >
22+ <string >2690 </string >
2323 <key >LSRequiresIPhoneOS </key >
2424 <true />
2525 <key >NSBluetoothAlwaysUsageDescription </key >
Original file line number Diff line number Diff line change @@ -43,6 +43,13 @@ - (IBAction)btnMultibankPressed:(id)sender {
4343}
4444
4545- (IBAction )btnFiltersPressed : (id )sender {
46+
47+ UIAlertController *alert = [UIAlertController alertControllerWithTitle: @" Not Available" message: @" Feature to be implemented" preferredStyle: UIAlertControllerStyleAlert];
48+
49+ UIAlertAction *ok = [UIAlertAction actionWithTitle: @" OK" style: UIAlertActionStyleDefault handler: nil ];
50+ [alert addAction: ok];
51+ [self presentViewController: alert animated: YES completion: nil ];
52+
4653}
4754
4855- (IBAction )btnMQTTPressed : (id )sender {
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ - (IBAction)txtTagPopulationChanged:(id)sender {
287287- (IBAction )txtPowerChanged : (id )sender {
288288 NSScanner * scan = [NSScanner scannerWithString: txtPower.text];
289289 int val;
290- if ([scan scanInt: &val] && [scan isAtEnd ] && [txtPower.text intValue ] >= 0 && [txtPower.text intValue ] <= 320 ) // valid int between 0 to 320
290+ if ([scan scanInt: &val] && [scan isAtEnd ] && [txtPower.text intValue ] >= 0 && [txtPower.text intValue ] <= 300 ) // valid int between 0 to 300
291291 {
292292 NSLog (@" Power value entered: OK" );
293293 }
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ - (IBAction)txtHighTemperatureThresholdChanged:(id)sender {
221221- (IBAction )txtOcrssiMinChanged : (id )sender {
222222 NSScanner * scan = [NSScanner scannerWithString: self .txtOcrssiMin.text];
223223 int val;
224- if ([scan scanInt: &val] && [scan isAtEnd ] && [self .txtOcrssiMin.text intValue ] >= 0 && [self .txtOcrssiMin.text intValue ] <= 15 ) // valid int between 0 to 15
224+ if ([scan scanInt: &val] && [scan isAtEnd ] && [self .txtOcrssiMin.text intValue ] >= 0 && [self .txtOcrssiMin.text intValue ] <= 31 ) // valid int between 0 to 15
225225 {
226226 NSLog (@" On-chip RSSI low value entered: OK" );
227227 }
@@ -232,7 +232,7 @@ - (IBAction)txtOcrssiMinChanged:(id)sender {
232232- (IBAction )txtOcrssiMaxChanged : (id )sender {
233233 NSScanner * scan = [NSScanner scannerWithString: self .txtOcrssiMax.text];
234234 int val;
235- if ([scan scanInt: &val] && [scan isAtEnd ] && [self .txtOcrssiMax.text intValue ] >= 0 && [self .txtOcrssiMax.text intValue ] <= 15 ) // valid int between 0 to 15
235+ if ([scan scanInt: &val] && [scan isAtEnd ] && [self .txtOcrssiMax.text intValue ] >= 0 && [self .txtOcrssiMax.text intValue ] <= 31 ) // valid int between 0 to 15
236236 {
237237 NSLog (@" On-chip RSSI high value entered: OK" );
238238 }
You can’t perform that action at this time.
0 commit comments