-
Notifications
You must be signed in to change notification settings - Fork 7.7k
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
Add Deneyap Kart v2 #11545
Changes from 25 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
1eff389
Updated Pins of Devkits
DogushC 76310db
Updated board.txt of all Devkits
DogushC e170557
Merge branch 'espressif:master' into master
DogushC 1dec898
Remove Repeating Pin Definition
DogushC 00d3e45
Fix Pin Definition
DogushC 5823593
Remove Repeating Pin Definitions
DogushC 1957eae
Update RGB LED definition
DogushC f7efb73
Merge branch 'espressif:master' into master
DogushC 68ba551
Merge branch 'master' into master
DogushC c847bcc
Merge branch 'espressif:master' into master
DogushC f746624
Fix broken links for external library test
DogushC 5d745a1
Merge branch 'espressif:master' into master
DogushC d66b740
Merge branch 'espressif:master' into master
DogushC 2d1bacc
Update UploadMode Config of Deneyap Kart 1A v2
DogushC e61710c
Merge branch 'espressif:master' into master
DogushC 8725ede
Merge branch 'espressif:master' into master
DogushC 777cfcf
Merge branch 'espressif:master' into master
DogushC 6dcd8da
Merge branch 'espressif:master' into master
DogushC 8f32b78
Merge branch 'espressif:master' into master
DogushC 7166dd2
Merge branch 'espressif:master' into master
DogushC acf6c7b
Merge branch 'espressif:master' into master
DogushC 04ab5ec
Add Deneyap Kart v2
DogushC fe1339f
Update UploadMode config
DogushC 5231e1c
Fixed typo fault
DogushC 91dbdd0
Fixed build.board parameter
DogushC 767304e
Removed unsupported Flash sizes and RAM type
DogushC 9ace141
Merge branch 'master' into master
DogushC 96eb39e
Remove unsupported partition options
DogushC 4d49ddc
Fixed Annotations and Space
DogushC 5a06590
Merge branch 'master' into master
DogushC 8b9278e
Update pins_arduino.h
DogushC 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
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
#include "soc/soc_caps.h" | ||
|
||
#define USB_VID 0x303A | ||
#define USB_PID 0x82EB | ||
#define USB_MANUFACTURER "Turkish Technology Team Foundation (T3)" | ||
#define USB_PRODUCT "DENEYAP KART v2" | ||
#define USB_SERIAL "" // Empty string for MAC address | ||
|
||
static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT + 46; | ||
#define BUILTIN_LED LED_BUILTIN // backward compatibility | ||
#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN | ||
#define RGB_BUILTIN LED_BUILTIN | ||
#define RGBLED LED_BUILTIN | ||
#define RGB_BRIGHTNESS 64 | ||
|
||
static const uint8_t GPKEY = 0; | ||
#define KEY_BUILTIN GPKEY | ||
#define BUILTIN_KEY GPKEY | ||
|
||
static const uint8_t TX = 43; | ||
static const uint8_t RX = 44; | ||
#define TX1 TX | ||
#define RX1 RX | ||
|
||
static const uint8_t SDA = 47; | ||
static const uint8_t SCL = 21; | ||
|
||
static const uint8_t SS = 42; | ||
static const uint8_t MOSI = 39; | ||
static const uint8_t MISO = 40; | ||
static const uint8_t SCK = 41; | ||
|
||
static const uint8_t A0 = 4; | ||
static const uint8_t A1 = 5; | ||
static const uint8_t A2 = 6; | ||
static const uint8_t A3 = 7; | ||
static const uint8_t A4 = 15; | ||
static const uint8_t A5 = 16; | ||
static const uint8_t A6 = 17; | ||
static const uint8_t A7 = 18; | ||
static const uint8_t A8 = 8; | ||
static const uint8_t A9 = 9; | ||
static const uint8_t A10 = 10; | ||
static const uint8_t A11 = 11; | ||
static const uint8_t A12 = 2; | ||
static const uint8_t A13 = 1; | ||
static const uint8_t A14 = 3; | ||
static const uint8_t A15 = 12; | ||
static const uint8_t A16 = 13; | ||
static const uint8_t A17 = 14; | ||
|
||
static const uint8_t T0 = 4; | ||
static const uint8_t T1 = 5; | ||
static const uint8_t T2 = 6; | ||
static const uint8_t T3 = 7; | ||
static const uint8_t T4 = 8; | ||
static const uint8_t T5 = 9; | ||
static const uint8_t T6 = 10; | ||
static const uint8_t T7 = 11; | ||
static const uint8_t T8 = 2; | ||
static const uint8_t T9 = 1; | ||
static const uint8_t T10 = 3; | ||
static const uint8_t T11 = 12; | ||
static const uint8_t T12 = 13; | ||
static const uint8_t T13 = 14; | ||
|
||
static const uint8_t D0 = 1; | ||
static const uint8_t D1 = 2; | ||
static const uint8_t D2 = 43; | ||
static const uint8_t D3 = 44; | ||
static const uint8_t D4 = 42; | ||
static const uint8_t D5 = 41; | ||
static const uint8_t D6 = 40; | ||
static const uint8_t D7 = 39; | ||
static const uint8_t D8 = 38; | ||
static const uint8_t D9 = 48; | ||
static const uint8_t D10 = 47; | ||
static const uint8_t D11 = 21; | ||
static const uint8_t D12 = 11; | ||
static const uint8_t D13 = 10; | ||
static const uint8_t D14 = 9; | ||
static const uint8_t D15 = 8; | ||
static const uint8_t D16 = 18; | ||
static const uint8_t D17 = 17; | ||
static const uint8_t D18 = 16; | ||
static const uint8_t D19 = 15; | ||
static const uint8_t D20 = 7; | ||
static const uint8_t D21 = 6; | ||
static const uint8_t D22 = 5; | ||
static const uint8_t D23 = 4; | ||
static const uint8_t D24 = 46; | ||
static const uint8_t D25 = 0; | ||
static const uint8_t D26 = 3; | ||
static const uint8_t D27 = 12; | ||
static const uint8_t D28 = 13; | ||
static const uint8_t D29 = 14; | ||
|
||
static const uint8_t CAMSD = 4; | ||
static const uint8_t CAMSC = 5; | ||
static const uint8_t CAMD2 = 41; | ||
static const uint8_t CAMD3 = 2; | ||
static const uint8_t CAMD4 = 1; | ||
static const uint8_t CAMD5 = 42; | ||
static const uint8_t CAMD6 = 40; | ||
static const uint8_t CAMD7 = 38; | ||
static const uint8_t CAMD8 = 17; | ||
static const uint8_t CAMD9 = 15; | ||
static const uint8_t CAMPC = 39; | ||
static const uint8_t CAMXC = 16; | ||
static const uint8_t CAMH = 7; | ||
static const uint8_t CAMV = 6; | ||
|
||
static const uint8_t SDCM = 12; | ||
static const uint8_t SDCK = 13; | ||
static const uint8_t SDDA = 14; | ||
|
||
static const uint8_t BAT = 3; | ||
|
||
#endif /* Pins_Arduino_h */ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.