Skip to content

Add Deneyap Kart v2 #11545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1eff389
Updated Pins of Devkits
DogushC Feb 16, 2023
76310db
Updated board.txt of all Devkits
DogushC Feb 16, 2023
e170557
Merge branch 'espressif:master' into master
DogushC Feb 20, 2023
1dec898
Remove Repeating Pin Definition
DogushC Mar 31, 2023
00d3e45
Fix Pin Definition
DogushC Mar 31, 2023
5823593
Remove Repeating Pin Definitions
DogushC Mar 31, 2023
1957eae
Update RGB LED definition
DogushC Mar 31, 2023
f7efb73
Merge branch 'espressif:master' into master
DogushC Mar 31, 2023
68ba551
Merge branch 'master' into master
DogushC Mar 31, 2023
c847bcc
Merge branch 'espressif:master' into master
DogushC Apr 5, 2023
f746624
Fix broken links for external library test
DogushC Apr 5, 2023
5d745a1
Merge branch 'espressif:master' into master
DogushC Apr 6, 2023
d66b740
Merge branch 'espressif:master' into master
DogushC Apr 7, 2023
2d1bacc
Update UploadMode Config of Deneyap Kart 1A v2
DogushC Apr 7, 2023
e61710c
Merge branch 'espressif:master' into master
DogushC Apr 10, 2023
8725ede
Merge branch 'espressif:master' into master
DogushC Apr 12, 2023
777cfcf
Merge branch 'espressif:master' into master
DogushC Apr 15, 2023
6dcd8da
Merge branch 'espressif:master' into master
DogushC Apr 24, 2023
8f32b78
Merge branch 'espressif:master' into master
DogushC May 18, 2023
7166dd2
Merge branch 'espressif:master' into master
DogushC May 31, 2023
acf6c7b
Merge branch 'espressif:master' into master
DogushC Jul 2, 2025
04ab5ec
Add Deneyap Kart v2
DogushC Jul 2, 2025
fe1339f
Update UploadMode config
DogushC Jul 2, 2025
5231e1c
Fixed typo fault
DogushC Jul 2, 2025
91dbdd0
Fixed build.board parameter
DogushC Jul 3, 2025
767304e
Removed unsupported Flash sizes and RAM type
DogushC Jul 3, 2025
9ace141
Merge branch 'master' into master
DogushC Jul 3, 2025
96eb39e
Remove unsupported partition options
DogushC Jul 3, 2025
4d49ddc
Fixed Annotations and Space
DogushC Jul 3, 2025
5a06590
Merge branch 'master' into master
DogushC Jul 3, 2025
8b9278e
Update pins_arduino.h
DogushC Jul 3, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update RGB LED definition
Update RGB LED definition for using digitalWrite() command with RGB LED.
  • Loading branch information
DogushC committed Mar 31, 2023
commit 1957eae47bb46f39f596cc95bbf8c87c3323b9b8
3 changes: 2 additions & 1 deletion variants/deneyapkart1A/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define Pins_Arduino_h

#include <stdint.h>
#include "soc/soc_caps.h"

#define EXTERNAL_NUM_INTERRUPTS 16
#define NUM_DIGITAL_PINS 40
Expand All @@ -11,7 +12,7 @@
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
#define digitalPinHasPWM(p) (p < 34)

static const uint8_t LED_BUILTIN = 13;
static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT+13;
#define BUILTIN_LED LED_BUILTIN
#define LED_BUILTIN LED_BUILTIN
#define RGB_BUILTIN LED_BUILTIN
Expand Down
3 changes: 2 additions & 1 deletion variants/deneyapkart1Av2/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define Pins_Arduino_h

#include <stdint.h>
#include "soc/soc_caps.h"

#define USB_VID 0x303A
#define USB_PID 0x8147
Expand All @@ -17,7 +18,7 @@
#define digitalPinToInterrupt(p) (((p)<48)?(p):-1)
#define digitalPinHasPWM(p) (p < 46)

static const uint8_t LED_BUILTIN = 48;
static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT+48;
#define BUILTIN_LED LED_BUILTIN
#define LED_BUILTIN LED_BUILTIN
#define RGB_BUILTIN LED_BUILTIN
Expand Down
3 changes: 2 additions & 1 deletion variants/deneyapkartg/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define Pins_Arduino_h

#include <stdint.h>
#include "soc/soc_caps.h"

#define USB_VID 0x303A
#define USB_PID 0x814A
Expand All @@ -17,7 +18,7 @@
#define digitalPinToInterrupt(p) (((p)<NUM_DIGITAL_PINS)?(p):-1)
#define digitalPinHasPWM(p) (p < EXTERNAL_NUM_INTERRUPTS)

static const uint8_t LED_BUILTIN = 10;
static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT+10;
#define BUILTIN_LED LED_BUILTIN
#define LED_BUILTIN LED_BUILTIN
#define RGB_BUILTIN LED_BUILTIN
Expand Down