From 81a9a4073ea087acf9ac181e4beb40d38310c0e7 Mon Sep 17 00:00:00 2001 From: Ridac26 <100481512+Ridac26@users.noreply.github.com> Date: Sat, 14 May 2022 00:19:35 +0300 Subject: [PATCH 1/2] speed 12 --- Core/Inc/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Inc/config.h b/Core/Inc/config.h index 5866a26b..24587a98 100644 --- a/Core/Inc/config.h +++ b/Core/Inc/config.h @@ -4,7 +4,7 @@ #define BRAKEMAX 100 // speed limits for invividual modes in kph -#define SPEEDLIMIT_ECO 6 +#define SPEEDLIMIT_ECO 12 #define SPEEDLIMIT_NORMAL 20 #define SPEEDLIMIT_SPORT 50 From 53779ca8a7bd9216cb795a9cd8c1d5977cec0c1b Mon Sep 17 00:00:00 2001 From: Ridac26 <100481512+Ridac26@users.noreply.github.com> Date: Sat, 14 May 2022 00:32:25 +0300 Subject: [PATCH 2/2] Create work --- .github/work | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/work diff --git a/.github/work b/.github/work new file mode 100644 index 00000000..fd689e3e --- /dev/null +++ b/.github/work @@ -0,0 +1,30 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs:speed 12 + name:smartESC_STM32_v3 + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ github.event.inputs.name }}"