Skip to content

Commit ff727a0

Browse files
authored
feat: initialized Oscilloscope Screen (#2612)
1 parent b9385ab commit ff727a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+4367
-178
lines changed

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,25 @@ migrate_working_dir/
3434
.pub/
3535
/build/
3636

37+
# macOS
38+
**/Flutter/ephemeral/
39+
**/Pods/
40+
**/macos/Flutter/GeneratedPluginRegistrant.swift
41+
**/macos/Flutter/ephemeral
42+
**/xcuserdata/
43+
44+
# Windows
45+
**/windows/flutter/ephemeral/
46+
**/windows/flutter/generated_plugin_registrant.cc
47+
**/windows/flutter/generated_plugin_registrant.h
48+
**/windows/flutter/generated_plugins.cmake
49+
50+
# Linux
51+
**/linux/flutter/ephemeral/
52+
**/linux/flutter/generated_plugin_registrant.cc
53+
**/linux/flutter/generated_plugin_registrant.h
54+
**/linux/flutter/generated_plugins.cmake
55+
3756
# Symbolication related
3857
app.*.symbols
3958

.vscode/extensions.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"dart-code.flutter"
8+
],
9+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
10+
"unwantedRecommendations": [
11+
12+
]
13+
}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"[dart]": {
3+
"editor.defaultFormatter": "Dart-Code.dart-code",
4+
"editor.formatOnSave": true,
5+
}
6+
}

analysis_options.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,5 @@ linter:
2020
# or a specific dart file by using the `// ignore: name_of_lint` and
2121
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
2222
# producing the lint.
23-
rules:
24-
# avoid_print: false # Uncomment to disable the `avoid_print` rule
25-
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
26-
2723
# Additional information about this file can be found at
2824
# https://dart.dev/guides/language/analysis-options

android/app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
3+
<uses-feature android:name="android.hardware.usb.host" />
24
<application
35
android:label="PSLab"
46
android:name="${applicationName}"
5-
android:icon="@mipmap/launcher_icon">
7+
android:icon="@drawable/launcher_icon"
8+
android:roundIcon="@drawable/launcher_icon_round">
69
<activity
710
android:name=".MainActivity"
811
android:exported="true"
@@ -23,7 +26,10 @@
2326
<intent-filter>
2427
<action android:name="android.intent.action.MAIN"/>
2528
<category android:name="android.intent.category.LAUNCHER"/>
29+
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
2630
</intent-filter>
31+
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
32+
android:resource="@xml/device_filter" />
2733
</activity>
2834
<!-- Don't delete the meta-data below.
2935
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
34.8 KB
Loading
17.7 KB
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)