going to silver city

This commit is contained in:
equant 2021-08-18 17:08:46 -07:00
parent 668a5b4a64
commit 78aef81d95
50 changed files with 191900 additions and 1051 deletions

View File

@ -7,6 +7,7 @@ A general purpose ESP32 IOT board for the Apple IIe
+ https://github.com/me-no-dev/ESPAsyncWebServer
+ https://github.com/me-no-dev/AsyncTCP
+ ArduinoJSON by Benoit Blanchon
Instructions for installing Arduino libraries: https://www.arduino.cc/en/Guide/Libraries

View File

@ -8,10 +8,8 @@ blah blah blah
#include <WiFi.h>
#include <ESPAsyncWebServer.h>
#include <SPIFFS.h>
//#include <WebServer.h>
//#include <IdiotHTML.h>
#include <HTTPClient.h>
#include <ArduinoJson.h>
/**************/
/* ESP32 Pins */
@ -43,6 +41,21 @@ byte address_pins[] = {A0R, A1R, A2R, A3R};
#define RW_READ HIGH
unsigned int data_byte = 0;
// fisrt bit is a flag for if the data is from Apple or from ESP32.
// /
// / last bit is a flag for "more data waiting to be sent".
// / /
#define COMMAND_FROM_APPLE 0 // 0_______
#define COMMAND_FROM_ESP 128 // 1_______
#define COMMAND_MORE_DATA_WAITING 1 // _0000001
#define COMMAND_NO_DATA_WAITING 0 // _0000001
#define COMMAND_GENERIC_MESSAGE 2 // _000001_
#define COMMAND_FETCH_WEATHER 4 // _000010_
#define COMMAND_SEND_LONG_STRING 12 // _000110_
#define COMMAND_FORMAT_RAM 126 // _111111_
#define ETX 3 // ASCII "End of Text" (ETX) character
/************/
/* Interupt */
@ -63,6 +76,24 @@ const char* wifi_password = "xerxes27";
AsyncWebServer web_server(80);
//WebServer web_server(80);
/*******************/
/* Weather Service */
/*******************/
const String weather_service_api_key= "0ab97bbbea58592d7c9d64067a34d2d0";
const String weather_url = "http://api.openweathermap.org/data/2.5/weather?";
/*********/
/* Misc. */
/*********/
const long readLoopInterval = 10000; // millis
unsigned long lastReadLoopTime = 0;
//byte ram[ADDRESS_BUS_SIZE];
byte ram[16];
volatile byte ram_busy=0;
//const unsigned int RAM_BUSY=666;
#define RAM_BUSY 666
/*################################################
# ISR #
@ -74,19 +105,79 @@ void IRAM_ATTR isrDEVSEL(void) {
isr_handled = true;
}
unsigned long write_data(byte address, byte byte_to_write) {
set_address(address);
for (byte i=0; i<DATA_BUS_SIZE; i++) {
byte bit_to_write = (byte_to_write >> i) & 0b00000001;
pinMode(data_pins[i], OUTPUT);
delay(10);
digitalWrite(data_pins[i], bit_to_write);
/*################################################
# Functions #
################################################*/
boolean set_address(int address) {
if (ram_busy) {
Serial.println("BUSY");
return false;
}
digitalWrite(RW_PIN, RW_WRITE);
delay(50);
digitalWrite(RW_PIN, RW_READ);
for (byte i=0; i<DATA_BUS_SIZE; i++) {
pinMode(data_pins[i], INPUT);
ram_busy = true;
//Serial.print(" Setting address (");
//Serial.print(address);
//Serial.println(")");
//delay(20);
Serial.print(" A:");
for (byte i=0; i<ADDRESS_BUS_SIZE; i++) {
byte state = bitRead(address, i);
digitalWrite(address_pins[i], state);
Serial.print(state);
}
Serial.println();
return true;
}
unsigned int read_data(int address) {
Serial.print("READ: ");
Serial.println(address);
byte data_bus_read = 0;
if (set_address(address)) {
digitalWrite(RW_PIN, RW_READ); // Should already be set to RW_READ, but just in case.
Serial.print(" D:");
for (byte i=0; i<DATA_BUS_SIZE; i++) {
byte pin_state = digitalRead(data_pins[i]);
data_bus_read += pin_state * pow(2,i);
Serial.print(pin_state);
}
Serial.println();
ram_busy = false;
return data_bus_read;
} else {
return RAM_BUSY;
}
}
//signed int convert_to_signed_byte(byte byte_to_convert) {
//if (abs(requested_byte_to_write) > 127) {
//if (requested_byte_to_write < 0) {
boolean write_data(byte address, byte byte_to_write) {
Serial.print("WRITE: ");
Serial.print(byte_to_write);
Serial.print(" -> ");
Serial.println(address);
if (set_address(address)) {
//set_address(address);
Serial.print(" D:");
for (byte i=0; i<DATA_BUS_SIZE; i++) {
byte bit_to_write = (byte_to_write >> i) & 0b00000001;
pinMode(data_pins[i], OUTPUT);
digitalWrite(data_pins[i], bit_to_write);
Serial.print(bit_to_write);
}
Serial.println();
digitalWrite(RW_PIN, RW_WRITE);
delay(1);
digitalWrite(RW_PIN, RW_READ);
for (byte i=0; i<DATA_BUS_SIZE; i++) {
pinMode(data_pins[i], INPUT);
}
ram_busy = false;
return true;
} else {
return false;
}
}
@ -95,10 +186,146 @@ void store_ip_to_ram(byte offset) {
IPAddress ip_address = WiFi.localIP();
for (int i=0; i < ADDRESS_BUS_SIZE; i++) {
write_data(i+offset, ip_address[i]);
delay(100);
}
}
void send_string_to_apple(String string_to_send, byte command_message) {
if (string_to_send.length() > 15 - 1) { // - 1 because of null character at end of string.
} else {
int c=0;
for (c=0; c < string_to_send.length(); c++) {
write_data(c, string_to_send[c]);
}
write_data(c+1, ETX);
write_data(15, COMMAND_FROM_ESP + command_message + COMMAND_NO_DATA_WAITING);
}
}
void fetch_weather(char* city_name) {
HTTPClient http;
//http.begin(String(weather_url) + "?q=Tucson,us&APPID=" + String(weather_service_api_key));
const String request_url = weather_url + "q=Tucson,us&APPID=" + weather_service_api_key;
Serial.println(request_url);
http.begin(request_url);
int httpCode = http.GET(); //Make the request
delay(10);
if (httpCode > 0) { //Check for the returning code
String payload = http.getString();
//Serial.println(httpCode);
Serial.println("++++++++++++++++++++++++");
Serial.println(payload);
Serial.println("++++++++++++++++++++++++");
StaticJsonDocument<200> filter;
filter["weather"][0]["main"] = true;
filter["weather"][0]["description"] = true;
filter["main"]["humidity"] = true;
filter["main"]["temp"] = true;
filter["wind"]["speed"] = true;
filter["wind"]["deg"] = true;
StaticJsonDocument<400> doc;
DeserializationError error = deserializeJson(doc, payload, DeserializationOption::Filter(filter));
//DeserializationError error = deserializeJson(doc, payload);
if (error) {
Serial.print(F("deserializeJson() failed: "));
Serial.println(error.f_str());
} else {
//const char* main = doc["main"];
Serial.println("----------------------");
serializeJsonPretty(doc, Serial);
Serial.println("----------------------");
serializeJsonPretty(doc["wind"], Serial);
Serial.println("----------------------");
int temp = doc["main"]["humidity"];
int humidity = doc["main"]["humidity"];
float wind_speed = doc["wind"]["speed"];
int wind_deg = doc["wind"]["speed"];
String weather_description = doc["weather"][0]["description"];
write_data(0, round(temp-273.15));
write_data(1, round(humidity));
write_data(2, round(wind_deg/10)); // divide by twn because 360 is too big for 8 bits
write_data(3, round(wind_speed));
}
}
else {
Serial.println("Error on HTTP request");
}
http.end(); //Free the resources
}
void read_ram() {
for (int i=0; i < 16; i++) {
unsigned int foo = read_data(i);
ram[i] = foo;
}
}
String html_template_processor(const String& var) {
Serial.println("html_template_processor()");
String return_string = "";
if (var == "RAM_TABLE") {
read_ram();
for (int i=0; i < 16; i++) {
return_string += "<tr><td>"+String(i)+"</td><td>" + String(ram[i]) + "</td></tr>\n";
}
return return_string;
}
return var;
}
void www_weather(AsyncWebServerRequest *request) {
fetch_weather("Tucson");
request->send(SPIFFS, "/ram.htm", String(), false, html_template_processor);
}
void www_root(AsyncWebServerRequest *request) {
request->send(SPIFFS, "/index.htm", String(), false, html_template_processor);
}
void www_ram(AsyncWebServerRequest *request) {
request->send(SPIFFS, "/ram.htm", String(), false, html_template_processor);
}
void www_write_byte(AsyncWebServerRequest *request) {
Serial.println("www_write_byte()");
String address;
String data_byte;
if (request->hasParam("address")) {
address = request->getParam("address")->value();
//Serial.println("Found address: "+address);
if (request->hasParam("data")) {
data_byte = request->getParam("data")->value();
//Serial.println("Found data: "+data_byte);
write_data(address.toInt(), data_byte.toInt());
}
}
request->send(SPIFFS, "/ram.htm", String(), false, html_template_processor);
}
void www_css(AsyncWebServerRequest *request) {
request->send(SPIFFS, "/a2i.css", "text/css");
}
void prefill_ram_with_pattern_data() {
write_data(15, 0); // notify Apple IIe we are done processing command byte
write_data(14, 123); // notify Apple IIe we are done processing command byte
write_data(13, 1); // notify Apple IIe we are done processing command byte
write_data(12, 123); // notify Apple IIe we are done processing command byte
write_data(11, 2); // notify Apple IIe we are done processing command byte
write_data(10, 123); // notify Apple IIe we are done processing command byte
write_data(9, 3); // notify Apple IIe we are done processing command byte
write_data(8, 123); // notify Apple IIe we are done processing command byte
write_data(7, 4); // notify Apple IIe we are done processing command byte
write_data(6, 123); // notify Apple IIe we are done processing command byte
write_data(5, 5); // notify Apple IIe we are done processing command byte
write_data(4, 123); // notify Apple IIe we are done processing command byte
write_data(3, 6); // notify Apple IIe we are done processing command byte
write_data(2, 123); // notify Apple IIe we are done processing command byte
write_data(1, 7); // notify Apple IIe we are done processing command byte
write_data(0, 123); // notify Apple IIe we are done processing command byte
}
/*################################################
# Setup #
################################################*/
@ -120,7 +347,7 @@ void setup() {
pinMode(D7R, INPUT);
pinMode(RW_PIN, OUTPUT); digitalWrite(RW_PIN, RW_READ);
delay(100);
delay(10);
//wifi_scan();
/* Connect to wifi */
@ -132,13 +359,14 @@ void setup() {
WiFi.begin(wifi_ssid, wifi_password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
delay(900);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected successfully");
Serial.print("Got IP: ");
Serial.println(WiFi.localIP()); //Show ESP32 IP on serial
prefill_ram_with_pattern_data();
store_ip_to_ram(0);
//store_ip_to_ram(4);
@ -150,6 +378,7 @@ void setup() {
web_server.on("/a2i.css", HTTP_GET, www_css);
web_server.on("/ram", HTTP_GET, www_ram);
web_server.on("/write_byte", HTTP_GET, www_write_byte);
web_server.on("/weather", HTTP_GET, www_weather);
web_server.on("/heap", HTTP_GET, [](AsyncWebServerRequest *request){
request->send(200, "text/plain", "Free Heap: " + String(ESP.getFreeHeap()) + " bytes.");
});
@ -161,7 +390,7 @@ void setup() {
//web_server.on("/", www_root);
web_server.begin();
Serial.println("HTTP server started");
delay(100);
delay(10);
/* Display file system contents */
Serial.println("-----------------------------------------");
@ -177,100 +406,53 @@ void setup() {
//attachInterrupt(DEVSEL_PIN, isrDEVSEL, LOW);
}
/*################################################
# Functions #
################################################*/
void set_address(int address) {
//#if defined(DEBUG)
//Serial.print("Setting address (");
//Serial.print(address);
//Serial.print("): ");
//#endif
for (byte i=0; i<16; i++) {
byte state = bitRead(address, i);
digitalWrite(address_pins[i], state);
//#if defined(DEBUG)
//Serial.print(state);
//#endif
}
//#if defined(DEBUG)
//Serial.println();
//#endif
}
unsigned long read_data(int address) {
unsigned long data_bus_read = 0;
set_address(address);
digitalWrite(RW_PIN, RW_READ); // Should already be set to RW_READ, but just in case.
for (byte i=0; i<DATA_BUS_SIZE; i++) {
byte pin_state = digitalRead(data_pins[i]);
data_bus_read += pin_state * pow(2,i);
}
return data_bus_read;
}
/*################################################
# Main #
################################################*/
const long readLoopInterval = 7000; // millis
unsigned long lastReadLoopTime = 0;
//byte ram[ADDRESS_BUS_SIZE];
byte ram[16];
void read_ram() {
for (int i=0; i < 16; i++) {
byte foo = read_data(i);
ram[i] = foo;
delay(50);
}
}
void loop() {
//if (isr_handled) {
//data_byte = raw_register_read >> 12 & 0b00000000000011111111;
//isr_handled = false;
//}
}
String html_template_processor(const String& var) {
Serial.println("html_template_processor()");
String return_string = "";
if (var == "RAM_TABLE") {
read_ram();
for (int i=0; i < 16; i++) {
return_string += "<tr><td>"+String(i)+"</td><td>" + String(ram[i]) + "</td></tr>\n";
if ((millis() - lastReadLoopTime) > readLoopInterval) {
//Serial.println("+++");
unsigned int command_byte = read_data(15);
if (command_byte == RAM_BUSY) {
Serial.println("Command Read: RAM BUSY");
}
return return_string;
}
return var;
}
void www_root(AsyncWebServerRequest *request) {
request->send(SPIFFS, "/index.htm", String(), false, html_template_processor);
}
void www_ram(AsyncWebServerRequest *request) {
request->send(SPIFFS, "/ram.htm", String(), false, html_template_processor);
}
void www_write_byte(AsyncWebServerRequest *request) {
Serial.println("www_write_byte()");
String address;
String data_byte;
if (request->hasParam("address")) {
address = request->getParam("address")->value();
Serial.println("Found address: "+address);
if (request->hasParam("data")) {
data_byte = request->getParam("data")->value();
Serial.println("Found data: "+data_byte);
write_data(address.toInt(), data_byte.toInt());
else if (command_byte < COMMAND_FROM_ESP) {
// command came from apple (or webform).
Serial.print("Command Read: ");
Serial.println(command_byte);
//write_data(15, 1); // notify Apple IIe we are processing command byte
switch(command_byte) {
case COMMAND_FETCH_WEATHER:
Serial.println("Fetch Weather");
fetch_weather("Tucson");
break;
case COMMAND_SEND_LONG_STRING:
//send_string_to_apple("This is a long string", COMMAND_GENERIC_MESSAGE);
send_string_to_apple("ABCDE", COMMAND_GENERIC_MESSAGE);
case COMMAND_FORMAT_RAM:
Serial.println("Calling prefill_ram_with_pattern_data()");
prefill_ram_with_pattern_data();
write_data(15, 0); // notify Apple IIe we are done processing command byte
break;
}
/*
byte c = 0;
while (ram_busy && (c < 10)) {
delay(10);
c = c+1;
Serial.print("_");
}
Serial.println("^^^^");
write_data(15, 0); // notify Apple IIe we are done processing command byte
read_data(15); // notify Apple IIe we are done processing command byte
*/
}
lastReadLoopTime = millis();
}
request->send(SPIFFS, "/ram.htm", String(), false, html_template_processor);
}
void www_css(AsyncWebServerRequest *request) {
request->send(SPIFFS, "/a2i.css", "text/css");
}

View File

@ -1,762 +0,0 @@
(kicad_pcb (version 20171130) (host pcbnew 5.1.10-88a1d61d58~88~ubuntu18.04.1)
(general
(thickness 1.6)
(drawings 13)
(tracks 57)
(zones 0)
(modules 4)
(nets 90)
)
(page A4)
(title_block
(title apple2idiot)
(date 2021-07-27)
(rev 1.0.1)
(company "Nathanial Hendler")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.4)
(user_trace_width 1)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x3ffff_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber"))
)
(net 0 "")
(net 1 /+12V)
(net 2 /D0)
(net 3 /D1)
(net 4 /D2)
(net 5 /D3)
(net 6 /D4)
(net 7 /D5)
(net 8 /D6)
(net 9 /D7)
(net 10 /~DEVSEL)
(net 11 /PHI0)
(net 12 /USER1)
(net 13 /PHI1)
(net 14 /Q3)
(net 15 /7M)
(net 16 /COLORREF)
(net 17 /-5V)
(net 18 /-12V)
(net 19 /~INH)
(net 20 /~RES)
(net 21 /~IRQ)
(net 22 /~NMI)
(net 23 /INTIN)
(net 24 /DMAIN)
(net 25 /~IOSEL)
(net 26 /A0)
(net 27 /A1)
(net 28 /A2)
(net 29 /A3)
(net 30 /A4)
(net 31 /A5)
(net 32 /A6)
(net 33 /A7)
(net 34 /A8)
(net 35 /A9)
(net 36 /A10)
(net 37 /A11)
(net 38 /A12)
(net 39 /A13)
(net 40 /A14)
(net 41 /A15)
(net 42 /R~W)
(net 43 /SYNC)
(net 44 /~IOSTRB)
(net 45 /RDY)
(net 46 /~DMA)
(net 47 /INTOUT)
(net 48 /DMAOUT)
(net 49 GND)
(net 50 +5V)
(net 51 "Net-(U1-Pad42)")
(net 52 "Net-(U2-Pad36)")
(net 53 "Net-(U2-Pad34)")
(net 54 "Net-(U2-Pad33)")
(net 55 "Net-(U2-Pad32)")
(net 56 "Net-(U2-Pad31)")
(net 57 "Net-(U2-Pad30)")
(net 58 "Net-(U1-Pad46)")
(net 59 "Net-(U1-Pad38)")
(net 60 "Net-(U2-Pad24)")
(net 61 "Net-(U2-Pad23)")
(net 62 "Net-(U2-Pad18)")
(net 63 "Net-(U2-Pad17)")
(net 64 "Net-(U2-Pad16)")
(net 65 "Net-(U1-Pad39)")
(net 66 "Net-(U1-Pad40)")
(net 67 "Net-(U1-Pad41)")
(net 68 "Net-(U1-Pad3)")
(net 69 "Net-(U1-Pad45)")
(net 70 "Net-(U2-Pad4)")
(net 71 "Net-(U2-Pad3)")
(net 72 "Net-(U2-Pad2)")
(net 73 "Net-(U1-Pad44)")
(net 74 "Net-(U1-Pad37)")
(net 75 "Net-(U1-Pad36)")
(net 76 "Net-(U1-Pad35)")
(net 77 "Net-(U1-Pad34)")
(net 78 "Net-(U1-Pad33)")
(net 79 "Net-(U1-Pad32)")
(net 80 "Net-(U1-Pad31)")
(net 81 "Net-(U1-Pad30)")
(net 82 "Net-(U1-Pad29)")
(net 83 "Net-(U1-Pad28)")
(net 84 "Net-(U1-Pad27)")
(net 85 "Net-(U1-Pad26)")
(net 86 "Net-(U1-Pad25)")
(net 87 "Net-(U2-Pad38)")
(net 88 "Net-(U2-Pad37)")
(net 89 "Net-(U2-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
(add_net /+12V)
(add_net /-12V)
(add_net /-5V)
(add_net /7M)
(add_net /A0)
(add_net /A1)
(add_net /A10)
(add_net /A11)
(add_net /A12)
(add_net /A13)
(add_net /A14)
(add_net /A15)
(add_net /A2)
(add_net /A3)
(add_net /A4)
(add_net /A5)
(add_net /A6)
(add_net /A7)
(add_net /A8)
(add_net /A9)
(add_net /COLORREF)
(add_net /D0)
(add_net /D1)
(add_net /D2)
(add_net /D3)
(add_net /D4)
(add_net /D5)
(add_net /D6)
(add_net /D7)
(add_net /DMAIN)
(add_net /DMAOUT)
(add_net /INTIN)
(add_net /INTOUT)
(add_net /PHI0)
(add_net /PHI1)
(add_net /Q3)
(add_net /RDY)
(add_net /R~W)
(add_net /SYNC)
(add_net /USER1)
(add_net /~DEVSEL)
(add_net /~DMA)
(add_net /~INH)
(add_net /~IOSEL)
(add_net /~IOSTRB)
(add_net /~IRQ)
(add_net /~NMI)
(add_net /~RES)
(add_net GND)
(add_net "Net-(U1-Pad25)")
(add_net "Net-(U1-Pad26)")
(add_net "Net-(U1-Pad27)")
(add_net "Net-(U1-Pad28)")
(add_net "Net-(U1-Pad29)")
(add_net "Net-(U1-Pad3)")
(add_net "Net-(U1-Pad30)")
(add_net "Net-(U1-Pad31)")
(add_net "Net-(U1-Pad32)")
(add_net "Net-(U1-Pad33)")
(add_net "Net-(U1-Pad34)")
(add_net "Net-(U1-Pad35)")
(add_net "Net-(U1-Pad36)")
(add_net "Net-(U1-Pad37)")
(add_net "Net-(U1-Pad38)")
(add_net "Net-(U1-Pad39)")
(add_net "Net-(U1-Pad40)")
(add_net "Net-(U1-Pad41)")
(add_net "Net-(U1-Pad42)")
(add_net "Net-(U1-Pad44)")
(add_net "Net-(U1-Pad45)")
(add_net "Net-(U1-Pad46)")
(add_net "Net-(U2-Pad1)")
(add_net "Net-(U2-Pad16)")
(add_net "Net-(U2-Pad17)")
(add_net "Net-(U2-Pad18)")
(add_net "Net-(U2-Pad2)")
(add_net "Net-(U2-Pad23)")
(add_net "Net-(U2-Pad24)")
(add_net "Net-(U2-Pad3)")
(add_net "Net-(U2-Pad30)")
(add_net "Net-(U2-Pad31)")
(add_net "Net-(U2-Pad32)")
(add_net "Net-(U2-Pad33)")
(add_net "Net-(U2-Pad34)")
(add_net "Net-(U2-Pad36)")
(add_net "Net-(U2-Pad37)")
(add_net "Net-(U2-Pad38)")
(add_net "Net-(U2-Pad4)")
)
(module ESPDEVKIT:MODULE_ESP32-DEVKITC-32D (layer F.Cu) (tedit 6100DBC9) (tstamp 61015E67)
(at 217.17 88.9)
(path /613EE5FC)
(fp_text reference U2 (at -10.829175 -28.446045) (layer F.SilkS)
(effects (font (size 1.000386 1.000386) (thickness 0.15)))
)
(fp_text value ESP32-DEVKITC-32D (at 1.24136 28.294535) (layer F.Fab)
(effects (font (size 1.001047 1.001047) (thickness 0.15)))
)
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer F.Fab) (width 0.28))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer F.Fab) (width 0.28))
(fp_line (start -14.2 27.5) (end -14.2 -27.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.2 27.5) (end -14.2 27.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.2 -27.4) (end 14.2 27.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -14.2 -27.4) (end 14.2 -27.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer F.SilkS) (width 0.127))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer F.Fab) (width 0.127))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer F.Fab) (width 0.127))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer F.Fab) (width 0.127))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer F.Fab) (width 0.127))
(pad 38 thru_hole circle (at 12.7 25.96) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 87 "Net-(U2-Pad38)"))
(pad 37 thru_hole circle (at 12.7 23.42) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 88 "Net-(U2-Pad37)"))
(pad 36 thru_hole circle (at 12.7 20.88) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 52 "Net-(U2-Pad36)"))
(pad 35 thru_hole circle (at 12.7 18.34) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 83 "Net-(U1-Pad28)"))
(pad 34 thru_hole circle (at 12.7 15.8) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 53 "Net-(U2-Pad34)"))
(pad 33 thru_hole circle (at 12.7 13.26) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 54 "Net-(U2-Pad33)"))
(pad 32 thru_hole circle (at 12.7 10.72) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 55 "Net-(U2-Pad32)"))
(pad 31 thru_hole circle (at 12.7 8.18) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 56 "Net-(U2-Pad31)"))
(pad 30 thru_hole circle (at 12.7 5.64) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 57 "Net-(U2-Pad30)"))
(pad 29 thru_hole circle (at 12.7 3.1) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 58 "Net-(U1-Pad46)"))
(pad 28 thru_hole circle (at 12.7 0.56) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 82 "Net-(U1-Pad29)"))
(pad 27 thru_hole circle (at 12.7 -1.98) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 81 "Net-(U1-Pad30)"))
(pad 26 thru_hole circle (at 12.7 -4.52) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 49 GND))
(pad 25 thru_hole circle (at 12.7 -7.06) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 80 "Net-(U1-Pad31)"))
(pad 24 thru_hole circle (at 12.7 -9.6) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 60 "Net-(U2-Pad24)"))
(pad 23 thru_hole circle (at 12.7 -12.14) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 61 "Net-(U2-Pad23)"))
(pad 22 thru_hole circle (at 12.7 -14.68) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 79 "Net-(U1-Pad32)"))
(pad 21 thru_hole circle (at 12.7 -17.22) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 51 "Net-(U1-Pad42)"))
(pad 20 thru_hole circle (at 12.7 -19.76) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 49 GND))
(pad 18 thru_hole circle (at -12.7 23.42) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 62 "Net-(U2-Pad18)"))
(pad 17 thru_hole circle (at -12.7 20.88) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 63 "Net-(U2-Pad17)"))
(pad 16 thru_hole circle (at -12.7 18.34) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 64 "Net-(U2-Pad16)"))
(pad 15 thru_hole circle (at -12.7 15.8) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 85 "Net-(U1-Pad26)"))
(pad 14 thru_hole circle (at -12.7 13.26) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 49 GND))
(pad 13 thru_hole circle (at -12.7 10.72) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 86 "Net-(U1-Pad25)"))
(pad 12 thru_hole circle (at -12.7 8.18) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 84 "Net-(U1-Pad27)"))
(pad 11 thru_hole circle (at -12.7 5.64) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 65 "Net-(U1-Pad39)"))
(pad 10 thru_hole circle (at -12.7 3.1) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 66 "Net-(U1-Pad40)"))
(pad 9 thru_hole circle (at -12.7 0.56) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 67 "Net-(U1-Pad41)"))
(pad 8 thru_hole circle (at -12.7 -1.98) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 74 "Net-(U1-Pad37)"))
(pad 7 thru_hole circle (at -12.7 -4.52) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 59 "Net-(U1-Pad38)"))
(pad 6 thru_hole circle (at -12.7 -7.06) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 68 "Net-(U1-Pad3)"))
(pad 5 thru_hole circle (at -12.7 -9.6) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 25 /~IOSEL))
(pad 4 thru_hole circle (at -12.7 -12.14) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 70 "Net-(U2-Pad4)"))
(pad 3 thru_hole circle (at -12.7 -14.68) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 71 "Net-(U2-Pad3)"))
(pad 19 thru_hole circle (at -12.7 25.96) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 50 +5V))
(pad 2 thru_hole circle (at -12.7 -17.22) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 72 "Net-(U2-Pad2)"))
(pad 1 thru_hole rect (at -12.7 -19.76) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 89 "Net-(U2-Pad1)"))
)
(module pub:AppleIIBus (layer F.Cu) (tedit 5E4F43C2) (tstamp 5E33EA12)
(at 200.66 128.397)
(path /5E339C7A)
(fp_text reference J1 (at 0 -5.08) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "CARD EDGE" (at 25.4 -5.08) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_poly (pts (xy -32.893 -3.81) (xy -32.893 3.81) (xy -31.877 3.81) (xy -31.877 -3.81)) (layer F.Mask) (width 0))
(fp_poly (pts (xy 32.893 -3.81) (xy 31.877 -3.81) (xy 31.877 3.81) (xy 32.893 3.81)) (layer F.Mask) (width 0))
(fp_poly (pts (xy -32.893 -3.81) (xy -32.893 3.81) (xy -31.877 3.81) (xy -31.877 -3.81)) (layer B.Mask) (width 0))
(fp_poly (pts (xy 32.893 -3.81) (xy 31.877 -3.81) (xy 31.877 3.81) (xy 32.893 3.81)) (layer B.Mask) (width 0))
(pad 26 smd rect (at 30.48 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 49 GND) (solder_mask_margin 0.635) (clearance 0.254))
(pad 27 smd rect (at 27.94 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 24 /DMAIN) (solder_mask_margin 0.635) (clearance 0.254))
(pad 28 smd rect (at 25.4 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 23 /INTIN) (solder_mask_margin 0.635) (clearance 0.254))
(pad 29 smd rect (at 22.86 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 22 /~NMI) (solder_mask_margin 0.635) (clearance 0.254))
(pad 30 smd rect (at 20.32 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 21 /~IRQ) (solder_mask_margin 0.635) (clearance 0.254))
(pad 31 smd rect (at 17.78 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 20 /~RES) (solder_mask_margin 0.635) (clearance 0.254))
(pad 32 smd rect (at 15.24 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 19 /~INH) (solder_mask_margin 0.635) (clearance 0.254))
(pad 33 smd rect (at 12.7 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 18 /-12V) (solder_mask_margin 0.635) (clearance 0.254))
(pad 34 smd rect (at 10.16 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 17 /-5V) (solder_mask_margin 0.635) (clearance 0.254))
(pad 35 smd rect (at 7.62 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 16 /COLORREF) (solder_mask_margin 0.635) (clearance 0.254))
(pad 36 smd rect (at 5.08 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 15 /7M) (solder_mask_margin 0.635) (clearance 0.254))
(pad 37 smd rect (at 2.54 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 14 /Q3) (solder_mask_margin 0.635) (clearance 0.254))
(pad 38 smd rect (at 0 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 13 /PHI1) (solder_mask_margin 0.635) (clearance 0.254))
(pad 39 smd rect (at -2.54 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 12 /USER1) (solder_mask_margin 0.635) (clearance 0.254))
(pad 40 smd rect (at -5.08 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 11 /PHI0) (solder_mask_margin 0.635) (clearance 0.254))
(pad 41 smd rect (at -7.62 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 10 /~DEVSEL) (solder_mask_margin 0.635) (clearance 0.254))
(pad 42 smd rect (at -10.16 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 9 /D7) (solder_mask_margin 0.635) (clearance 0.254))
(pad 43 smd rect (at -12.7 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 8 /D6) (solder_mask_margin 0.635) (clearance 0.254))
(pad 44 smd rect (at -15.24 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 7 /D5) (solder_mask_margin 0.635) (clearance 0.254))
(pad 45 smd rect (at -17.78 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 6 /D4) (solder_mask_margin 0.635) (clearance 0.254))
(pad 46 smd rect (at -20.32 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 5 /D3) (solder_mask_margin 0.635) (clearance 0.254))
(pad 47 smd rect (at -22.86 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 4 /D2) (solder_mask_margin 0.635) (clearance 0.254))
(pad 48 smd rect (at -25.4 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 3 /D1) (solder_mask_margin 0.635) (clearance 0.254))
(pad 49 smd rect (at -27.94 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 2 /D0) (solder_mask_margin 0.635) (clearance 0.254))
(pad 50 smd rect (at -30.48 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 1 /+12V) (solder_mask_margin 0.635) (clearance 0.254))
(pad 25 smd rect (at 30.48 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 50 +5V) (solder_mask_margin 0.635) (clearance 0.254))
(pad 24 smd rect (at 27.94 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 48 /DMAOUT) (solder_mask_margin 0.635) (clearance 0.254))
(pad 23 smd rect (at 25.4 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 47 /INTOUT) (solder_mask_margin 0.635) (clearance 0.254))
(pad 22 smd rect (at 22.86 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 46 /~DMA) (solder_mask_margin 0.635) (clearance 0.254))
(pad 21 smd rect (at 20.32 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 45 /RDY) (solder_mask_margin 0.635) (clearance 0.254))
(pad 20 smd rect (at 17.78 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 44 /~IOSTRB) (solder_mask_margin 0.635) (clearance 0.254))
(pad 19 smd rect (at 15.24 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 43 /SYNC) (solder_mask_margin 0.635) (clearance 0.254))
(pad 18 smd rect (at 12.7 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 42 /R~W) (solder_mask_margin 0.635) (clearance 0.254))
(pad 17 smd rect (at 10.16 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 41 /A15) (solder_mask_margin 0.635) (clearance 0.254))
(pad 16 smd rect (at 7.62 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 40 /A14) (solder_mask_margin 0.635) (clearance 0.254))
(pad 15 smd rect (at 5.08 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 39 /A13) (solder_mask_margin 0.635) (clearance 0.254))
(pad 14 smd rect (at 2.54 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 38 /A12) (solder_mask_margin 0.635) (clearance 0.254))
(pad 13 smd rect (at 0 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 37 /A11) (solder_mask_margin 0.635) (clearance 0.254))
(pad 12 smd rect (at -2.54 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 36 /A10) (solder_mask_margin 0.635) (clearance 0.254))
(pad 11 smd rect (at -5.08 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 35 /A9) (solder_mask_margin 0.635) (clearance 0.254))
(pad 10 smd rect (at -7.62 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 34 /A8) (solder_mask_margin 0.635) (clearance 0.254))
(pad 9 smd rect (at -10.16 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 33 /A7) (solder_mask_margin 0.635) (clearance 0.254))
(pad 8 smd rect (at -12.7 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 32 /A6) (solder_mask_margin 0.635) (clearance 0.254))
(pad 7 smd rect (at -15.24 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 31 /A5) (solder_mask_margin 0.635) (clearance 0.254))
(pad 6 smd rect (at -17.78 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 30 /A4) (solder_mask_margin 0.635) (clearance 0.254))
(pad 5 smd rect (at -20.32 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 29 /A3) (solder_mask_margin 0.635) (clearance 0.254))
(pad 4 smd rect (at -22.86 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 28 /A2) (solder_mask_margin 0.635) (clearance 0.254))
(pad 3 smd rect (at -25.4 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 27 /A1) (solder_mask_margin 0.635) (clearance 0.254))
(pad 2 smd rect (at -27.94 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 26 /A0) (solder_mask_margin 0.635) (clearance 0.254))
(pad 1 smd rect (at -30.48 0) (size 1.524 6.35) (layers F.Cu F.Mask)
(net 25 /~IOSEL) (solder_mask_margin 0.635) (clearance 0.254))
)
(module Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 61017937)
(at 198 111 90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor")
(path /6103513B)
(fp_text reference C1 (at 2.5 -2.5 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value C (at 2.5 2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.5 -1.25) (end -1.5 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 1.25) (end 6.5 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 1.25) (end 6.5 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -1.25) (end -1.5 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.62 -1.37) (end 6.62 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 1.37) (end 6.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 -1.37) (end -1.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 6.62 -1.37) (end 6.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.75 -1.5) (end -1.75 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.5) (end 6.75 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.75 1.5) (end 6.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.75 -1.5) (end -1.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.5 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 +5V))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D8.0mm_W2.5mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_DIP:DIP-48_W15.24mm_Socket_LongPads (layer F.Cu) (tedit 5A02E8C5) (tstamp 6101CB7E)
(at 120.65 92.71 90)
(descr "48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(path /6102DC5C)
(fp_text reference U1 (at 7.62 -2.33 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value IDT7132 (at 7.62 60.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 14.985 -1.27) (end 14.985 59.69) (layer F.Fab) (width 0.1))
(fp_line (start 14.985 59.69) (end 0.255 59.69) (layer F.Fab) (width 0.1))
(fp_line (start 0.255 59.69) (end 0.255 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -1.33) (end -1.27 59.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 59.75) (end 16.51 59.75) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 59.75) (end 16.51 -1.33) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer F.Fab) (width 0.1))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 -1.33) (end 1.56 59.75) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 59.75) (end 13.68 59.75) (layer F.SilkS) (width 0.12))
(fp_line (start 13.68 59.75) (end 13.68 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 -1.39) (end -1.44 59.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 59.81) (end 16.68 59.81) (layer F.SilkS) (width 0.12))
(fp_line (start 16.68 59.81) (end 16.68 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start -1.55 -1.6) (end -1.55 60) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 60) (end 16.8 60) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.8 60) (end 16.8 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 7.62 29.21 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 7.62 -1.33) (end 6.62 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
(pad 48 thru_hole oval (at 15.24 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 +5V))
(pad 24 thru_hole oval (at 0 58.42 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 47 thru_hole oval (at 15.24 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 23 thru_hole oval (at 0 55.88 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 /D7))
(pad 46 thru_hole oval (at 15.24 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 58 "Net-(U1-Pad46)"))
(pad 22 thru_hole oval (at 0 53.34 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 /D6))
(pad 45 thru_hole oval (at 15.24 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 69 "Net-(U1-Pad45)"))
(pad 21 thru_hole oval (at 0 50.8 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 /D5))
(pad 44 thru_hole oval (at 15.24 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 73 "Net-(U1-Pad44)"))
(pad 20 thru_hole oval (at 0 48.26 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 /D4))
(pad 43 thru_hole oval (at 15.24 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 19 thru_hole oval (at 0 45.72 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 /D3))
(pad 42 thru_hole oval (at 15.24 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "Net-(U1-Pad42)"))
(pad 18 thru_hole oval (at 0 43.18 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 /D2))
(pad 41 thru_hole oval (at 15.24 17.78 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 67 "Net-(U1-Pad41)"))
(pad 17 thru_hole oval (at 0 40.64 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 /D1))
(pad 40 thru_hole oval (at 15.24 20.32 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 66 "Net-(U1-Pad40)"))
(pad 16 thru_hole oval (at 0 38.1 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 /D0))
(pad 39 thru_hole oval (at 15.24 22.86 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 65 "Net-(U1-Pad39)"))
(pad 15 thru_hole oval (at 0 35.56 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 38 thru_hole oval (at 15.24 25.4 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 59 "Net-(U1-Pad38)"))
(pad 14 thru_hole oval (at 0 33.02 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 37 thru_hole oval (at 15.24 27.94 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 74 "Net-(U1-Pad37)"))
(pad 13 thru_hole oval (at 0 30.48 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 /A7))
(pad 36 thru_hole oval (at 15.24 30.48 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 75 "Net-(U1-Pad36)"))
(pad 12 thru_hole oval (at 0 27.94 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 /A6))
(pad 35 thru_hole oval (at 15.24 33.02 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 76 "Net-(U1-Pad35)"))
(pad 11 thru_hole oval (at 0 25.4 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 /A5))
(pad 34 thru_hole oval (at 15.24 35.56 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 77 "Net-(U1-Pad34)"))
(pad 10 thru_hole oval (at 0 22.86 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 /A4))
(pad 33 thru_hole oval (at 15.24 38.1 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 78 "Net-(U1-Pad33)"))
(pad 9 thru_hole oval (at 0 20.32 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 /A3))
(pad 32 thru_hole oval (at 15.24 40.64 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 79 "Net-(U1-Pad32)"))
(pad 8 thru_hole oval (at 0 17.78 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 /A2))
(pad 31 thru_hole oval (at 15.24 43.18 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 80 "Net-(U1-Pad31)"))
(pad 7 thru_hole oval (at 0 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 /A1))
(pad 30 thru_hole oval (at 15.24 45.72 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 81 "Net-(U1-Pad30)"))
(pad 6 thru_hole oval (at 0 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 /A0))
(pad 29 thru_hole oval (at 15.24 48.26 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "Net-(U1-Pad29)"))
(pad 5 thru_hole oval (at 0 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 28 thru_hole oval (at 15.24 50.8 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "Net-(U1-Pad28)"))
(pad 4 thru_hole oval (at 0 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 GND))
(pad 27 thru_hole oval (at 15.24 53.34 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 84 "Net-(U1-Pad27)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 68 "Net-(U1-Pad3)"))
(pad 26 thru_hole oval (at 15.24 55.88 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 85 "Net-(U1-Pad26)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 /R~W))
(pad 25 thru_hole oval (at 15.24 58.42 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 86 "Net-(U1-Pad25)"))
(pad 1 thru_hole rect (at 0 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 /~DEVSEL))
(model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-48_W15.24mm_Socket.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 167.767 124.587) (end 73.66 124.587) (layer Edge.Cuts) (width 0.05))
(gr_line (start 167.767 132.207) (end 167.767 124.587) (layer Edge.Cuts) (width 0.05))
(gr_line (start 167.767 132.207) (end 233.553 132.207) (layer Edge.Cuts) (width 0.05))
(gr_text "design by Nathanial Hendler, Tucson Arizona" (at 76.2 121.92) (layer F.SilkS) (tstamp 6021F06C)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text "rev. 0.0.1 - 2021/07/27" (at 76.2 120.015) (layer F.SilkS) (tstamp 6021F075)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text apple2idiot (at 76.2 116.205) (layer F.SilkS) (tstamp 61016A0C)
(effects (font (size 3 3) (thickness 0.45)) (justify left))
)
(gr_line (start 240.03 55.88) (end 240.03 111.76) (layer F.SilkS) (width 0.12) (tstamp 5E3416DC))
(gr_line (start 74.93 55.88) (end 240.03 55.88) (layer F.SilkS) (width 0.12))
(gr_line (start 74.93 111.76) (end 74.93 55.88) (layer F.SilkS) (width 0.12))
(gr_line (start 73.66 54.737) (end 73.66 124.587) (layer Edge.Cuts) (width 0.05) (tstamp 5E34057F))
(gr_line (start 241.3 54.737) (end 73.66 54.737) (layer Edge.Cuts) (width 0.05))
(gr_line (start 241.3 124.587) (end 241.3 54.737) (layer Edge.Cuts) (width 0.05) (tstamp 5E3416F1))
(gr_line (start 233.553 124.587) (end 241.3 124.587) (layer Edge.Cuts) (width 0.05))
(segment (start 172.72 106.68) (end 172.72 128.397) (width 0.25) (layer B.Cu) (net 2))
(segment (start 158.75 92.71) (end 172.72 106.68) (width 0.25) (layer B.Cu) (net 2))
(segment (start 175.26 106.68) (end 175.26 128.397) (width 0.25) (layer B.Cu) (net 3))
(segment (start 161.29 92.71) (end 175.26 106.68) (width 0.25) (layer B.Cu) (net 3))
(segment (start 177.8 106.68) (end 177.8 128.397) (width 0.25) (layer B.Cu) (net 4))
(segment (start 163.83 92.71) (end 177.8 106.68) (width 0.25) (layer B.Cu) (net 4))
(segment (start 180.34 106.68) (end 180.34 128.397) (width 0.25) (layer B.Cu) (net 5))
(segment (start 166.37 92.71) (end 180.34 106.68) (width 0.25) (layer B.Cu) (net 5))
(segment (start 182.88 106.68) (end 182.88 128.397) (width 0.25) (layer B.Cu) (net 6))
(segment (start 168.91 92.71) (end 182.88 106.68) (width 0.25) (layer B.Cu) (net 6))
(segment (start 185.42 106.68) (end 185.42 128.397) (width 0.25) (layer B.Cu) (net 7))
(segment (start 171.45 92.71) (end 185.42 106.68) (width 0.25) (layer B.Cu) (net 7))
(segment (start 187.96 106.68) (end 187.96 128.397) (width 0.25) (layer B.Cu) (net 8))
(segment (start 173.99 92.71) (end 187.96 106.68) (width 0.25) (layer B.Cu) (net 8))
(segment (start 190.5 106.68) (end 190.5 128.397) (width 0.25) (layer B.Cu) (net 9))
(segment (start 176.53 92.71) (end 190.5 106.68) (width 0.25) (layer B.Cu) (net 9))
(segment (start 134.87501 94.23501) (end 134.87501 97.87501) (width 0.25) (layer F.Cu) (net 26))
(segment (start 133.35 92.71) (end 134.87501 94.23501) (width 0.25) (layer F.Cu) (net 26))
(segment (start 172.72 126.317798) (end 172.72 128.397) (width 0.25) (layer F.Cu) (net 26))
(segment (start 170.639192 124.23699) (end 172.72 126.317798) (width 0.25) (layer F.Cu) (net 26))
(segment (start 161.23699 124.23699) (end 170.639192 124.23699) (width 0.25) (layer F.Cu) (net 26))
(segment (start 134.87501 97.87501) (end 161.23699 124.23699) (width 0.25) (layer F.Cu) (net 26))
(segment (start 135.89 92.71) (end 135.89 96.89) (width 0.25) (layer F.Cu) (net 27))
(segment (start 162.78698 123.78698) (end 173.78698 123.78698) (width 0.25) (layer F.Cu) (net 27))
(segment (start 135.89 96.89) (end 162.78698 123.78698) (width 0.25) (layer F.Cu) (net 27))
(segment (start 175.26 125.26) (end 175.26 128.397) (width 0.25) (layer F.Cu) (net 27))
(segment (start 173.78698 123.78698) (end 175.26 125.26) (width 0.25) (layer F.Cu) (net 27))
(segment (start 173.482202 122) (end 177.8 126.317798) (width 0.25) (layer F.Cu) (net 28))
(segment (start 163 122) (end 173.482202 122) (width 0.25) (layer F.Cu) (net 28))
(segment (start 138.43 97.43) (end 163 122) (width 0.25) (layer F.Cu) (net 28))
(segment (start 177.8 126.317798) (end 177.8 128.397) (width 0.25) (layer F.Cu) (net 28))
(segment (start 138.43 92.71) (end 138.43 97.43) (width 0.25) (layer F.Cu) (net 28))
(segment (start 140.97 92.71) (end 140.97 96.97) (width 0.25) (layer F.Cu) (net 29))
(segment (start 140.97 96.97) (end 164 120) (width 0.25) (layer F.Cu) (net 29))
(segment (start 180.34 124.972) (end 180.34 128.397) (width 0.25) (layer F.Cu) (net 29))
(segment (start 175.368 120) (end 180.34 124.972) (width 0.25) (layer F.Cu) (net 29))
(segment (start 164 120) (end 175.368 120) (width 0.25) (layer F.Cu) (net 29))
(segment (start 143.51 92.71) (end 143.51 96.51) (width 0.25) (layer F.Cu) (net 30))
(segment (start 143.51 96.51) (end 165 118) (width 0.25) (layer F.Cu) (net 30))
(segment (start 182.88 124.972) (end 182.88 128.397) (width 0.25) (layer F.Cu) (net 30))
(segment (start 175.908 118) (end 182.88 124.972) (width 0.25) (layer F.Cu) (net 30))
(segment (start 165 118) (end 175.908 118) (width 0.25) (layer F.Cu) (net 30))
(segment (start 146.05 92.71) (end 146.05 96.05) (width 0.25) (layer F.Cu) (net 31))
(segment (start 146.05 96.05) (end 166 116) (width 0.25) (layer F.Cu) (net 31))
(segment (start 185.42 124.972) (end 185.42 128.397) (width 0.25) (layer F.Cu) (net 31))
(segment (start 176.448 116) (end 185.42 124.972) (width 0.25) (layer F.Cu) (net 31))
(segment (start 166 116) (end 176.448 116) (width 0.25) (layer F.Cu) (net 31))
(segment (start 187.96 124.96) (end 187.96 128.397) (width 0.25) (layer F.Cu) (net 32))
(segment (start 178 115) (end 187.96 124.96) (width 0.25) (layer F.Cu) (net 32))
(segment (start 167 115) (end 178 115) (width 0.25) (layer F.Cu) (net 32))
(segment (start 148.59 92.71) (end 148.59 96.59) (width 0.25) (layer F.Cu) (net 32))
(segment (start 148.59 96.59) (end 167 115) (width 0.25) (layer F.Cu) (net 32))
(segment (start 151.13 92.71) (end 151.13 96.13) (width 0.25) (layer F.Cu) (net 33))
(segment (start 151.13 96.13) (end 168 113) (width 0.25) (layer F.Cu) (net 33))
(segment (start 190.5 126.317798) (end 190.5 128.397) (width 0.25) (layer F.Cu) (net 33))
(segment (start 177.182202 113) (end 190.5 126.317798) (width 0.25) (layer F.Cu) (net 33))
(segment (start 168 113) (end 177.182202 113) (width 0.25) (layer F.Cu) (net 33))
)

View File

@ -186,6 +186,30 @@ X IO25 9 -800 100 200 R 40 40 0 0 B
ENDDRAW
ENDDEF
#
# Jumper_Jumper_3_Bridged12
#
DEF Jumper_Jumper_3_Bridged12 JP 0 0 Y N 1 F N
F0 "JP" -100 -100 50 H V C CNN
F1 "Jumper_Jumper_3_Bridged12" 0 110 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Jumper*
TestPoint*3Pads*
TestPoint*Bridge*
$ENDFPLIST
DRAW
A -65 -50 89 1282 518 0 1 0 N -120 20 -10 20
C -130 0 20 0 0 0 N
C 0 0 20 0 0 0 N
C 130 0 20 0 0 0 N
P 2 0 1 0 0 -50 0 -20 N
X A 1 -250 0 100 R 50 50 1 1 P
X C 2 0 -150 100 U 50 50 1 1 I
X B 3 250 0 100 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Memory_RAM_IDT7132
#
DEF Memory_RAM_IDT7132 U 0 20 Y Y 1 F N

View File

@ -3,7 +3,7 @@
(general
(thickness 1.6)
(drawings 13)
(tracks 16)
(tracks 223)
(zones 0)
(modules 4)
(nets 90)
@ -25,13 +25,13 @@
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(37 F.SilkS user hide)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
@ -41,7 +41,7 @@
)
(setup
(last_trace_width 0.25)
(last_trace_width 0.4)
(user_trace_width 0.4)
(user_trace_width 1)
(trace_clearance 0.2)
@ -297,20 +297,20 @@
(fp_text value ESP32-DEVKITC-32D (at 1.24136 28.294535) (layer F.Fab)
(effects (font (size 1.001047 1.001047) (thickness 0.15)))
)
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer F.Fab) (width 0.127))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer F.Fab) (width 0.127))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer F.Fab) (width 0.127))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer F.Fab) (width 0.127))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer F.SilkS) (width 0.127))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer F.SilkS) (width 0.127))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer F.SilkS) (width 0.127))
(fp_line (start -14.2 -27.4) (end 14.2 -27.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.2 -27.4) (end 14.2 27.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.2 27.5) (end -14.2 27.5) (layer F.CrtYd) (width 0.05))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer F.Fab) (width 0.28))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer F.Fab) (width 0.28))
(fp_line (start -14.2 27.5) (end -14.2 -27.4) (layer F.CrtYd) (width 0.05))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer F.Fab) (width 0.28))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer F.Fab) (width 0.28))
(fp_line (start 14.2 27.5) (end -14.2 27.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.2 -27.4) (end 14.2 27.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -14.2 -27.4) (end 14.2 -27.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer F.SilkS) (width 0.127))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer F.SilkS) (width 0.127))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer F.Fab) (width 0.127))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer F.Fab) (width 0.127))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer F.Fab) (width 0.127))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer F.Fab) (width 0.127))
(pad 38 thru_hole circle (at 12.7 25.96) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 87 "Net-(U2-Pad38)"))
(pad 37 thru_hole circle (at 12.7 23.42) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
@ -398,10 +398,10 @@
(fp_text value "CARD EDGE" (at 25.4 -5.08) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_poly (pts (xy 32.893 -3.81) (xy 31.877 -3.81) (xy 31.877 3.81) (xy 32.893 3.81)) (layer B.Mask) (width 0))
(fp_poly (pts (xy -32.893 -3.81) (xy -32.893 3.81) (xy -31.877 3.81) (xy -31.877 -3.81)) (layer B.Mask) (width 0))
(fp_poly (pts (xy 32.893 -3.81) (xy 31.877 -3.81) (xy 31.877 3.81) (xy 32.893 3.81)) (layer F.Mask) (width 0))
(fp_poly (pts (xy -32.893 -3.81) (xy -32.893 3.81) (xy -31.877 3.81) (xy -31.877 -3.81)) (layer F.Mask) (width 0))
(fp_poly (pts (xy 32.893 -3.81) (xy 31.877 -3.81) (xy 31.877 3.81) (xy 32.893 3.81)) (layer F.Mask) (width 0))
(fp_poly (pts (xy -32.893 -3.81) (xy -32.893 3.81) (xy -31.877 3.81) (xy -31.877 -3.81)) (layer B.Mask) (width 0))
(fp_poly (pts (xy 32.893 -3.81) (xy 31.877 -3.81) (xy 31.877 3.81) (xy 32.893 3.81)) (layer B.Mask) (width 0))
(pad 26 smd rect (at 30.48 0) (size 1.524 6.35) (layers B.Cu B.Mask)
(net 49 GND) (solder_mask_margin 0.635) (clearance 0.254))
(pad 27 smd rect (at 27.94 0) (size 1.524 6.35) (layers B.Cu B.Mask)
@ -505,7 +505,7 @@
)
(module Capacitor_THT:C_Disc_D8.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 61017937)
(at 198.04 119.38 180)
(at 204.5 120 180)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor")
(path /6103513B)
@ -515,18 +515,18 @@
(fp_text value C (at 2.5 2.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.75 -1.5) (end -1.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.75 1.5) (end 6.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.5) (end 6.75 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.5) (end -1.75 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.62 -1.37) (end 6.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 -1.37) (end -1.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 1.37) (end 6.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 -1.37) (end 6.62 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -1.25) (end -1.5 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 1.25) (end 6.5 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 1.25) (end 6.5 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -1.25) (end -1.5 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 1.25) (end 6.5 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 1.25) (end 6.5 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -1.25) (end -1.5 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.62 -1.37) (end 6.62 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 1.37) (end 6.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.62 -1.37) (end -1.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 6.62 -1.37) (end 6.62 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.75 -1.5) (end -1.75 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.5) (end 6.75 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.75 1.5) (end 6.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.75 -1.5) (end -1.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.5 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
@ -542,7 +542,7 @@
)
(module Package_DIP:DIP-48_W15.24mm_Socket_LongPads (layer F.Cu) (tedit 5A02E8C5) (tstamp 6101CB7E)
(at 120.65 92.71 90)
(at 131.5 97.25 90)
(descr "48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(path /6102DC5C)
@ -552,29 +552,29 @@
(fp_text value IDT7132 (at 7.62 60.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.8 60) (end 16.8 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 60) (end 16.8 60) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 -1.6) (end -1.55 60) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 16.68 59.81) (end 16.68 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 59.81) (end 16.68 59.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 -1.39) (end -1.44 59.81) (layer F.SilkS) (width 0.12))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 13.68 59.75) (end 13.68 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 59.75) (end 13.68 59.75) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 -1.33) (end 1.56 59.75) (layer F.SilkS) (width 0.12))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 59.75) (end 16.51 -1.33) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 59.75) (end 16.51 59.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -1.33) (end -1.27 59.75) (layer F.Fab) (width 0.1))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.255 59.69) (end 0.255 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 14.985 59.69) (end 0.255 59.69) (layer F.Fab) (width 0.1))
(fp_line (start 14.985 -1.27) (end 14.985 59.69) (layer F.Fab) (width 0.1))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 7.62 29.21 180) (layer F.Fab)
(fp_line (start 14.985 -1.27) (end 14.985 59.69) (layer F.Fab) (width 0.1))
(fp_line (start 14.985 59.69) (end 0.255 59.69) (layer F.Fab) (width 0.1))
(fp_line (start 0.255 59.69) (end 0.255 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -1.33) (end -1.27 59.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 59.75) (end 16.51 59.75) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 59.75) (end 16.51 -1.33) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer F.Fab) (width 0.1))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 -1.33) (end 1.56 59.75) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 59.75) (end 13.68 59.75) (layer F.SilkS) (width 0.12))
(fp_line (start 13.68 59.75) (end 13.68 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 -1.39) (end -1.44 59.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 59.81) (end 16.68 59.81) (layer F.SilkS) (width 0.12))
(fp_line (start 16.68 59.81) (end 16.68 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start -1.55 -1.6) (end -1.55 60) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 60) (end 16.8 60) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.8 60) (end 16.8 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 7.62 29.21 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 7.62 -1.33) (end 6.62 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
@ -701,21 +701,228 @@
(gr_line (start 241.3 124.587) (end 241.3 54.737) (layer Edge.Cuts) (width 0.05) (tstamp 5E3416F1))
(gr_line (start 233.553 124.587) (end 241.3 124.587) (layer Edge.Cuts) (width 0.05))
(segment (start 172.72 106.68) (end 172.72 128.397) (width 0.25) (layer B.Cu) (net 2))
(segment (start 158.75 92.71) (end 172.72 106.68) (width 0.25) (layer B.Cu) (net 2))
(segment (start 175.26 106.68) (end 175.26 128.397) (width 0.25) (layer B.Cu) (net 3))
(segment (start 161.29 92.71) (end 175.26 106.68) (width 0.25) (layer B.Cu) (net 3))
(segment (start 177.8 106.68) (end 177.8 128.397) (width 0.25) (layer B.Cu) (net 4))
(segment (start 163.83 92.71) (end 177.8 106.68) (width 0.25) (layer B.Cu) (net 4))
(segment (start 180.34 106.68) (end 180.34 128.397) (width 0.25) (layer B.Cu) (net 5))
(segment (start 166.37 92.71) (end 180.34 106.68) (width 0.25) (layer B.Cu) (net 5))
(segment (start 182.88 106.68) (end 182.88 128.397) (width 0.25) (layer B.Cu) (net 6))
(segment (start 168.91 92.71) (end 182.88 106.68) (width 0.25) (layer B.Cu) (net 6))
(segment (start 185.42 106.68) (end 185.42 128.397) (width 0.25) (layer B.Cu) (net 7))
(segment (start 171.45 92.71) (end 185.42 106.68) (width 0.25) (layer B.Cu) (net 7))
(segment (start 187.96 106.68) (end 187.96 128.397) (width 0.25) (layer B.Cu) (net 8))
(segment (start 173.99 92.71) (end 187.96 106.68) (width 0.25) (layer B.Cu) (net 8))
(segment (start 190.5 106.68) (end 190.5 128.397) (width 0.25) (layer B.Cu) (net 9))
(segment (start 176.53 92.71) (end 190.5 106.68) (width 0.25) (layer B.Cu) (net 9))
(segment (start 172.72 100.37) (end 172.72 128.397) (width 0.4) (layer B.Cu) (net 2))
(segment (start 169.6 97.25) (end 172.72 100.37) (width 0.4) (layer B.Cu) (net 2))
(segment (start 175.26 100.37) (end 175.26 128.397) (width 0.4) (layer B.Cu) (net 3))
(segment (start 172.14 97.25) (end 175.26 100.37) (width 0.4) (layer B.Cu) (net 3))
(segment (start 177.8 100.37) (end 177.8 128.397) (width 0.4) (layer B.Cu) (net 4))
(segment (start 174.68 97.25) (end 177.8 100.37) (width 0.4) (layer B.Cu) (net 4))
(segment (start 180.34 100.37) (end 180.34 128.397) (width 0.4) (layer B.Cu) (net 5))
(segment (start 177.22 97.25) (end 180.34 100.37) (width 0.4) (layer B.Cu) (net 5))
(segment (start 182.88 100.37) (end 182.88 128.397) (width 0.4) (layer B.Cu) (net 6))
(segment (start 179.76 97.25) (end 182.88 100.37) (width 0.4) (layer B.Cu) (net 6))
(segment (start 185.42 100.37) (end 185.42 128.397) (width 0.4) (layer B.Cu) (net 7))
(segment (start 182.3 97.25) (end 185.42 100.37) (width 0.4) (layer B.Cu) (net 7))
(segment (start 187.96 100.37) (end 187.96 128.397) (width 0.4) (layer B.Cu) (net 8))
(segment (start 184.84 97.25) (end 187.96 100.37) (width 0.4) (layer B.Cu) (net 8))
(segment (start 190.5 100.37) (end 190.5 128.397) (width 0.4) (layer B.Cu) (net 9))
(segment (start 187.38 97.25) (end 190.5 100.37) (width 0.4) (layer B.Cu) (net 9))
(segment (start 193.04 98.27293) (end 193.04 128.397) (width 0.4) (layer B.Cu) (net 10))
(segment (start 190.41706 95.64999) (end 193.04 98.27293) (width 0.4) (layer B.Cu) (net 10))
(segment (start 133.10001 95.64999) (end 190.41706 95.64999) (width 0.4) (layer B.Cu) (net 10))
(segment (start 131.5 97.25) (end 133.10001 95.64999) (width 0.4) (layer B.Cu) (net 10))
(segment (start 170.18 125.32707) (end 170.18 128.397) (width 0.4) (layer F.Cu) (net 25))
(segment (start 144.30292 95.05001) (end 142.99999 96.35294) (width 0.4) (layer F.Cu) (net 25))
(segment (start 188.71999 95.05001) (end 144.30292 95.05001) (width 0.4) (layer F.Cu) (net 25))
(segment (start 142.99999 98.14706) (end 170.18 125.32707) (width 0.4) (layer F.Cu) (net 25))
(segment (start 142.99999 96.35294) (end 142.99999 98.14706) (width 0.4) (layer F.Cu) (net 25))
(segment (start 204.47 79.3) (end 188.71999 95.05001) (width 0.4) (layer F.Cu) (net 25))
(segment (start 172.72 125.77) (end 172.72 128.397) (width 0.4) (layer F.Cu) (net 26))
(segment (start 144.2 97.25) (end 172.72 125.77) (width 0.4) (layer F.Cu) (net 26))
(segment (start 175.26 125.77) (end 175.26 128.397) (width 0.4) (layer F.Cu) (net 27))
(segment (start 146.74 97.25) (end 175.26 125.77) (width 0.4) (layer F.Cu) (net 27))
(segment (start 177.8 125.77) (end 177.8 128.397) (width 0.4) (layer F.Cu) (net 28))
(segment (start 149.28 97.25) (end 177.8 125.77) (width 0.4) (layer F.Cu) (net 28))
(segment (start 180.34 125.77) (end 180.34 128.397) (width 0.4) (layer F.Cu) (net 29))
(segment (start 151.82 97.25) (end 180.34 125.77) (width 0.4) (layer F.Cu) (net 29))
(segment (start 182.88 126.17) (end 182.88 128.397) (width 0.4) (layer F.Cu) (net 30))
(segment (start 154.36 97.65) (end 182.88 126.17) (width 0.4) (layer F.Cu) (net 30))
(segment (start 154.36 97.25) (end 154.36 97.65) (width 0.4) (layer F.Cu) (net 30))
(segment (start 185.42 125.77) (end 185.42 128.397) (width 0.4) (layer F.Cu) (net 31))
(segment (start 156.9 97.25) (end 185.42 125.77) (width 0.4) (layer F.Cu) (net 31))
(segment (start 187.96 125.77) (end 187.96 128.397) (width 0.4) (layer F.Cu) (net 32))
(segment (start 159.44 97.25) (end 187.96 125.77) (width 0.4) (layer F.Cu) (net 32))
(segment (start 190.5 125.77) (end 190.5 128.397) (width 0.4) (layer F.Cu) (net 33))
(segment (start 161.98 97.25) (end 190.5 125.77) (width 0.4) (layer F.Cu) (net 33))
(segment (start 213.36 124.822) (end 213.36 128.397) (width 0.4) (layer F.Cu) (net 42))
(segment (start 188.58001 110.856012) (end 202.491997 124.767999) (width 0.4) (layer F.Cu) (net 42))
(segment (start 205.036401 80.480001) (end 204.138541 80.480001) (width 0.4) (layer F.Cu) (net 42))
(segment (start 204.138541 80.480001) (end 188.58001 96.038532) (width 0.4) (layer F.Cu) (net 42))
(segment (start 205.650001 78.733599) (end 205.650001 79.866401) (width 0.4) (layer F.Cu) (net 42))
(segment (start 202.491997 124.767999) (end 213.305999 124.767999) (width 0.4) (layer F.Cu) (net 42))
(segment (start 205.036401 78.119999) (end 205.650001 78.733599) (width 0.4) (layer F.Cu) (net 42))
(segment (start 203.903599 78.119999) (end 205.036401 78.119999) (width 0.4) (layer F.Cu) (net 42))
(segment (start 187.573598 94.45) (end 203.903599 78.119999) (width 0.4) (layer F.Cu) (net 42))
(segment (start 143.35705 94.45) (end 187.573598 94.45) (width 0.4) (layer F.Cu) (net 42))
(segment (start 188.58001 96.038532) (end 188.58001 110.856012) (width 0.4) (layer F.Cu) (net 42))
(segment (start 142.15706 95.64999) (end 143.35705 94.45) (width 0.4) (layer F.Cu) (net 42))
(segment (start 205.650001 79.866401) (end 205.036401 80.480001) (width 0.4) (layer F.Cu) (net 42))
(segment (start 135.64001 95.64999) (end 142.15706 95.64999) (width 0.4) (layer F.Cu) (net 42))
(segment (start 213.305999 124.767999) (end 213.36 124.822) (width 0.4) (layer F.Cu) (net 42))
(segment (start 134.04 97.25) (end 135.64001 95.64999) (width 0.4) (layer F.Cu) (net 42))
(segment (start 199.5 107.13) (end 199.5 120) (width 0.4) (layer F.Cu) (net 49))
(segment (start 204.47 102.16) (end 199.5 107.13) (width 0.4) (layer F.Cu) (net 49))
(segment (start 189.92 97.55) (end 199.5 107.13) (width 0.4) (layer F.Cu) (net 49))
(segment (start 189.92 97.25) (end 189.92 97.55) (width 0.4) (layer F.Cu) (net 49))
(segment (start 200.700001 121.200001) (end 228.950001 121.200001) (width 0.4) (layer B.Cu) (net 49))
(segment (start 199.5 120) (end 200.700001 121.200001) (width 0.4) (layer B.Cu) (net 49))
(segment (start 231.14 123.39) (end 231.14 128.397) (width 0.4) (layer B.Cu) (net 49))
(segment (start 228.950001 121.200001) (end 231.14 123.39) (width 0.4) (layer B.Cu) (net 49))
(segment (start 229.87 84.38) (end 235.63 84.38) (width 0.4) (layer B.Cu) (net 49))
(segment (start 237.5 117.03) (end 231.14 123.39) (width 0.4) (layer B.Cu) (net 49))
(segment (start 235.63 84.38) (end 237.5 86.25) (width 0.4) (layer B.Cu) (net 49))
(segment (start 229.87 69.14) (end 235.64 69.14) (width 0.4) (layer B.Cu) (net 49))
(segment (start 237.5 71) (end 237.5 86.75) (width 0.4) (layer B.Cu) (net 49))
(segment (start 237.5 86.25) (end 237.5 86.75) (width 0.4) (layer B.Cu) (net 49))
(segment (start 235.64 69.14) (end 237.5 71) (width 0.4) (layer B.Cu) (net 49))
(segment (start 237.5 86.75) (end 237.5 117.03) (width 0.4) (layer B.Cu) (net 49))
(segment (start 139.12 97.25) (end 141.66 97.25) (width 0.4) (layer B.Cu) (net 49))
(segment (start 134.04 82.01) (end 134.04 86.46) (width 0.4) (layer B.Cu) (net 49))
(segment (start 134.04 86.46) (end 123.5 97) (width 0.4) (layer B.Cu) (net 49))
(segment (start 123.5 97) (end 123.5 102) (width 0.4) (layer B.Cu) (net 49))
(segment (start 123.5 102) (end 129.25 107.75) (width 0.4) (layer B.Cu) (net 49))
(segment (start 129.25 107.75) (end 134.25 107.75) (width 0.4) (layer B.Cu) (net 49))
(segment (start 139.12 102.88) (end 139.12 97.25) (width 0.4) (layer B.Cu) (net 49))
(segment (start 134.25 107.75) (end 139.12 102.88) (width 0.4) (layer B.Cu) (net 49))
(segment (start 164.52 97.25) (end 167.06 97.25) (width 0.4) (layer F.Cu) (net 49))
(segment (start 167.06 97.25) (end 189.81 120) (width 0.4) (layer F.Cu) (net 49))
(via (at 196 120) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 49))
(segment (start 189.81 120) (end 196 120) (width 0.4) (layer F.Cu) (net 49))
(segment (start 196 120) (end 199.5 120) (width 0.4) (layer B.Cu) (net 49))
(segment (start 141.66 97.25) (end 141.66 99.91) (width 0.4) (layer B.Cu) (net 49))
(segment (start 141.66 99.91) (end 143 101.25) (width 0.4) (layer B.Cu) (net 49))
(segment (start 160.52 101.25) (end 164.52 97.25) (width 0.4) (layer B.Cu) (net 49))
(segment (start 143 101.25) (end 160.52 101.25) (width 0.4) (layer B.Cu) (net 49))
(segment (start 134.04 82.01) (end 134.04 87.79) (width 0.4) (layer F.Cu) (net 49))
(via (at 139.75 89.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 49))
(segment (start 134.04 87.79) (end 135.5 89.25) (width 0.4) (layer F.Cu) (net 49))
(segment (start 135.5 89.25) (end 139.75 89.25) (width 0.4) (layer F.Cu) (net 49))
(segment (start 139.75 89.25) (end 144.25 84.75) (width 0.4) (layer B.Cu) (net 49))
(segment (start 144.2 84.7) (end 144.2 82.01) (width 0.4) (layer B.Cu) (net 49))
(segment (start 144.25 84.75) (end 144.2 84.7) (width 0.4) (layer B.Cu) (net 49))
(segment (start 231.14 126.182798) (end 231.14 128.397) (width 0.4) (layer F.Cu) (net 50))
(segment (start 224.957202 120) (end 231.14 126.182798) (width 0.4) (layer F.Cu) (net 50))
(segment (start 204.5 120) (end 224.957202 120) (width 0.4) (layer F.Cu) (net 50))
(segment (start 204.5 114.89) (end 204.47 114.86) (width 0.4) (layer F.Cu) (net 50))
(segment (start 204.5 120) (end 204.5 114.89) (width 0.4) (layer F.Cu) (net 50))
(segment (start 215 66.25) (end 215 104.33) (width 0.4) (layer B.Cu) (net 50))
(segment (start 207 58.25) (end 215 66.25) (width 0.4) (layer B.Cu) (net 50))
(segment (start 215 104.33) (end 204.47 114.86) (width 0.4) (layer B.Cu) (net 50))
(segment (start 131.5 82.01) (end 155.26 58.25) (width 0.4) (layer B.Cu) (net 50))
(segment (start 155.26 58.25) (end 207 58.25) (width 0.4) (layer B.Cu) (net 50))
(segment (start 155.889999 72.860001) (end 146.74 82.01) (width 0.4) (layer F.Cu) (net 51))
(segment (start 228.689999 72.860001) (end 155.889999 72.860001) (width 0.4) (layer F.Cu) (net 51))
(segment (start 229.87 71.68) (end 228.689999 72.860001) (width 0.4) (layer F.Cu) (net 51))
(segment (start 157.39003 61.19997) (end 136.58 82.01) (width 0.4) (layer F.Cu) (net 58))
(segment (start 236.550028 62.254402) (end 235.495596 61.19997) (width 0.4) (layer F.Cu) (net 58))
(segment (start 235.495596 61.19997) (end 157.39003 61.19997) (width 0.4) (layer F.Cu) (net 58))
(segment (start 236.550028 85.319972) (end 236.550028 62.254402) (width 0.4) (layer F.Cu) (net 58))
(segment (start 229.87 92) (end 236.550028 85.319972) (width 0.4) (layer F.Cu) (net 58))
(segment (start 156.442978 72.749952) (end 148 81.19293) (width 0.4) (layer B.Cu) (net 59))
(segment (start 193.992658 72.749952) (end 156.442978 72.749952) (width 0.4) (layer B.Cu) (net 59))
(segment (start 199.250047 78.007341) (end 193.992658 72.749952) (width 0.4) (layer B.Cu) (net 59))
(segment (start 204.47 84.38) (end 199.250047 79.160047) (width 0.4) (layer B.Cu) (net 59))
(segment (start 199.250047 79.160047) (end 199.250047 78.007341) (width 0.4) (layer B.Cu) (net 59))
(segment (start 148 81.19293) (end 148 85.75) (width 0.4) (layer B.Cu) (net 59))
(segment (start 148 85.75) (end 150.25 88) (width 0.4) (layer B.Cu) (net 59))
(segment (start 150.25 88) (end 154.75 88) (width 0.4) (layer B.Cu) (net 59))
(segment (start 156.9 85.85) (end 156.9 82.01) (width 0.4) (layer B.Cu) (net 59))
(segment (start 154.75 88) (end 156.9 85.85) (width 0.4) (layer B.Cu) (net 59))
(segment (start 193.247063 74.549981) (end 158.450019 74.549981) (width 0.4) (layer B.Cu) (net 65))
(segment (start 197.450018 78.752934) (end 193.247063 74.549981) (width 0.4) (layer B.Cu) (net 65))
(segment (start 204.47 94.54) (end 197.450018 87.520018) (width 0.4) (layer B.Cu) (net 65))
(segment (start 197.450018 87.520018) (end 197.450018 78.752934) (width 0.4) (layer B.Cu) (net 65))
(segment (start 154.36 78.64) (end 154.36 82.01) (width 0.4) (layer B.Cu) (net 65))
(segment (start 158.450019 74.549981) (end 154.36 78.64) (width 0.4) (layer B.Cu) (net 65))
(segment (start 151.82 80.331458) (end 151.82 82.01) (width 0.4) (layer B.Cu) (net 66))
(segment (start 193.495595 73.949971) (end 158.201486 73.949972) (width 0.4) (layer B.Cu) (net 66))
(segment (start 158.201486 73.949972) (end 151.82 80.331458) (width 0.4) (layer B.Cu) (net 66))
(segment (start 198.050028 78.504402) (end 193.495595 73.949971) (width 0.4) (layer B.Cu) (net 66))
(segment (start 198.050027 85.580027) (end 198.050028 78.504402) (width 0.4) (layer B.Cu) (net 66))
(segment (start 204.47 92) (end 198.050027 85.580027) (width 0.4) (layer B.Cu) (net 66))
(segment (start 193.744126 73.349962) (end 157.940038 73.349962) (width 0.4) (layer B.Cu) (net 67))
(segment (start 198.650037 78.255869) (end 193.744126 73.349962) (width 0.4) (layer B.Cu) (net 67))
(segment (start 198.650037 83.640037) (end 198.650037 78.255869) (width 0.4) (layer B.Cu) (net 67))
(segment (start 157.940038 73.349962) (end 149.28 82.01) (width 0.4) (layer B.Cu) (net 67))
(segment (start 204.47 89.46) (end 198.650037 83.640037) (width 0.4) (layer B.Cu) (net 67))
(segment (start 135.24001 81.11294) (end 135.24001 87.50999) (width 0.4) (layer B.Cu) (net 68))
(segment (start 144.203007 72.149943) (end 135.24001 81.11294) (width 0.4) (layer B.Cu) (net 68))
(segment (start 204.47 81.84) (end 194.779943 72.149943) (width 0.4) (layer B.Cu) (net 68))
(segment (start 194.779943 72.149943) (end 144.203007 72.149943) (width 0.4) (layer B.Cu) (net 68))
(segment (start 135.24001 87.50999) (end 125.25 97.5) (width 0.4) (layer B.Cu) (net 68))
(segment (start 125.25 97.5) (end 125.25 101.25) (width 0.4) (layer B.Cu) (net 68))
(segment (start 125.25 101.25) (end 130 106) (width 0.4) (layer B.Cu) (net 68))
(segment (start 130 106) (end 133.25 106) (width 0.4) (layer B.Cu) (net 68))
(segment (start 136.58 102.67) (end 136.58 97.25) (width 0.4) (layer B.Cu) (net 68))
(segment (start 133.25 106) (end 136.58 102.67) (width 0.4) (layer B.Cu) (net 68))
(segment (start 193.64999 98.034378) (end 181.865612 86.25) (width 0.4) (layer B.Cu) (net 74))
(segment (start 211.100009 102.356393) (end 205.036401 108.420001) (width 0.4) (layer B.Cu) (net 74))
(segment (start 211.100009 93.550009) (end 211.100009 102.356393) (width 0.4) (layer B.Cu) (net 74))
(segment (start 204.47 86.92) (end 211.100009 93.550009) (width 0.4) (layer B.Cu) (net 74))
(segment (start 205.036401 108.420001) (end 202.821459 108.420001) (width 0.4) (layer B.Cu) (net 74))
(segment (start 202.821459 108.420001) (end 193.64999 99.248532) (width 0.4) (layer B.Cu) (net 74))
(segment (start 193.64999 99.248532) (end 193.64999 98.034378) (width 0.4) (layer B.Cu) (net 74))
(segment (start 163.68 86.25) (end 159.44 82.01) (width 0.4) (layer B.Cu) (net 74))
(segment (start 181.865612 86.25) (end 163.68 86.25) (width 0.4) (layer B.Cu) (net 74))
(segment (start 178.749999 75.400001) (end 172.14 82.01) (width 0.4) (layer F.Cu) (net 79))
(segment (start 228.689999 75.400001) (end 178.749999 75.400001) (width 0.4) (layer F.Cu) (net 79))
(segment (start 229.87 74.22) (end 228.689999 75.400001) (width 0.4) (layer F.Cu) (net 79))
(segment (start 167.92705 91) (end 174.68 84.24705) (width 0.4) (layer F.Cu) (net 80))
(segment (start 229.87 81.84) (end 234.75 76.96) (width 0.4) (layer F.Cu) (net 80))
(segment (start 163.65293 63) (end 145.53999 81.11294) (width 0.4) (layer F.Cu) (net 80))
(segment (start 145.53999 81.11294) (end 145.53999 86.78999) (width 0.4) (layer F.Cu) (net 80))
(segment (start 149.75 91) (end 167.92705 91) (width 0.4) (layer F.Cu) (net 80))
(segment (start 234.75 76.96) (end 234.75 63) (width 0.4) (layer F.Cu) (net 80))
(segment (start 174.68 84.24705) (end 174.68 82.01) (width 0.4) (layer F.Cu) (net 80))
(segment (start 234.75 63) (end 163.65293 63) (width 0.4) (layer F.Cu) (net 80))
(segment (start 145.53999 86.78999) (end 149.75 91) (width 0.4) (layer F.Cu) (net 80))
(segment (start 177.22 83.61) (end 177.22 82.01) (width 0.4) (layer F.Cu) (net 81))
(segment (start 142.99999 85.098532) (end 149.501468 91.60001) (width 0.4) (layer F.Cu) (net 81))
(segment (start 142.99999 81.11294) (end 142.99999 85.098532) (width 0.4) (layer F.Cu) (net 81))
(segment (start 161.71294 62.39999) (end 142.99999 81.11294) (width 0.4) (layer F.Cu) (net 81))
(segment (start 149.501468 91.60001) (end 169.229991 91.600009) (width 0.4) (layer F.Cu) (net 81))
(segment (start 234.998532 62.39999) (end 161.71294 62.39999) (width 0.4) (layer F.Cu) (net 81))
(segment (start 169.229991 91.600009) (end 177.22 83.61) (width 0.4) (layer F.Cu) (net 81))
(segment (start 235.35001 62.751468) (end 234.998532 62.39999) (width 0.4) (layer F.Cu) (net 81))
(segment (start 235.35001 81.43999) (end 235.35001 62.751468) (width 0.4) (layer F.Cu) (net 81))
(segment (start 229.87 86.92) (end 235.35001 81.43999) (width 0.4) (layer F.Cu) (net 81))
(segment (start 169.569981 92.200019) (end 179.76 82.01) (width 0.4) (layer F.Cu) (net 82))
(segment (start 149.252937 92.200019) (end 169.569981 92.200019) (width 0.4) (layer F.Cu) (net 82))
(segment (start 140.45999 83.407072) (end 149.252937 92.200019) (width 0.4) (layer F.Cu) (net 82))
(segment (start 140.45999 81.11294) (end 140.45999 83.407072) (width 0.4) (layer F.Cu) (net 82))
(segment (start 159.77295 61.79998) (end 140.45999 81.11294) (width 0.4) (layer F.Cu) (net 82))
(segment (start 235.247064 61.79998) (end 159.77295 61.79998) (width 0.4) (layer F.Cu) (net 82))
(segment (start 235.950019 62.502935) (end 235.247064 61.79998) (width 0.4) (layer F.Cu) (net 82))
(segment (start 235.950019 83.379981) (end 235.950019 62.502935) (width 0.4) (layer F.Cu) (net 82))
(segment (start 229.87 89.46) (end 235.950019 83.379981) (width 0.4) (layer F.Cu) (net 82))
(segment (start 171.509972 92.800028) (end 182.3 82.01) (width 0.4) (layer F.Cu) (net 83))
(segment (start 145.272958 92.800028) (end 171.509972 92.800028) (width 0.4) (layer F.Cu) (net 83))
(segment (start 135.37999 82.90706) (end 145.272958 92.800028) (width 0.4) (layer F.Cu) (net 83))
(segment (start 135.37999 81.11294) (end 135.37999 82.90706) (width 0.4) (layer F.Cu) (net 83))
(segment (start 155.89297 60.59996) (end 135.37999 81.11294) (width 0.4) (layer F.Cu) (net 83))
(segment (start 235.744128 60.59996) (end 155.89297 60.59996) (width 0.4) (layer F.Cu) (net 83))
(segment (start 237.150037 99.959963) (end 237.150037 62.005869) (width 0.4) (layer F.Cu) (net 83))
(segment (start 237.150037 62.005869) (end 235.744128 60.59996) (width 0.4) (layer F.Cu) (net 83))
(segment (start 229.87 107.24) (end 237.150037 99.959963) (width 0.4) (layer F.Cu) (net 83))
(segment (start 184.84 79.311458) (end 184.84 82.01) (width 0.4) (layer B.Cu) (net 84))
(segment (start 189.001467 75.149991) (end 184.84 79.311458) (width 0.4) (layer B.Cu) (net 84))
(segment (start 192.998532 75.14999) (end 189.001467 75.149991) (width 0.4) (layer B.Cu) (net 84))
(segment (start 196.850009 79.001467) (end 192.998532 75.14999) (width 0.4) (layer B.Cu) (net 84))
(segment (start 196.850009 89.460009) (end 196.850009 79.001467) (width 0.4) (layer B.Cu) (net 84))
(segment (start 204.47 97.08) (end 196.850009 89.460009) (width 0.4) (layer B.Cu) (net 84))
(segment (start 204.47 104.7) (end 201.7 104.7) (width 0.4) (layer B.Cu) (net 85))
(segment (start 201.7 104.7) (end 196.25 99.25) (width 0.4) (layer B.Cu) (net 85))
(segment (start 196.25 99.25) (end 196.25 79.25) (width 0.4) (layer B.Cu) (net 85))
(segment (start 196.25 79.25) (end 192.75 75.75) (width 0.4) (layer B.Cu) (net 85))
(segment (start 192.75 75.75) (end 189.25 75.75) (width 0.4) (layer B.Cu) (net 85))
(segment (start 187.38 77.62) (end 187.38 82.01) (width 0.4) (layer B.Cu) (net 85))
(segment (start 189.25 75.75) (end 187.38 77.62) (width 0.4) (layer B.Cu) (net 85))
(segment (start 189.92 82.01) (end 194.25 86.34) (width 0.4) (layer B.Cu) (net 86))
(segment (start 194.25 99) (end 201.130001 105.880001) (width 0.4) (layer B.Cu) (net 86))
(segment (start 194.25 86.34) (end 194.25 99) (width 0.4) (layer B.Cu) (net 86))
(segment (start 208 103.75) (end 208 103.15) (width 0.4) (layer B.Cu) (net 86))
(segment (start 201.130001 105.880001) (end 205.869999 105.880001) (width 0.4) (layer B.Cu) (net 86))
(segment (start 208 103.15) (end 204.47 99.62) (width 0.4) (layer B.Cu) (net 86))
(segment (start 205.869999 105.880001) (end 208 103.75) (width 0.4) (layer B.Cu) (net 86))
)

View File

@ -3,7 +3,7 @@
(general
(thickness 1.6)
(drawings 13)
(tracks 0)
(tracks 16)
(zones 0)
(modules 4)
(nets 90)
@ -541,8 +541,8 @@
)
)
(module Package_DIP:DIP-48_W15.24mm_Socket_LongPads (layer F.Cu) (tedit 5A02E8C5) (tstamp 610175EC)
(at 116.84 87.63 90)
(module Package_DIP:DIP-48_W15.24mm_Socket_LongPads (layer F.Cu) (tedit 5A02E8C5) (tstamp 6101CB7E)
(at 120.65 92.71 90)
(descr "48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(path /6102DC5C)
@ -701,4 +701,21 @@
(gr_line (start 241.3 124.587) (end 241.3 54.737) (layer Edge.Cuts) (width 0.05) (tstamp 5E3416F1))
(gr_line (start 233.553 124.587) (end 241.3 124.587) (layer Edge.Cuts) (width 0.05))
(segment (start 172.72 106.68) (end 172.72 128.397) (width 0.25) (layer B.Cu) (net 2))
(segment (start 158.75 92.71) (end 172.72 106.68) (width 0.25) (layer B.Cu) (net 2))
(segment (start 175.26 106.68) (end 175.26 128.397) (width 0.25) (layer B.Cu) (net 3))
(segment (start 161.29 92.71) (end 175.26 106.68) (width 0.25) (layer B.Cu) (net 3))
(segment (start 177.8 106.68) (end 177.8 128.397) (width 0.25) (layer B.Cu) (net 4))
(segment (start 163.83 92.71) (end 177.8 106.68) (width 0.25) (layer B.Cu) (net 4))
(segment (start 180.34 106.68) (end 180.34 128.397) (width 0.25) (layer B.Cu) (net 5))
(segment (start 166.37 92.71) (end 180.34 106.68) (width 0.25) (layer B.Cu) (net 5))
(segment (start 182.88 106.68) (end 182.88 128.397) (width 0.25) (layer B.Cu) (net 6))
(segment (start 168.91 92.71) (end 182.88 106.68) (width 0.25) (layer B.Cu) (net 6))
(segment (start 185.42 106.68) (end 185.42 128.397) (width 0.25) (layer B.Cu) (net 7))
(segment (start 171.45 92.71) (end 185.42 106.68) (width 0.25) (layer B.Cu) (net 7))
(segment (start 187.96 106.68) (end 187.96 128.397) (width 0.25) (layer B.Cu) (net 8))
(segment (start 173.99 92.71) (end 187.96 106.68) (width 0.25) (layer B.Cu) (net 8))
(segment (start 190.5 106.68) (end 190.5 128.397) (width 0.25) (layer B.Cu) (net 9))
(segment (start 176.53 92.71) (end 190.5 106.68) (width 0.25) (layer B.Cu) (net 9))
)

View File

@ -1,7 +1,7 @@
(export (version D)
(design
(source /home/equant/projects/apple_ii/apple2idiot/card/apple2idiot.sch)
(date "Wed 28 Jul 2021 03:35:35 PM MST")
(date "Thu 05 Aug 2021 04:11:08 PM MST")
(tool "Eeschema 5.1.10-88a1d61d58~88~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
@ -31,7 +31,7 @@
(tstamp 6103513B))
(comp (ref U2)
(value ESP32-DEVKITC-32D)
(footprint MODULE_ESP32-DEVKITC-32D)
(footprint ESPDEVKIT:MODULE_ESP32-DEVKITC-32D)
(fields
(field (name MANUFACTURER) "Espressif Systems")
(field (name PARTREV) 4))

View File

@ -1,29 +1,10 @@
update=Wed 28 Jul 2021 03:35:35 PM MST
update=Thu 05 Aug 2021 04:18:45 PM MST
version=1
last_client=kicad
[general]
version=1
RootSch=
BoardNm=
[pcbnew]
version=1
LastNetListRead=
UseCmpFile=1
PadDrill=0.600000000000
PadDrillOvalY=0.600000000000
PadSizeH=1.500000000000
PadSizeV=1.500000000000
PcbTextSizeV=1.500000000000
PcbTextSizeH=1.500000000000
PcbTextThickness=0.300000000000
ModuleTextSizeV=1.000000000000
ModuleTextSizeH=1.000000000000
ModuleTextSizeThickness=0.150000000000
SolderMaskClearance=0.000000000000
SolderMaskMinWidth=0.000000000000
DrawSegmentWidth=0.200000000000
BoardOutlineThickness=0.100000000000
ModuleOutlineThickness=0.150000000000
[cvpcb]
version=1
NetIExt=net
@ -41,3 +22,229 @@ NetFmtName=Pcbnew
SpiceAjustPassiveValues=0
LabSize=50
ERC_TestSimilarLabels=1
[pcbnew]
version=1
PageLayoutDescrFile=
LastNetListRead=apple2idiot.net
CopperLayerCount=2
BoardThickness=1.6
AllowMicroVias=0
AllowBlindVias=0
RequireCourtyardDefinitions=0
ProhibitOverlappingCourtyards=1
MinTrackWidth=0.2
MinViaDiameter=0.4
MinViaDrill=0.3
MinMicroViaDiameter=0.2
MinMicroViaDrill=0.09999999999999999
MinHoleToHole=0.25
TrackWidth1=0.25
TrackWidth2=0.4
TrackWidth3=1
ViaDiameter1=0.8
ViaDrill1=0.4
dPairWidth1=0.2
dPairGap1=0.25
dPairViaGap1=0.25
SilkLineWidth=0.12
SilkTextSizeV=1
SilkTextSizeH=1
SilkTextSizeThickness=0.15
SilkTextItalic=0
SilkTextUpright=1
CopperLineWidth=0.2
CopperTextSizeV=1.5
CopperTextSizeH=1.5
CopperTextThickness=0.3
CopperTextItalic=0
CopperTextUpright=1
EdgeCutLineWidth=0.05
CourtyardLineWidth=0.05
OthersLineWidth=0.15
OthersTextSizeV=1
OthersTextSizeH=1
OthersTextSizeThickness=0.15
OthersTextItalic=0
OthersTextUpright=1
SolderMaskClearance=0.051
SolderMaskMinWidth=0.25
SolderPasteClearance=0
SolderPasteRatio=0
[pcbnew/Layer.F.Cu]
Name=F.Cu
Type=0
Enabled=1
[pcbnew/Layer.In1.Cu]
Name=In1.Cu
Type=0
Enabled=0
[pcbnew/Layer.In2.Cu]
Name=In2.Cu
Type=0
Enabled=0
[pcbnew/Layer.In3.Cu]
Name=In3.Cu
Type=0
Enabled=0
[pcbnew/Layer.In4.Cu]
Name=In4.Cu
Type=0
Enabled=0
[pcbnew/Layer.In5.Cu]
Name=In5.Cu
Type=0
Enabled=0
[pcbnew/Layer.In6.Cu]
Name=In6.Cu
Type=0
Enabled=0
[pcbnew/Layer.In7.Cu]
Name=In7.Cu
Type=0
Enabled=0
[pcbnew/Layer.In8.Cu]
Name=In8.Cu
Type=0
Enabled=0
[pcbnew/Layer.In9.Cu]
Name=In9.Cu
Type=0
Enabled=0
[pcbnew/Layer.In10.Cu]
Name=In10.Cu
Type=0
Enabled=0
[pcbnew/Layer.In11.Cu]
Name=In11.Cu
Type=0
Enabled=0
[pcbnew/Layer.In12.Cu]
Name=In12.Cu
Type=0
Enabled=0
[pcbnew/Layer.In13.Cu]
Name=In13.Cu
Type=0
Enabled=0
[pcbnew/Layer.In14.Cu]
Name=In14.Cu
Type=0
Enabled=0
[pcbnew/Layer.In15.Cu]
Name=In15.Cu
Type=0
Enabled=0
[pcbnew/Layer.In16.Cu]
Name=In16.Cu
Type=0
Enabled=0
[pcbnew/Layer.In17.Cu]
Name=In17.Cu
Type=0
Enabled=0
[pcbnew/Layer.In18.Cu]
Name=In18.Cu
Type=0
Enabled=0
[pcbnew/Layer.In19.Cu]
Name=In19.Cu
Type=0
Enabled=0
[pcbnew/Layer.In20.Cu]
Name=In20.Cu
Type=0
Enabled=0
[pcbnew/Layer.In21.Cu]
Name=In21.Cu
Type=0
Enabled=0
[pcbnew/Layer.In22.Cu]
Name=In22.Cu
Type=0
Enabled=0
[pcbnew/Layer.In23.Cu]
Name=In23.Cu
Type=0
Enabled=0
[pcbnew/Layer.In24.Cu]
Name=In24.Cu
Type=0
Enabled=0
[pcbnew/Layer.In25.Cu]
Name=In25.Cu
Type=0
Enabled=0
[pcbnew/Layer.In26.Cu]
Name=In26.Cu
Type=0
Enabled=0
[pcbnew/Layer.In27.Cu]
Name=In27.Cu
Type=0
Enabled=0
[pcbnew/Layer.In28.Cu]
Name=In28.Cu
Type=0
Enabled=0
[pcbnew/Layer.In29.Cu]
Name=In29.Cu
Type=0
Enabled=0
[pcbnew/Layer.In30.Cu]
Name=In30.Cu
Type=0
Enabled=0
[pcbnew/Layer.B.Cu]
Name=B.Cu
Type=0
Enabled=1
[pcbnew/Layer.B.Adhes]
Enabled=1
[pcbnew/Layer.F.Adhes]
Enabled=1
[pcbnew/Layer.B.Paste]
Enabled=1
[pcbnew/Layer.F.Paste]
Enabled=1
[pcbnew/Layer.B.SilkS]
Enabled=1
[pcbnew/Layer.F.SilkS]
Enabled=1
[pcbnew/Layer.B.Mask]
Enabled=1
[pcbnew/Layer.F.Mask]
Enabled=1
[pcbnew/Layer.Dwgs.User]
Enabled=1
[pcbnew/Layer.Cmts.User]
Enabled=1
[pcbnew/Layer.Eco1.User]
Enabled=1
[pcbnew/Layer.Eco2.User]
Enabled=1
[pcbnew/Layer.Edge.Cuts]
Enabled=1
[pcbnew/Layer.Margin]
Enabled=1
[pcbnew/Layer.B.CrtYd]
Enabled=1
[pcbnew/Layer.F.CrtYd]
Enabled=1
[pcbnew/Layer.B.Fab]
Enabled=1
[pcbnew/Layer.F.Fab]
Enabled=1
[pcbnew/Layer.Rescue]
Enabled=0
[pcbnew/Netclasses]
[pcbnew/Netclasses/Default]
Name=Default
Clearance=0.2
TrackWidth=0.25
ViaDiameter=0.8
ViaDrill=0.4
uViaDiameter=0.3
uViaDrill=0.1
dPairWidth=0.2
dPairGap=0.25
dPairViaGap=0.25

View File

@ -330,8 +330,6 @@ Wire Wire Line
6050 1450 6150 1450
Text GLabel 6150 1450 2 50 Input ~ 0
GND
Wire Wire Line
4250 1350 4100 1350
Wire Wire Line
4250 2450 4150 2450
Text GLabel 4150 2450 0 50 Input ~ 0
@ -388,17 +386,6 @@ Wire Wire Line
3900 1750 4250 1750
Wire Wire Line
3900 1650 4250 1650
$Comp
L Memory_RAM:IDT7132 U1
U 1 1 6102DC5C
P 5150 2350
F 0 "U1" H 4600 3800 50 0000 C CNN
F 1 "IDT7132" H 5600 900 50 0000 C CNN
F 2 "Package_DIP:DIP-48_W15.24mm_Socket_LongPads" H 5150 2350 50 0001 C CNN
F 3 "" H 5150 2350 50 0001 C CNN
1 5150 2350
1 0 0 -1
$EndComp
Entry Wire Line
3800 1550 3900 1650
Entry Wire Line
@ -513,30 +500,18 @@ Wire Wire Line
6250 3150 6250 3950
Wire Wire Line
6250 3950 10150 3950
Wire Wire Line
10150 3950 10150 2650
Wire Wire Line
10150 2650 9800 2650
Wire Wire Line
6050 3050 6350 3050
Wire Wire Line
6350 3050 6350 4050
Wire Wire Line
6350 4050 10250 4050
Wire Wire Line
10250 4050 10250 2550
Wire Wire Line
10250 2550 9800 2550
Wire Wire Line
6050 2950 6450 2950
Wire Wire Line
6450 2950 6450 4150
Wire Wire Line
6450 4150 10350 4150
Wire Wire Line
10350 4150 10350 2350
Wire Wire Line
10350 2350 9800 2350
Text GLabel 9950 2450 2 50 Input ~ 0
GND
Wire Wire Line
@ -547,66 +522,10 @@ Wire Wire Line
6550 2850 6550 4250
Wire Wire Line
6550 4250 10450 4250
Wire Wire Line
10450 4250 10450 2050
Wire Wire Line
10450 2050 9800 2050
Wire Wire Line
6050 1650 8050 1650
Wire Wire Line
8050 1650 8050 1450
Wire Wire Line
8050 1450 10250 1450
Wire Wire Line
10250 1450 10250 1950
Wire Wire Line
10250 1950 9800 1950
Wire Wire Line
6050 1750 7050 1750
Wire Wire Line
7050 1750 7050 2650
Wire Wire Line
7050 2650 8200 2650
Wire Wire Line
6050 1850 6950 1850
Wire Wire Line
6950 1850 6950 2750
Wire Wire Line
6950 2750 8200 2750
Wire Wire Line
6050 1950 6850 1950
Wire Wire Line
6850 1950 6850 2850
Wire Wire Line
6850 2850 8200 2850
Wire Wire Line
4100 850 7300 850
Wire Wire Line
7300 850 7300 2350
Wire Wire Line
7300 2350 8200 2350
Wire Wire Line
4100 850 4100 1350
Wire Wire Line
1300 750 7400 750
Wire Wire Line
7400 750 7400 2250
Wire Wire Line
7400 2250 8200 2250
Wire Wire Line
1300 750 1300 2100
Wire Wire Line
6050 2050 7150 2050
Wire Wire Line
6050 2150 6750 2150
Wire Wire Line
6750 2150 6750 2550
Wire Wire Line
6750 2550 8200 2550
Wire Wire Line
7150 2050 7150 2450
Wire Wire Line
7150 2450 8200 2450
Wire Wire Line
6050 1250 10550 1250
Wire Wire Line
@ -625,6 +544,148 @@ Wire Wire Line
1150 4700 1300 4700
Wire Wire Line
1300 4700 1300 4500
Connection ~ 1300 4500
Wire Wire Line
1300 4500 1800 4500
Wire Wire Line
10150 3950 10150 2950
Wire Wire Line
10150 2950 9800 2950
Wire Wire Line
10250 4050 10250 2850
Wire Wire Line
10250 2850 9800 2850
Wire Wire Line
10350 4150 10350 2650
Wire Wire Line
10350 2650 9800 2650
Wire Wire Line
10450 4250 10450 2550
Wire Wire Line
10450 2550 9800 2550
Wire Wire Line
6050 1350 7550 1350
Wire Wire Line
7550 1350 7550 2050
Wire Wire Line
7550 2050 8200 2050
Wire Wire Line
6050 1650 7750 1650
$Comp
L Jumper:Jumper_3_Bridged12 JP?
U 1 1 61177187
P 7950 950
F 0 "JP?" H 7950 1154 50 0000 C CNN
F 1 "Jumper_3_Bridged12" H 7950 1063 50 0000 C CNN
F 2 "" H 7950 950 50 0001 C CNN
F 3 "~" H 7950 950 50 0001 C CNN
1 7950 950
1 0 0 -1
$EndComp
$Comp
L Memory_RAM:IDT7132 U1
U 1 1 6102DC5C
P 5150 2350
F 0 "U1" H 4600 3800 50 0000 C CNN
F 1 "IDT7132" H 5600 900 50 0000 C CNN
F 2 "Package_DIP:DIP-48_W15.24mm_Socket_LongPads" H 5150 2350 50 0001 C CNN
F 3 "" H 5150 2350 50 0001 C CNN
1 5150 2350
1 0 0 -1
$EndComp
Wire Wire Line
7400 750 7400 950
Wire Wire Line
7400 950 7700 950
Wire Wire Line
7950 1100 7950 2250
Wire Wire Line
7950 2250 8200 2250
$Comp
L Jumper:Jumper_3_Bridged12 JP?
U 1 1 61190E6D
P 4450 5250
F 0 "JP?" H 4450 5454 50 0000 C CNN
F 1 "Jumper_3_Bridged12" H 4450 5363 50 0000 C CNN
F 2 "" H 4450 5250 50 0001 C CNN
F 3 "~" H 4450 5250 50 0001 C CNN
1 4450 5250
1 0 0 -1
$EndComp
Wire Wire Line
4250 1350 3700 1350
Wire Wire Line
3700 1350 3700 5250
Wire Wire Line
3700 5250 4200 5250
$Comp
L Jumper:Jumper_3_Bridged12 JP?
U 1 1 611B120A
P 6200 5250
F 0 "JP?" H 6200 5361 50 0000 C CNN
F 1 "Jumper_3_Bridged12" H 6200 5452 50 0000 C CNN
F 2 "" H 6200 5250 50 0001 C CNN
F 3 "~" H 6200 5250 50 0001 C CNN
1 6200 5250
-1 0 0 1
$EndComp
$Comp
L Jumper:Jumper_3_Bridged12 JP?
U 1 1 61193046
P 5350 5250
F 0 "JP?" H 5350 5454 50 0000 C CNN
F 1 "Jumper_3_Bridged12" H 5350 5363 50 0000 C CNN
F 2 "" H 5350 5250 50 0001 C CNN
F 3 "~" H 5350 5250 50 0001 C CNN
1 5350 5250
-1 0 0 1
$EndComp
Wire Wire Line
7750 1350 10500 1350
Wire Wire Line
10500 1350 10500 2350
Wire Wire Line
10500 2350 9800 2350
Wire Wire Line
7750 1350 7750 1650
Wire Wire Line
6050 1750 7850 1750
Wire Wire Line
7850 1750 7850 1450
Wire Wire Line
7850 1450 10400 1450
Wire Wire Line
10400 1450 10400 2050
Wire Wire Line
9800 2050 10400 2050
Wire Wire Line
6050 1850 8050 1850
Wire Wire Line
8050 1850 8050 1550
Wire Wire Line
8050 1550 10300 1550
Wire Wire Line
10300 1550 10300 1950
Wire Wire Line
9800 1950 10300 1950
Wire Wire Line
6050 1950 7350 1950
Wire Wire Line
7350 1950 7350 2650
Wire Wire Line
7350 2650 8200 2650
Wire Wire Line
6050 2050 7250 2050
Wire Wire Line
7250 2050 7250 2750
Wire Wire Line
7250 2750 8200 2750
Wire Wire Line
6050 2150 7100 2150
Wire Wire Line
7100 2150 7100 2850
Wire Wire Line
7100 2850 8200 2850
Wire Bus Line
3150 2300 3150 3000
Wire Bus Line
@ -633,7 +694,4 @@ Wire Bus Line
3950 2750 3950 3450
Wire Bus Line
900 1550 900 2800
Connection ~ 1300 4500
Wire Wire Line
1300 4500 1800 4500
$EndSCHEMATC

View File

@ -315,7 +315,7 @@ U 1 1 613EE5FC
P 9000 2750
F 0 "U2" H 9000 3917 50 0000 C CNN
F 1 "ESP32-DEVKITC-32D" H 9000 3826 50 0000 C CNN
F 2 "MODULE_ESP32-DEVKITC-32D" H 9000 2750 50 0001 L BNN
F 2 "ESPDEVKIT:MODULE_ESP32-DEVKITC-32D" H 9000 2750 50 0001 L BNN
F 3 "" H 9000 2750 50 0001 L BNN
F 4 "4" H 9000 2750 50 0001 L BNN "PARTREV"
F 5 "Espressif Systems" H 9000 2750 50 0001 L BNN "MANUFACTURER"
@ -620,7 +620,7 @@ GND
Wire Wire Line
7200 3250 8200 3250
Text GLabel 1150 4700 0 50 Input ~ 0
Vcc
VCC
Wire Wire Line
1150 4700 1300 4700
Wire Wire Line

View File

@ -0,0 +1,316 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# Connector_Generic_Conn_01x04
#
DEF Connector_Generic_Conn_01x04 J 0 40 Y N 1 F N
F0 "J" 0 200 50 H V C CNN
F1 "Connector_Generic_Conn_01x04" 0 -300 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_1x??_*
$ENDFPLIST
DRAW
S -50 -195 0 -205 1 1 6 N
S -50 -95 0 -105 1 1 6 N
S -50 5 0 -5 1 1 6 N
S -50 105 0 95 1 1 6 N
S -50 150 50 -250 1 1 10 f
X Pin_1 1 -200 100 150 R 50 50 1 1 P
X Pin_2 2 -200 0 150 R 50 50 1 1 P
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
X Pin_4 4 -200 -200 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Generic_Conn_02x02_Odd_Even
#
DEF Connector_Generic_Conn_02x02_Odd_Even J 0 40 Y N 1 F N
F0 "J" 50 100 50 H V C CNN
F1 "Connector_Generic_Conn_02x02_Odd_Even" 50 -200 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_2x??_*
$ENDFPLIST
DRAW
S -50 -95 0 -105 1 1 6 N
S -50 5 0 -5 1 1 6 N
S -50 50 150 -150 1 1 10 f
S 150 -95 100 -105 1 1 6 N
S 150 5 100 -5 1 1 6 N
X Pin_1 1 -200 0 150 R 50 50 1 1 P
X Pin_2 2 300 0 150 L 50 50 1 1 P
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
X Pin_4 4 300 -100 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Generic_Conn_02x04_Odd_Even
#
DEF Connector_Generic_Conn_02x04_Odd_Even J 0 40 Y N 1 F N
F0 "J" 50 200 50 H V C CNN
F1 "Connector_Generic_Conn_02x04_Odd_Even" 50 -300 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_2x??_*
$ENDFPLIST
DRAW
S -50 -195 0 -205 1 1 6 N
S -50 -95 0 -105 1 1 6 N
S -50 5 0 -5 1 1 6 N
S -50 105 0 95 1 1 6 N
S -50 150 150 -250 1 1 10 f
S 150 -195 100 -205 1 1 6 N
S 150 -95 100 -105 1 1 6 N
S 150 5 100 -5 1 1 6 N
S 150 105 100 95 1 1 6 N
X Pin_1 1 -200 100 150 R 50 50 1 1 P
X Pin_2 2 300 100 150 L 50 50 1 1 P
X Pin_3 3 -200 0 150 R 50 50 1 1 P
X Pin_4 4 300 0 150 L 50 50 1 1 P
X Pin_5 5 -200 -100 150 R 50 50 1 1 P
X Pin_6 6 300 -100 150 L 50 50 1 1 P
X Pin_7 7 -200 -200 150 R 50 50 1 1 P
X Pin_8 8 300 -200 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Generic_Conn_02x07_Odd_Even
#
DEF Connector_Generic_Conn_02x07_Odd_Even J 0 40 Y N 1 F N
F0 "J" 50 400 50 H V C CNN
F1 "Connector_Generic_Conn_02x07_Odd_Even" 50 -400 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_2x??_*
$ENDFPLIST
DRAW
S -50 -295 0 -305 1 1 6 N
S -50 -195 0 -205 1 1 6 N
S -50 -95 0 -105 1 1 6 N
S -50 5 0 -5 1 1 6 N
S -50 105 0 95 1 1 6 N
S -50 205 0 195 1 1 6 N
S -50 305 0 295 1 1 6 N
S -50 350 150 -350 1 1 10 f
S 150 -295 100 -305 1 1 6 N
S 150 -195 100 -205 1 1 6 N
S 150 -95 100 -105 1 1 6 N
S 150 5 100 -5 1 1 6 N
S 150 105 100 95 1 1 6 N
S 150 205 100 195 1 1 6 N
S 150 305 100 295 1 1 6 N
X Pin_1 1 -200 300 150 R 50 50 1 1 P
X Pin_10 10 300 -100 150 L 50 50 1 1 P
X Pin_11 11 -200 -200 150 R 50 50 1 1 P
X Pin_12 12 300 -200 150 L 50 50 1 1 P
X Pin_13 13 -200 -300 150 R 50 50 1 1 P
X Pin_14 14 300 -300 150 L 50 50 1 1 P
X Pin_2 2 300 300 150 L 50 50 1 1 P
X Pin_3 3 -200 200 150 R 50 50 1 1 P
X Pin_4 4 300 200 150 L 50 50 1 1 P
X Pin_5 5 -200 100 150 R 50 50 1 1 P
X Pin_6 6 300 100 150 L 50 50 1 1 P
X Pin_7 7 -200 0 150 R 50 50 1 1 P
X Pin_8 8 300 0 150 L 50 50 1 1 P
X Pin_9 9 -200 -100 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_C
#
DEF Device_C C 0 10 N Y 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "Device_C" 25 -100 50 H V L CNN
F2 "" 38 -150 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
C_*
$ENDFPLIST
DRAW
P 2 0 1 20 -80 -30 80 -30 N
P 2 0 1 20 -80 30 80 30 N
X ~ 1 0 150 110 D 50 50 1 1 P
X ~ 2 0 -150 110 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# ESP32-DEV_KIT_ESP32-DEVKITC-32D
#
DEF ESP32-DEV_KIT_ESP32-DEVKITC-32D U 0 40 Y Y 1 L N
F0 "U" -601 1026 50 H V L BNN
F1 "ESP32-DEV_KIT_ESP32-DEVKITC-32D" -601 -1101 50 H V L BNN
F2 "MODULE_ESP32-DEVKITC-32D" 0 0 50 H I L BNN
F3 "" 0 0 50 H I L BNN
F4 "4" 0 0 50 H I L BNN "PARTREV"
F5 "Espressif Systems" 0 0 50 H I L BNN "MANUFACTURER"
DRAW
S -600 -1000 600 1000 0 0 10 f
X 3V3 1 -800 900 200 R 40 40 0 0 W
X IO26 10 -800 0 200 R 40 40 0 0 B
X IO27 11 -800 -100 200 R 40 40 0 0 B
X IO14 12 -800 -200 200 R 40 40 0 0 B
X IO12 13 -800 -300 200 R 40 40 0 0 B
X GND1 14 -800 -400 200 R 40 40 0 0 W
X IO13 15 -800 -500 200 R 40 40 0 0 B
X SD2 16 -800 -600 200 R 40 40 0 0 B
X SD3 17 -800 -700 200 R 40 40 0 0 B
X CMD 18 -800 -800 200 R 40 40 0 0 B
X EXT_5V 19 -800 -900 200 R 40 40 0 0 W
X EN 2 -800 800 200 R 40 40 0 0 I
X GND3 20 800 900 200 L 40 40 0 0 W
X IO23 21 800 800 200 L 40 40 0 0 B
X IO22 22 800 700 200 L 40 40 0 0 B
X TXD0 23 800 600 200 L 40 40 0 0 O
X RXD0 24 800 500 200 L 40 40 0 0 I
X IO21 25 800 400 200 L 40 40 0 0 B
X GND2 26 800 300 200 L 40 40 0 0 W
X IO19 27 800 200 200 L 40 40 0 0 B
X IO18 28 800 100 200 L 40 40 0 0 B
X IO5 29 800 0 200 L 40 40 0 0 B
X SENSOR_VP 3 -800 700 200 R 40 40 0 0 I
X IO17 30 800 -100 200 L 40 40 0 0 B
X IO16 31 800 -200 200 L 40 40 0 0 B
X IO4 32 800 -300 200 L 40 40 0 0 B
X IO0 33 800 -400 200 L 40 40 0 0 B
X IO2 34 800 -500 200 L 40 40 0 0 B
X IO15 35 800 -600 200 L 40 40 0 0 B
X SD1 36 800 -700 200 L 40 40 0 0 B
X SD0 37 800 -800 200 L 40 40 0 0 B
X CLK 38 800 -900 200 L 40 40 0 0 I C
X SENSOR_VN 4 -800 600 200 R 40 40 0 0 I
X IO34 5 -800 500 200 R 40 40 0 0 B
X IO35 6 -800 400 200 R 40 40 0 0 B
X IO32 7 -800 300 200 R 40 40 0 0 B
X IO33 8 -800 200 200 R 40 40 0 0 B
X IO25 9 -800 100 200 R 40 40 0 0 B
ENDDRAW
ENDDEF
#
# Memory_RAM_IDT7132
#
DEF Memory_RAM_IDT7132 U 0 20 Y Y 1 F N
F0 "U" 0 100 50 H V C CNN
F1 "Memory_RAM_IDT7132" 0 -100 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
S -600 -1400 600 1400 0 1 10 f
X /CEL 1 -900 1200 300 R 50 50 1 1 I
X A4L 10 -900 300 300 R 50 50 1 1 I
X A5L 11 -900 200 300 R 50 50 1 1 I
X A6L 12 -900 100 300 R 50 50 1 1 I
X A7L 13 -900 0 300 R 50 50 1 1 I
X A8L 14 -900 -100 300 R 50 50 1 1 I
X A9L 15 -900 -200 300 R 50 50 1 1 I
X I/O0L 16 -900 -500 300 R 50 50 1 1 I
X I/O1L 17 -900 -600 300 R 50 50 1 1 I
X I/O2L 18 -900 -700 300 R 50 50 1 1 I
X I/O3L 19 -900 -800 300 R 50 50 1 1 I
X R/WL 2 -900 1100 300 R 50 50 1 1 I
X I/O4L 20 -900 -900 300 R 50 50 1 1 I
X I/O5L 21 -900 -1000 300 R 50 50 1 1 I
X I/O6L 22 -900 -1100 300 R 50 50 1 1 I
X I/O7L 23 -900 -1200 300 R 50 50 1 1 I
X GND 24 0 -1400 0 U 50 50 1 1 W N
X I/O0R 25 900 -1200 300 L 50 50 1 1 I
X I/O1R 26 900 -1100 300 L 50 50 1 1 I
X I/O2R 27 900 -1000 300 L 50 50 1 1 I
X I/O3R 28 900 -900 300 L 50 50 1 1 I
X I/O4R 29 900 -800 300 L 50 50 1 1 I
X /BSYL 3 -900 1000 300 R 50 50 1 1 O
X I/O5R 30 900 -700 300 L 50 50 1 1 I
X I/O6R 31 900 -600 300 L 50 50 1 1 I
X I/O7R 32 900 -500 300 L 50 50 1 1 I
X A9R 33 900 -200 300 L 50 50 1 1 I
X A8R 34 900 -100 300 L 50 50 1 1 I
X A7R 35 900 0 300 L 50 50 1 1 I
X A6R 36 900 100 300 L 50 50 1 1 I
X A5R 37 900 200 300 L 50 50 1 1 I
X A4R 38 900 300 300 L 50 50 1 1 I
X A3R 39 900 400 300 L 50 50 1 1 I
X A10L 4 -900 -300 300 R 50 50 1 1 I
X A2R 40 900 500 300 L 50 50 1 1 I
X A1R 41 900 600 300 L 50 50 1 1 I
X A0R 42 900 700 300 L 50 50 1 1 I
X /OER 43 900 900 300 L 50 50 1 1 I
X A10R 44 900 -300 300 L 50 50 1 1 I
X /BSYR 45 900 1000 300 L 50 50 1 1 O
X R/WR 46 900 1100 300 L 50 50 1 1 I
X /CER 47 900 1200 300 L 50 50 1 1 I
X VCC 48 0 1400 0 U 50 50 1 1 W N
X /OEL 5 -900 900 300 R 50 50 1 1 I
X A0L 6 -900 700 300 R 50 50 1 1 I
X A1L 7 -900 600 300 R 50 50 1 1 I
X A2L 8 -900 500 300 R 50 50 1 1 I
X A3L 9 -900 400 300 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# kicad-library_AppleIIBus
#
DEF kicad-library_AppleIIBus J 0 40 Y Y 1 F N
F0 "J" -550 1500 50 H V L CNN
F1 "kicad-library_AppleIIBus" 200 1500 50 H V L CNN
F2 "footprint:AppleIIBus" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
S -600 1450 600 -1450 0 1 0 f
X ~IOSEL 1 -700 -400 100 R 50 50 1 1 O
X A8 10 -700 500 100 R 50 50 1 1 O
X A9 11 -700 400 100 R 50 50 1 1 O
X A10 12 -700 300 100 R 50 50 1 1 O
X A11 13 -700 200 100 R 50 50 1 1 O
X A12 14 -700 100 100 R 50 50 1 1 O
X A13 15 -700 0 100 R 50 50 1 1 O
X A14 16 -700 -100 100 R 50 50 1 1 O
X A15 17 -700 -200 100 R 50 50 1 1 O
X R~W 18 -700 -700 100 R 50 50 1 1 O
X NC 19 -700 -1300 100 R 50 50 1 1 P
X A0 2 -700 1300 100 R 50 50 1 1 O
X ~IOSTROBE 20 -700 -500 100 R 50 50 1 1 O
X ~RDY 21 -700 -900 100 R 50 50 1 1 I
X ~DMA 22 700 -150 100 L 50 50 1 1 I
X INT_OUT 23 700 50 100 L 50 50 1 1 I
X DMA_OUT 24 700 -350 100 L 50 50 1 1 I
X +5V 25 -150 1550 100 D 50 50 1 1 w
X GND 26 0 -1550 100 U 50 50 1 1 w
X DMA_IN 27 700 -250 100 L 50 50 1 1 O
X INT_IN 28 700 150 100 L 50 50 1 1 O
X ~NMI 29 700 350 100 L 50 50 1 1 I
X A1 3 -700 1200 100 R 50 50 1 1 O
X ~IRQ 30 700 250 100 L 50 50 1 1 I
X ~RES 31 -700 -1100 100 R 50 50 1 1 O
X ~INH 32 -700 -1000 100 R 50 50 1 1 I
X -12V 33 150 1550 100 D 50 50 1 1 w
X -5V 34 -50 1550 100 D 50 50 1 1 w
X NC 35 700 -1250 100 L 50 50 1 1 P
X 7M 36 700 -850 100 L 50 50 1 1 O
X Q3 37 700 -750 100 L 50 50 1 1 O
X PHI1 38 700 -650 100 L 50 50 1 1 O
X USER1 39 700 -1050 100 L 50 50 1 1 P
X A2 4 -700 1100 100 R 50 50 1 1 O
X PHI0 40 700 -550 100 L 50 50 1 1 O
X ~DEVSEL 41 -700 -600 100 R 50 50 1 1 O
X D7 42 700 550 100 L 50 50 1 1 B
X D6 43 700 650 100 L 50 50 1 1 B
X D5 44 700 750 100 L 50 50 1 1 B
X D4 45 700 850 100 L 50 50 1 1 B
X D3 46 700 950 100 L 50 50 1 1 B
X D2 47 700 1050 100 L 50 50 1 1 B
X D1 48 700 1150 100 L 50 50 1 1 B
X D0 49 700 1250 100 L 50 50 1 1 B
X A3 5 -700 1000 100 R 50 50 1 1 O
X +12V 50 50 1550 100 D 50 50 1 1 w
X A4 6 -700 900 100 R 50 50 1 1 O
X A5 7 -700 800 100 R 50 50 1 1 O
X A6 8 -700 700 100 R 50 50 1 1 O
X A7 9 -700 600 100 R 50 50 1 1 O
ENDDRAW
ENDDEF
#
#End Library

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,589 @@
(export (version D)
(design
(source /home/equant/projects/apple_ii/apple2idiot/card/apple2idiot_new/apple2idiot_new.sch)
(date "Sat Aug 7 06:34:40 2021")
(tool "Eeschema 5.1.10-88a1d61d58~88~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title Apple2Idiot)
(company)
(rev 1)
(date 2021-08-06)
(source apple2idiot_new.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "Nathanial Hendler")))))
(components
(comp (ref J1)
(value AppleIIBus)
(footprint kicad-library:AppleIIBus)
(libsource (lib kicad-library) (part AppleIIBus) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61291E51))
(comp (ref U2)
(value ESP32-DEVKITC-32D)
(footprint MODULE_ESP32-DEVKITC-32D)
(fields
(field (name MANUFACTURER) "Espressif Systems")
(field (name PARTREV) 4))
(libsource (lib ESP32-DEV_KIT) (part ESP32-DEVKITC-32D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 612B5485))
(comp (ref J2)
(value Conn_02x02_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x02_Odd_Even) (description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 615F9C72))
(comp (ref J5)
(value Conn_02x02_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x04_Odd_Even) (description "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61627517))
(comp (ref J6)
(value Conn_02x07_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x07_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x07_Odd_Even) (description "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6166C407))
(comp (ref J4)
(value Conn_02x02_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x02_Odd_Even) (description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61709865))
(comp (ref C1)
(value C)
(footprint Capacitor_THT:C_Disc_D10.5mm_W5.0mm_P10.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6174221E))
(comp (ref J3)
(value Conn_01x04)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 618300D7))
(comp (ref U1)
(value IDT7132)
(footprint Package_DIP:DIP-48_W15.24mm_LongPads)
(libsource (lib Memory_RAM) (part IDT7132) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61296796)))
(libparts
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x02_Odd_Even)
(description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x02_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x04_Odd_Even)
(description "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x04_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x07_Odd_Even)
(description "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x07_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib ESP32-DEV_KIT) (part ESP32-DEVKITC-32D)
(fields
(field (name Reference) U)
(field (name Value) ESP32-DEVKITC-32D)
(field (name Footprint) MODULE_ESP32-DEVKITC-32D)
(field (name PARTREV) 4)
(field (name MANUFACTURER) "Espressif Systems"))
(pins
(pin (num 1) (name 3V3) (type power_in))
(pin (num 2) (name EN) (type input))
(pin (num 3) (name SENSOR_VP) (type input))
(pin (num 4) (name SENSOR_VN) (type input))
(pin (num 5) (name IO34) (type BiDi))
(pin (num 6) (name IO35) (type BiDi))
(pin (num 7) (name IO32) (type BiDi))
(pin (num 8) (name IO33) (type BiDi))
(pin (num 9) (name IO25) (type BiDi))
(pin (num 10) (name IO26) (type BiDi))
(pin (num 11) (name IO27) (type BiDi))
(pin (num 12) (name IO14) (type BiDi))
(pin (num 13) (name IO12) (type BiDi))
(pin (num 14) (name GND1) (type power_in))
(pin (num 15) (name IO13) (type BiDi))
(pin (num 16) (name SD2) (type BiDi))
(pin (num 17) (name SD3) (type BiDi))
(pin (num 18) (name CMD) (type BiDi))
(pin (num 19) (name EXT_5V) (type power_in))
(pin (num 20) (name GND3) (type power_in))
(pin (num 21) (name IO23) (type BiDi))
(pin (num 22) (name IO22) (type BiDi))
(pin (num 23) (name TXD0) (type output))
(pin (num 24) (name RXD0) (type input))
(pin (num 25) (name IO21) (type BiDi))
(pin (num 26) (name GND2) (type power_in))
(pin (num 27) (name IO19) (type BiDi))
(pin (num 28) (name IO18) (type BiDi))
(pin (num 29) (name IO5) (type BiDi))
(pin (num 30) (name IO17) (type BiDi))
(pin (num 31) (name IO16) (type BiDi))
(pin (num 32) (name IO4) (type BiDi))
(pin (num 33) (name IO0) (type BiDi))
(pin (num 34) (name IO2) (type BiDi))
(pin (num 35) (name IO15) (type BiDi))
(pin (num 36) (name SD1) (type BiDi))
(pin (num 37) (name SD0) (type BiDi))
(pin (num 38) (name CLK) (type input))))
(libpart (lib Memory_RAM) (part IDT7132)
(fields
(field (name Reference) U)
(field (name Value) IDT7132))
(pins
(pin (num 1) (name /CEL) (type input))
(pin (num 2) (name R/WL) (type input))
(pin (num 3) (name /BSYL) (type output))
(pin (num 4) (name A10L) (type input))
(pin (num 5) (name /OEL) (type input))
(pin (num 6) (name A0L) (type input))
(pin (num 7) (name A1L) (type input))
(pin (num 8) (name A2L) (type input))
(pin (num 9) (name A3L) (type input))
(pin (num 10) (name A4L) (type input))
(pin (num 11) (name A5L) (type input))
(pin (num 12) (name A6L) (type input))
(pin (num 13) (name A7L) (type input))
(pin (num 14) (name A8L) (type input))
(pin (num 15) (name A9L) (type input))
(pin (num 16) (name I/O0L) (type input))
(pin (num 17) (name I/O1L) (type input))
(pin (num 18) (name I/O2L) (type input))
(pin (num 19) (name I/O3L) (type input))
(pin (num 20) (name I/O4L) (type input))
(pin (num 21) (name I/O5L) (type input))
(pin (num 22) (name I/O6L) (type input))
(pin (num 23) (name I/O7L) (type input))
(pin (num 24) (name GND) (type power_in))
(pin (num 25) (name I/O0R) (type input))
(pin (num 26) (name I/O1R) (type input))
(pin (num 27) (name I/O2R) (type input))
(pin (num 28) (name I/O3R) (type input))
(pin (num 29) (name I/O4R) (type input))
(pin (num 30) (name I/O5R) (type input))
(pin (num 31) (name I/O6R) (type input))
(pin (num 32) (name I/O7R) (type input))
(pin (num 33) (name A9R) (type input))
(pin (num 34) (name A8R) (type input))
(pin (num 35) (name A7R) (type input))
(pin (num 36) (name A6R) (type input))
(pin (num 37) (name A5R) (type input))
(pin (num 38) (name A4R) (type input))
(pin (num 39) (name A3R) (type input))
(pin (num 40) (name A2R) (type input))
(pin (num 41) (name A1R) (type input))
(pin (num 42) (name A0R) (type input))
(pin (num 43) (name /OER) (type input))
(pin (num 44) (name A10R) (type input))
(pin (num 45) (name /BSYR) (type output))
(pin (num 46) (name R/WR) (type input))
(pin (num 47) (name /CER) (type input))
(pin (num 48) (name VCC) (type power_in))))
(libpart (lib kicad-library) (part AppleIIBus)
(fields
(field (name Reference) J)
(field (name Value) AppleIIBus)
(field (name Footprint) footprint:AppleIIBus))
(pins
(pin (num 1) (name ~IOSEL) (type output))
(pin (num 2) (name A0) (type output))
(pin (num 3) (name A1) (type output))
(pin (num 4) (name A2) (type output))
(pin (num 5) (name A3) (type output))
(pin (num 6) (name A4) (type output))
(pin (num 7) (name A5) (type output))
(pin (num 8) (name A6) (type output))
(pin (num 9) (name A7) (type output))
(pin (num 10) (name A8) (type output))
(pin (num 11) (name A9) (type output))
(pin (num 12) (name A10) (type output))
(pin (num 13) (name A11) (type output))
(pin (num 14) (name A12) (type output))
(pin (num 15) (name A13) (type output))
(pin (num 16) (name A14) (type output))
(pin (num 17) (name A15) (type output))
(pin (num 18) (name R~W) (type output))
(pin (num 19) (name NC) (type passive))
(pin (num 20) (name ~IOSTROBE) (type output))
(pin (num 21) (name ~RDY) (type input))
(pin (num 22) (name ~DMA) (type input))
(pin (num 23) (name INT_OUT) (type input))
(pin (num 24) (name DMA_OUT) (type input))
(pin (num 25) (name +5V) (type power_out))
(pin (num 26) (name GND) (type power_out))
(pin (num 27) (name DMA_IN) (type output))
(pin (num 28) (name INT_IN) (type output))
(pin (num 29) (name ~NMI) (type input))
(pin (num 30) (name ~IRQ) (type input))
(pin (num 31) (name ~RES) (type output))
(pin (num 32) (name ~INH) (type input))
(pin (num 33) (name -12V) (type power_out))
(pin (num 34) (name -5V) (type power_out))
(pin (num 35) (name NC) (type passive))
(pin (num 36) (name 7M) (type output))
(pin (num 37) (name Q3) (type output))
(pin (num 38) (name PHI1) (type output))
(pin (num 39) (name USER1) (type passive))
(pin (num 40) (name PHI0) (type output))
(pin (num 41) (name ~DEVSEL) (type output))
(pin (num 42) (name D7) (type BiDi))
(pin (num 43) (name D6) (type BiDi))
(pin (num 44) (name D5) (type BiDi))
(pin (num 45) (name D4) (type BiDi))
(pin (num 46) (name D3) (type BiDi))
(pin (num 47) (name D2) (type BiDi))
(pin (num 48) (name D1) (type BiDi))
(pin (num 49) (name D0) (type BiDi))
(pin (num 50) (name +12V) (type power_out)))))
(libraries
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical ESP32-DEV_KIT)
(uri /home/equant/projects/kicad_stuff/ESP32-DEVKITC-32D/ESP32-DEVKITC-32D.lib))
(library (logical Memory_RAM)
(uri /usr/share/kicad/library/Memory_RAM.lib))
(library (logical kicad-library)
(uri /home/equant/projects/apple_ii/other_peoples_stuff/rharke/kicad-library/kicad-library.lib)))
(nets
(net (code 1) (name "Net-(J6-Pad4)")
(node (ref U2) (pin 33))
(node (ref J6) (pin 4)))
(net (code 2) (name "Net-(J6-Pad10)")
(node (ref U2) (pin 23))
(node (ref J6) (pin 10)))
(net (code 3) (name "Net-(J6-Pad8)")
(node (ref U2) (pin 24))
(node (ref J6) (pin 8)))
(net (code 4) (name "Net-(J6-Pad6)")
(node (ref J6) (pin 6))
(node (ref U2) (pin 32)))
(net (code 5) (name "Net-(J6-Pad2)")
(node (ref U2) (pin 34))
(node (ref J6) (pin 2)))
(net (code 6) (name "Net-(J6-Pad13)")
(node (ref J6) (pin 13))
(node (ref U2) (pin 4)))
(net (code 7) (name "Net-(J6-Pad14)")
(node (ref J6) (pin 14))
(node (ref U2) (pin 3)))
(net (code 8) (name GND)
(node (ref U1) (pin 43))
(node (ref U1) (pin 44))
(node (ref U1) (pin 47))
(node (ref U1) (pin 5))
(node (ref J1) (pin 26))
(node (ref U2) (pin 14))
(node (ref U2) (pin 26))
(node (ref U2) (pin 20))
(node (ref U1) (pin 24))
(node (ref U1) (pin 33))
(node (ref U1) (pin 34))
(node (ref C1) (pin 2)))
(net (code 9) (name VCC)
(node (ref C1) (pin 1))
(node (ref U1) (pin 48))
(node (ref U2) (pin 19))
(node (ref J1) (pin 25)))
(net (code 10) (name "Net-(J4-Pad2)")
(node (ref U2) (pin 5))
(node (ref J6) (pin 9))
(node (ref J4) (pin 2)))
(net (code 11) (name "Net-(J5-Pad2)")
(node (ref U2) (pin 10))
(node (ref J6) (pin 1))
(node (ref J5) (pin 2)))
(net (code 12) (name "Net-(J5-Pad8)")
(node (ref U2) (pin 8))
(node (ref J6) (pin 7))
(node (ref J5) (pin 8)))
(net (code 13) (name "Net-(J5-Pad6)")
(node (ref U2) (pin 7))
(node (ref J6) (pin 5))
(node (ref J5) (pin 6)))
(net (code 14) (name "Net-(J5-Pad7)")
(node (ref U1) (pin 35))
(node (ref J5) (pin 7)))
(net (code 15) (name "Net-(J5-Pad5)")
(node (ref U1) (pin 36))
(node (ref J5) (pin 5)))
(net (code 16) (name "Net-(J5-Pad4)")
(node (ref U2) (pin 11))
(node (ref J6) (pin 3))
(node (ref J5) (pin 4)))
(net (code 17) (name "Net-(J5-Pad3)")
(node (ref J5) (pin 3))
(node (ref U1) (pin 37)))
(net (code 18) (name "Net-(J5-Pad1)")
(node (ref J5) (pin 1))
(node (ref U1) (pin 38)))
(net (code 19) (name "Net-(J6-Pad12)")
(node (ref J6) (pin 12)))
(net (code 20) (name /A1)
(node (ref J1) (pin 3))
(node (ref U1) (pin 7)))
(net (code 21) (name "Net-(J1-Pad39)")
(node (ref J1) (pin 39)))
(net (code 22) (name "Net-(J1-Pad36)")
(node (ref J1) (pin 36)))
(net (code 23) (name "Net-(J1-Pad37)")
(node (ref J1) (pin 37)))
(net (code 24) (name "Net-(J1-Pad38)")
(node (ref J1) (pin 38)))
(net (code 25) (name "Net-(J1-Pad40)")
(node (ref J1) (pin 40)))
(net (code 26) (name "Net-(J1-Pad24)")
(node (ref J1) (pin 24)))
(net (code 27) (name "Net-(J1-Pad27)")
(node (ref J1) (pin 27)))
(net (code 28) (name "Net-(J1-Pad22)")
(node (ref J1) (pin 22)))
(net (code 29) (name "Net-(J1-Pad23)")
(node (ref J1) (pin 23)))
(net (code 30) (name "Net-(J1-Pad28)")
(node (ref J1) (pin 28)))
(net (code 31) (name "Net-(J1-Pad30)")
(node (ref J1) (pin 30)))
(net (code 32) (name "Net-(J1-Pad29)")
(node (ref J1) (pin 29)))
(net (code 33) (name /A3)
(node (ref U1) (pin 9))
(node (ref J1) (pin 5)))
(net (code 34) (name /A2)
(node (ref U1) (pin 8))
(node (ref J1) (pin 4)))
(net (code 35) (name "Net-(J1-Pad35)")
(node (ref J1) (pin 35)))
(net (code 36) (name /A0)
(node (ref U1) (pin 6))
(node (ref J1) (pin 2)))
(net (code 37) (name "Net-(J3-Pad4)")
(node (ref J4) (pin 3))
(node (ref U1) (pin 45))
(node (ref J3) (pin 4)))
(net (code 38) (name /A10)
(node (ref U1) (pin 4))
(node (ref J1) (pin 12)))
(net (code 39) (name "Net-(U2-Pad17)")
(node (ref U2) (pin 17)))
(net (code 40) (name "Net-(U2-Pad2)")
(node (ref U2) (pin 2)))
(net (code 41) (name "Net-(U2-Pad1)")
(node (ref U2) (pin 1)))
(net (code 42) (name "Net-(U2-Pad38)")
(node (ref U2) (pin 38)))
(net (code 43) (name "Net-(U2-Pad37)")
(node (ref U2) (pin 37)))
(net (code 44) (name "Net-(U2-Pad36)")
(node (ref U2) (pin 36)))
(net (code 45) (name "Net-(U2-Pad18)")
(node (ref U2) (pin 18)))
(net (code 46) (name "Net-(U2-Pad16)")
(node (ref U2) (pin 16)))
(net (code 47) (name "Net-(J1-Pad33)")
(node (ref J1) (pin 33)))
(net (code 48) (name "Net-(J1-Pad50)")
(node (ref J1) (pin 50)))
(net (code 49) (name "Net-(J1-Pad34)")
(node (ref J1) (pin 34)))
(net (code 50) (name "Net-(J1-Pad20)")
(node (ref J1) (pin 20)))
(net (code 51) (name "Net-(J1-Pad17)")
(node (ref J1) (pin 17)))
(net (code 52) (name "Net-(J1-Pad16)")
(node (ref J1) (pin 16)))
(net (code 53) (name "Net-(J1-Pad15)")
(node (ref J1) (pin 15)))
(net (code 54) (name "Net-(J1-Pad14)")
(node (ref J1) (pin 14)))
(net (code 55) (name "Net-(J1-Pad13)")
(node (ref J1) (pin 13)))
(net (code 56) (name "Net-(J1-Pad21)")
(node (ref J1) (pin 21)))
(net (code 57) (name "Net-(J1-Pad32)")
(node (ref J1) (pin 32)))
(net (code 58) (name "Net-(J1-Pad31)")
(node (ref J1) (pin 31)))
(net (code 59) (name "Net-(J1-Pad19)")
(node (ref J1) (pin 19)))
(net (code 60) (name /DR0)
(node (ref U2) (pin 13))
(node (ref U1) (pin 32)))
(net (code 61) (name /D0)
(node (ref U1) (pin 16))
(node (ref J1) (pin 49)))
(net (code 62) (name "Net-(J2-Pad2)")
(node (ref J2) (pin 2))
(node (ref J2) (pin 4))
(node (ref U1) (pin 1)))
(net (code 63) (name "Net-(J3-Pad3)")
(node (ref J4) (pin 1))
(node (ref U1) (pin 3))
(node (ref J3) (pin 3)))
(net (code 64) (name "Net-(J1-Pad18)")
(node (ref U1) (pin 2))
(node (ref J1) (pin 18)))
(net (code 65) (name /A9)
(node (ref U1) (pin 15))
(node (ref J1) (pin 11)))
(net (code 66) (name /A8)
(node (ref J1) (pin 10))
(node (ref U1) (pin 14)))
(net (code 67) (name /A7)
(node (ref J1) (pin 9))
(node (ref U1) (pin 13)))
(net (code 68) (name /A6)
(node (ref U1) (pin 12))
(node (ref J1) (pin 8)))
(net (code 69) (name /A5)
(node (ref U1) (pin 11))
(node (ref J1) (pin 7)))
(net (code 70) (name /A4)
(node (ref J1) (pin 6))
(node (ref U1) (pin 10)))
(net (code 71) (name RWR)
(node (ref U2) (pin 29))
(node (ref U1) (pin 46)))
(net (code 72) (name "Net-(J4-Pad4)")
(node (ref U2) (pin 6))
(node (ref J4) (pin 4))
(node (ref J6) (pin 11)))
(net (code 73) (name "Net-(J1-Pad41)")
(node (ref J3) (pin 1))
(node (ref J2) (pin 3))
(node (ref J1) (pin 41)))
(net (code 74) (name /D5)
(node (ref J1) (pin 44))
(node (ref U1) (pin 21)))
(net (code 75) (name /AR2)
(node (ref U1) (pin 40))
(node (ref U2) (pin 21)))
(net (code 76) (name /AR1)
(node (ref U1) (pin 41))
(node (ref U2) (pin 22)))
(net (code 77) (name /AR0)
(node (ref U2) (pin 25))
(node (ref U1) (pin 42)))
(net (code 78) (name /D7)
(node (ref U1) (pin 23))
(node (ref J1) (pin 42)))
(net (code 79) (name /D6)
(node (ref U1) (pin 22))
(node (ref J1) (pin 43)))
(net (code 80) (name /AR3)
(node (ref U1) (pin 39))
(node (ref U2) (pin 9)))
(net (code 81) (name /D4)
(node (ref J1) (pin 45))
(node (ref U1) (pin 20)))
(net (code 82) (name /D3)
(node (ref J1) (pin 46))
(node (ref U1) (pin 19)))
(net (code 83) (name /D2)
(node (ref J1) (pin 47))
(node (ref U1) (pin 18)))
(net (code 84) (name /D1)
(node (ref J1) (pin 48))
(node (ref U1) (pin 17)))
(net (code 85) (name /DR3)
(node (ref U2) (pin 35))
(node (ref U1) (pin 29)))
(net (code 86) (name /DR7)
(node (ref U1) (pin 25))
(node (ref U2) (pin 27)))
(net (code 87) (name /DR6)
(node (ref U2) (pin 28))
(node (ref U1) (pin 26)))
(net (code 88) (name /DR5)
(node (ref U2) (pin 30))
(node (ref U1) (pin 27)))
(net (code 89) (name /DR4)
(node (ref U2) (pin 31))
(node (ref U1) (pin 28)))
(net (code 90) (name /DR2)
(node (ref U1) (pin 30))
(node (ref U2) (pin 12)))
(net (code 91) (name /DR1)
(node (ref U1) (pin 31))
(node (ref U2) (pin 15)))
(net (code 93) (name "Net-(J1-Pad1)")
(node (ref J1) (pin 1))
(node (ref J2) (pin 1))
(node (ref J3) (pin 2)))))

View File

@ -0,0 +1,43 @@
update=Fri 06 Aug 2021 01:28:09 PM MST
version=1
last_client=kicad
[general]
version=1
RootSch=
BoardNm=
[pcbnew]
version=1
LastNetListRead=
UseCmpFile=1
PadDrill=0.600000000000
PadDrillOvalY=0.600000000000
PadSizeH=1.500000000000
PadSizeV=1.500000000000
PcbTextSizeV=1.500000000000
PcbTextSizeH=1.500000000000
PcbTextThickness=0.300000000000
ModuleTextSizeV=1.000000000000
ModuleTextSizeH=1.000000000000
ModuleTextSizeThickness=0.150000000000
SolderMaskClearance=0.000000000000
SolderMaskMinWidth=0.000000000000
DrawSegmentWidth=0.200000000000
BoardOutlineThickness=0.100000000000
ModuleOutlineThickness=0.150000000000
[cvpcb]
version=1
NetIExt=net
[eeschema]
version=1
LibDir=
[eeschema/libraries]
[schematic_editor]
version=1
PageLayoutDescrFile=
PlotDirectoryName=
SubpartIdSeparator=0
SubpartFirstId=65
NetFmtName=Pcbnew
SpiceAjustPassiveValues=0
LabSize=50
ERC_TestSimilarLabels=1

View File

@ -0,0 +1,898 @@
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr B 17000 11000
encoding utf-8
Sheet 1 1
Title "Apple2Idiot"
Date "2021-08-06"
Rev "1"
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 "Nathanial Hendler"
$EndDescr
$Comp
L kicad-library:AppleIIBus J1
U 1 1 61291E51
P 3400 6800
F 0 "J1" H 3950 8300 50 0000 C CNN
F 1 "AppleIIBus" H 3800 5300 50 0000 C CNN
F 2 "kicad-library:AppleIIBus" H 3400 6800 50 0001 C CNN
F 3 "" H 3400 6800 50 0001 C CNN
1 3400 6800
1 0 0 -1
$EndComp
$Comp
L ESP32-DEV_KIT:ESP32-DEVKITC-32D U2
U 1 1 612B5485
P 13000 5550
F 0 "U2" H 13500 6600 50 0000 C CNN
F 1 "ESP32-DEVKITC-32D" H 13200 4500 50 0000 C CNN
F 2 "MODULE_ESP32-DEVKITC-32D" H 13000 5550 50 0001 L BNN
F 3 "" H 13000 5550 50 0001 L BNN
F 4 "4" H 13000 5550 50 0001 L BNN "PARTREV"
F 5 "Espressif Systems" H 13000 5550 50 0001 L BNN "MANUFACTURER"
1 13000 5550
1 0 0 -1
$EndComp
Text GLabel 11950 6450 0 50 Input ~ 0
VCC
Text GLabel 3250 5200 1 50 Input ~ 0
VCC
Wire Wire Line
11950 6450 12200 6450
Text GLabel 14050 4650 2 50 Input ~ 0
GND
Text GLabel 14050 5250 2 50 Input ~ 0
GND
Text GLabel 3400 8500 3 50 Input ~ 0
GND
Wire Wire Line
3400 8350 3400 8500
Wire Wire Line
13800 4650 14050 4650
Wire Wire Line
13800 5250 14050 5250
Entry Wire Line
2500 6300 2400 6200
Entry Wire Line
2400 6100 2500 6200
Entry Wire Line
2400 6000 2500 6100
Entry Wire Line
2400 5900 2500 6000
Entry Wire Line
2400 5800 2500 5900
Entry Wire Line
2400 5700 2500 5800
Entry Wire Line
2400 5600 2500 5700
Entry Wire Line
2400 5500 2500 5600
Entry Wire Line
2400 5400 2500 5500
Wire Wire Line
2500 5500 2700 5500
Wire Wire Line
2500 5600 2700 5600
Wire Wire Line
2500 5700 2700 5700
Wire Wire Line
2500 5800 2700 5800
Wire Wire Line
2500 5900 2700 5900
Wire Wire Line
2500 6000 2700 6000
Wire Wire Line
2500 6100 2700 6100
Wire Wire Line
2500 6200 2700 6200
Wire Wire Line
2500 6300 2700 6300
Entry Wire Line
7400 6050 7300 5950
Entry Wire Line
7300 5850 7400 5950
Entry Wire Line
7300 5750 7400 5850
Entry Wire Line
7300 5650 7400 5750
Entry Wire Line
7300 5550 7400 5650
Entry Wire Line
7300 5450 7400 5550
Entry Wire Line
7300 5350 7400 5450
Entry Wire Line
7300 5250 7400 5350
Entry Wire Line
7300 5150 7400 5250
Wire Wire Line
7400 5250 7600 5250
Wire Wire Line
7400 5350 7600 5350
Wire Wire Line
7400 5450 7600 5450
Wire Wire Line
7400 5550 7600 5550
Wire Wire Line
7400 5650 7600 5650
Wire Wire Line
7400 5750 7600 5750
Wire Wire Line
7400 5850 7600 5850
Wire Wire Line
7400 5950 7600 5950
Wire Wire Line
7400 6050 7600 6050
Entry Wire Line
4250 6250 4350 6350
Entry Wire Line
4250 6150 4350 6250
Entry Wire Line
4250 6050 4350 6150
Entry Wire Line
4250 5950 4350 6050
Entry Wire Line
4250 5850 4350 5950
Entry Wire Line
4250 5750 4350 5850
Entry Wire Line
4250 5650 4350 5750
Entry Wire Line
4250 5550 4350 5650
Entry Wire Line
7400 6150 7300 6050
Wire Wire Line
7400 6150 7600 6150
Entry Wire Line
2500 6500 2400 6400
Entry Wire Line
2400 6300 2500 6400
Wire Wire Line
2500 6400 2700 6400
Wire Wire Line
2500 6500 2700 6500
Entry Wire Line
9600 5350 9700 5450
Entry Wire Line
9600 5450 9700 5550
Entry Wire Line
9600 5250 9700 5350
Entry Wire Line
11200 5750 11300 5850
Entry Wire Line
11200 5950 11300 6050
Entry Wire Line
11200 5650 11300 5750
Wire Wire Line
9600 5250 9400 5250
Wire Wire Line
9600 5350 9400 5350
Wire Wire Line
9600 5450 9400 5450
Text GLabel 11950 5950 0 50 Input ~ 0
GND
Wire Wire Line
11950 5950 12200 5950
Wire Wire Line
11300 6050 12200 6050
Wire Wire Line
11300 5850 12200 5850
Entry Wire Line
9600 5550 9700 5650
Wire Wire Line
9600 5550 9400 5550
Entry Wire Line
14550 6150 14650 6250
Entry Wire Line
14550 5750 14650 5850
Entry Wire Line
14550 5650 14650 5750
Entry Wire Line
14550 5450 14650 5550
Entry Wire Line
14550 5350 14650 5450
Wire Wire Line
13800 6150 14550 6150
Wire Wire Line
13800 5750 14550 5750
Wire Wire Line
13800 5650 14550 5650
Wire Wire Line
13800 5450 14550 5450
Wire Wire Line
13800 5350 14550 5350
Entry Wire Line
9600 6550 9700 6650
Entry Wire Line
9600 6650 9700 6750
Wire Wire Line
9600 6550 9400 6550
Wire Wire Line
9600 6650 9400 6650
Entry Wire Line
9600 6850 9700 6950
Entry Wire Line
9600 6950 9700 7050
Entry Wire Line
9600 6750 9700 6850
Wire Wire Line
9600 6750 9400 6750
Wire Wire Line
9600 6850 9400 6850
Wire Wire Line
9600 6950 9400 6950
Entry Wire Line
9600 7150 9700 7250
Entry Wire Line
9600 7050 9700 7150
Wire Wire Line
9600 7050 9400 7050
Wire Wire Line
9600 7150 9400 7150
Entry Wire Line
7400 6950 7300 6850
Entry Wire Line
7300 6750 7400 6850
Entry Wire Line
7300 6650 7400 6750
Entry Wire Line
7300 6550 7400 6650
Wire Wire Line
7400 6550 7600 6550
Wire Wire Line
7400 6650 7600 6650
Wire Wire Line
7400 6750 7600 6750
Wire Wire Line
7400 6850 7600 6850
Wire Wire Line
7400 6950 7600 6950
Entry Wire Line
7400 7050 7300 6950
Wire Wire Line
7400 7050 7600 7050
Entry Wire Line
7400 7150 7300 7050
Wire Wire Line
7400 7150 7600 7150
Wire Bus Line
11200 7550 9700 7550
Wire Bus Line
11200 7550 14650 7550
Connection ~ 11200 7550
Text GLabel 9650 4750 2 50 Input ~ 0
GND
Wire Wire Line
9400 4750 9650 4750
Text GLabel 9650 4850 2 50 Input ~ 0
RWR
Wire Wire Line
9400 4850 9650 4850
Text GLabel 14050 5550 2 50 Input ~ 0
RWR
Wire Wire Line
13800 5550 14050 5550
Entry Wire Line
14550 5150 14650 5250
Wire Wire Line
13800 5150 14550 5150
Entry Wire Line
14550 4850 14650 4950
Wire Wire Line
13800 4850 14550 4850
Entry Wire Line
14550 4750 14650 4850
Wire Wire Line
13800 4750 14550 4750
Wire Wire Line
11300 5750 12200 5750
Entry Wire Line
11200 5350 11300 5450
Wire Wire Line
11300 5450 12200 5450
Wire Bus Line
9700 5350 11200 5350
Wire Bus Line
11200 5350 11200 4100
Wire Bus Line
11200 4100 14650 4100
Wire Wire Line
3250 5250 3250 5200
Wire Wire Line
4100 5550 4250 5550
Wire Wire Line
4100 5650 4250 5650
Wire Wire Line
4100 5750 4250 5750
Wire Wire Line
4100 5850 4250 5850
Wire Wire Line
4100 5950 4250 5950
Wire Wire Line
4100 6050 4250 6050
Wire Wire Line
4100 6150 4250 6150
Wire Wire Line
4100 6250 4250 6250
Wire Wire Line
2700 7200 2100 7200
Wire Wire Line
2100 7200 2100 3700
Wire Wire Line
7600 4950 7450 4950
Wire Wire Line
8050 4200 9900 4200
Wire Wire Line
9900 4200 9900 4950
Wire Wire Line
9900 4950 9400 4950
Wire Wire Line
12200 5150 11950 5150
Wire Wire Line
2700 7500 1950 7500
Wire Wire Line
1950 7500 1950 4850
Wire Wire Line
2100 3700 2750 3700
Text Label 2500 5500 0 50 ~ 0
A0
Text Label 2500 5600 0 50 ~ 0
A1
Text Label 2500 5700 0 50 ~ 0
A2
Text Label 2500 5800 0 50 ~ 0
A3
Text Label 2500 5900 0 50 ~ 0
A4
Text Label 2500 6000 0 50 ~ 0
A5
Text Label 2500 6100 0 50 ~ 0
A6
Text Label 2500 6200 0 50 ~ 0
A7
Text Label 2500 6300 0 50 ~ 0
A8
Text Label 2500 6400 0 50 ~ 0
A9
Text Label 2500 6500 0 50 ~ 0
A10
Text Label 4150 5550 0 50 ~ 0
D0
Text Label 4150 5650 0 50 ~ 0
D1
Text Label 4150 5750 0 50 ~ 0
D2
Text Label 4150 5850 0 50 ~ 0
D3
Text Label 4150 5950 0 50 ~ 0
D4
Text Label 4150 6050 0 50 ~ 0
D5
Text Label 4150 6150 0 50 ~ 0
D6
Text Label 4150 6250 0 50 ~ 0
D7
Text Label 7400 6550 0 50 ~ 0
D1
Text Label 7400 6650 0 50 ~ 0
D2
Text Label 7400 6750 0 50 ~ 0
D3
Text Label 7400 6850 0 50 ~ 0
D4
Text Label 7400 6950 0 50 ~ 0
D5
Text Label 7400 7050 0 50 ~ 0
D6
Text Label 7400 7150 0 50 ~ 0
D7
Text Label 7400 5250 0 50 ~ 0
A0
Text Label 7400 5350 0 50 ~ 0
A1
Text Label 7400 5450 0 50 ~ 0
A2
Text Label 7400 5550 0 50 ~ 0
A3
Text Label 7400 5650 0 50 ~ 0
A4
Text Label 7400 5750 0 50 ~ 0
A5
Text Label 7400 5850 0 50 ~ 0
A6
Text Label 7400 5950 0 50 ~ 0
A7
Text Label 7400 6050 0 50 ~ 0
A8
Text Label 7400 6150 0 50 ~ 0
A9
Text Label 9450 5250 0 50 ~ 0
AR0
Text Label 9450 5350 0 50 ~ 0
AR1
Text Label 9450 5450 0 50 ~ 0
AR2
Text Label 9450 5550 0 50 ~ 0
AR3
Text Label 14350 5150 0 50 ~ 0
AR0
Text Label 14350 4850 0 50 ~ 0
AR1
Text Label 14350 4750 0 50 ~ 0
AR2
Text Label 11400 5450 0 50 ~ 0
AR3
Text Label 9400 6550 0 50 ~ 0
DR1
Text Label 9400 6650 0 50 ~ 0
DR2
Text Label 9400 6750 0 50 ~ 0
DR3
Text Label 9400 6850 0 50 ~ 0
DR4
Text Label 9400 6950 0 50 ~ 0
DR5
Text Label 9400 7050 0 50 ~ 0
DR6
Text Label 9400 7150 0 50 ~ 0
DR7
Text Label 11350 5850 0 50 ~ 0
DR0
Text Label 11350 6050 0 50 ~ 0
DR1
Text Label 11350 5750 0 50 ~ 0
DR2
Text Label 14350 6150 0 50 ~ 0
DR3
Text Label 14350 5750 0 50 ~ 0
DR4
Text Label 14350 5650 0 50 ~ 0
DR5
Text Label 14350 5450 0 50 ~ 0
DR6
Text Label 14350 5350 0 50 ~ 0
DR7
$Comp
L Connector_Generic:Conn_02x02_Odd_Even J2
U 1 1 615F9C72
P 2950 3700
F 0 "J2" H 3000 3917 50 0000 C CNN
F 1 "Conn_02x02_Odd_Even" H 3000 3826 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" H 2950 3700 50 0001 C CNN
F 3 "~" H 2950 3700 50 0001 C CNN
1 2950 3700
1 0 0 -1
$EndComp
Wire Wire Line
1850 3800 2750 3800
Wire Wire Line
1850 7400 2700 7400
Wire Wire Line
3250 3700 3250 3800
Wire Wire Line
1950 4850 7600 4850
Wire Wire Line
3250 3800 7200 3800
Wire Wire Line
7200 3800 7200 4750
Connection ~ 3250 3800
Wire Wire Line
7200 4750 7600 4750
$Comp
L Connector_Generic:Conn_02x04_Odd_Even J5
U 1 1 61627517
P 10300 5750
F 0 "J5" H 10350 6067 50 0000 C CNN
F 1 "Conn_02x02_Odd_Even" H 10350 5976 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" H 10300 5750 50 0001 C CNN
F 3 "~" H 10300 5750 50 0001 C CNN
1 10300 5750
1 0 0 -1
$EndComp
Wire Wire Line
9650 5650 9650 5700
Wire Wire Line
9650 5700 9750 5700
Wire Wire Line
9750 5700 9750 5650
Wire Wire Line
9750 5650 10100 5650
Wire Wire Line
9400 5650 9650 5650
Wire Wire Line
9400 5750 10100 5750
Wire Wire Line
10600 5650 10800 5650
Wire Wire Line
10800 5650 10800 5550
Wire Wire Line
10800 5550 12200 5550
Wire Wire Line
10600 5750 10650 5750
Wire Wire Line
10850 5750 10850 5600
Wire Wire Line
10850 5600 12000 5600
Wire Wire Line
12000 5600 12000 5650
Wire Wire Line
12000 5650 12200 5650
Wire Wire Line
9400 5850 10100 5850
Wire Wire Line
9400 5950 10100 5950
Wire Wire Line
10600 5850 10700 5850
Wire Wire Line
10900 5850 10900 5250
Wire Wire Line
10900 5250 12200 5250
Wire Wire Line
10600 5950 10750 5950
Wire Wire Line
11000 5950 11000 5300
Wire Wire Line
11000 5300 12050 5300
Wire Wire Line
12050 5300 12050 5350
Wire Wire Line
12050 5350 12200 5350
$Comp
L Connector_Generic:Conn_02x07_Odd_Even J6
U 1 1 6166C407
P 12450 2400
F 0 "J6" H 12500 2917 50 0000 C CNN
F 1 "Conn_02x07_Odd_Even" H 12500 2826 50 0000 C CNN
F 2 "Connector_PinSocket_2.54mm:PinSocket_2x07_P2.54mm_Vertical" H 12450 2400 50 0001 C CNN
F 3 "~" H 12450 2400 50 0001 C CNN
1 12450 2400
1 0 0 -1
$EndComp
Connection ~ 10600 5650
Connection ~ 10650 5750
Wire Wire Line
10650 5750 10850 5750
Connection ~ 10700 5850
Wire Wire Line
10700 5850 10900 5850
Connection ~ 10750 5950
Wire Wire Line
10750 5950 11000 5950
Wire Wire Line
12250 2100 10600 2100
Wire Wire Line
10600 2100 10600 5650
Wire Wire Line
12250 2200 10650 2200
Wire Wire Line
10650 2200 10650 5750
Wire Wire Line
12250 2300 10700 2300
Wire Wire Line
10700 2300 10700 5850
Wire Wire Line
12250 2400 10750 2400
Wire Wire Line
10750 2400 10750 5950
Wire Wire Line
12000 5050 12000 2500
Wire Wire Line
12000 2500 12250 2500
Wire Wire Line
12000 5050 12200 5050
Wire Wire Line
11950 5150 11950 2600
Wire Wire Line
11950 2600 12250 2600
Wire Wire Line
12200 4850 12100 4850
Wire Wire Line
12100 4850 12100 2850
Wire Wire Line
12100 2850 12850 2850
Wire Wire Line
12850 2850 12850 2700
Wire Wire Line
12850 2700 12750 2700
Wire Wire Line
12200 4950 12050 4950
Wire Wire Line
12050 4950 12050 2700
Wire Wire Line
12050 2700 12250 2700
Wire Wire Line
13800 6050 16050 6050
Wire Wire Line
16050 6050 16050 2100
Wire Wire Line
16050 2100 12750 2100
Wire Wire Line
13800 5950 15950 5950
Wire Wire Line
15950 5950 15950 2200
Wire Wire Line
15950 2200 12750 2200
Wire Wire Line
14550 5850 14550 5900
Wire Wire Line
14800 5900 14800 5850
Wire Wire Line
14800 5850 15850 5850
Wire Wire Line
15850 5850 15850 2300
Wire Wire Line
15850 2300 12750 2300
Wire Wire Line
13800 5850 14550 5850
Wire Wire Line
14550 5900 14800 5900
Wire Wire Line
13800 5050 14550 5050
Wire Wire Line
14550 5050 14550 5100
Wire Wire Line
14550 5100 15750 5100
Wire Wire Line
15750 2400 12750 2400
Wire Wire Line
15750 2400 15750 5100
Wire Wire Line
13800 4950 14550 4950
Wire Wire Line
14550 4950 14550 5000
Wire Wire Line
14550 5000 15650 5000
Wire Wire Line
15650 2500 12750 2500
Wire Wire Line
15650 2500 15650 5000
$Comp
L Connector_Generic:Conn_02x02_Odd_Even J4
U 1 1 61709865
P 8400 2800
F 0 "J4" H 8450 3017 50 0000 C CNN
F 1 "Conn_02x02_Odd_Even" H 8450 2926 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" H 8400 2800 50 0001 C CNN
F 3 "~" H 8400 2800 50 0001 C CNN
1 8400 2800
1 0 0 -1
$EndComp
Wire Wire Line
7450 4950 7450 2800
Wire Wire Line
7450 2800 8200 2800
Wire Wire Line
8050 2900 8200 2900
Wire Wire Line
8050 2900 8050 4200
Wire Wire Line
8700 2800 11600 2800
Wire Wire Line
11600 2800 11600 5050
Wire Wire Line
11600 5050 12000 5050
Connection ~ 12000 5050
Wire Wire Line
8700 2900 11500 2900
Wire Wire Line
11500 2900 11500 5150
Wire Wire Line
11500 5150 11950 5150
Connection ~ 11950 5150
$Comp
L Device:C C1
U 1 1 6174221E
P 5250 8150
F 0 "C1" H 5365 8196 50 0000 L CNN
F 1 "C" H 5365 8105 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D10.5mm_W5.0mm_P10.00mm" H 5288 8000 50 0001 C CNN
F 3 "~" H 5250 8150 50 0001 C CNN
1 5250 8150
1 0 0 -1
$EndComp
Text GLabel 5250 8400 3 50 Input ~ 0
GND
Text GLabel 5250 7900 1 50 Input ~ 0
VCC
Wire Wire Line
5250 7900 5250 8000
Wire Wire Line
5250 8300 5250 8400
Wire Bus Line
2400 4950 7300 4950
Wire Wire Line
1850 2200 5000 2200
Wire Wire Line
5000 2200 5000 1850
Wire Wire Line
1850 2200 1850 3800
Connection ~ 1850 3800
Wire Wire Line
1850 3800 1850 7400
Wire Wire Line
2100 3700 2100 2300
Wire Wire Line
2100 2300 5100 2300
Wire Wire Line
5100 2300 5100 1850
Connection ~ 2100 3700
Wire Wire Line
8050 2900 5300 2900
Wire Wire Line
5300 2900 5300 1850
Connection ~ 8050 2900
Wire Wire Line
7450 2800 5200 2800
Wire Wire Line
5200 2800 5200 1850
Connection ~ 7450 2800
Text GLabel 7550 5050 0 50 Input ~ 0
GND
Wire Wire Line
7550 5050 7600 5050
Text GLabel 9450 5050 2 50 Input ~ 0
GND
Wire Wire Line
9450 5050 9400 5050
Text GLabel 9450 6050 2 50 Input ~ 0
GND
Wire Wire Line
9450 6050 9400 6050
Text GLabel 9450 6150 2 50 Input ~ 0
GND
Wire Wire Line
9450 6150 9400 6150
$Comp
L Connector_Generic:Conn_01x04 J3
U 1 1 618300D7
P 5100 1650
F 0 "J3" V 5064 1362 50 0000 R CNN
F 1 "Conn_01x04" V 4973 1362 50 0000 R CNN
F 2 "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" H 5100 1650 50 0001 C CNN
F 3 "~" H 5100 1650 50 0001 C CNN
1 5100 1650
0 -1 -1 0
$EndComp
Wire Wire Line
9450 6250 9400 6250
Text GLabel 9450 6250 2 50 Input ~ 0
GND
Text Label 9400 6450 0 50 ~ 0
DR0
Text Label 7400 6250 0 50 ~ 0
A10
Text Label 7400 6450 0 50 ~ 0
D0
Wire Bus Line
4350 6350 7300 6350
Wire Wire Line
7400 6450 7600 6450
Entry Wire Line
7300 6350 7400 6450
Entry Wire Line
7300 6450 7400 6550
Wire Wire Line
9600 6450 9400 6450
Entry Wire Line
9600 6450 9700 6550
Wire Wire Line
7400 6250 7600 6250
Entry Wire Line
7400 6250 7300 6150
$Comp
L Memory_RAM:IDT7132 U1
U 1 1 61296796
P 8500 5950
F 0 "U1" H 9050 7400 50 0000 C CNN
F 1 "IDT7132" H 8950 4500 50 0000 C CNN
F 2 "Package_DIP:DIP-48_W15.24mm_LongPads" H 8500 5950 50 0001 C CNN
F 3 "" H 8500 5950 50 0001 C CNN
1 8500 5950
1 0 0 -1
$EndComp
NoConn ~ 12750 2600
NoConn ~ 4100 6450
NoConn ~ 4100 6550
NoConn ~ 4100 6650
NoConn ~ 4100 6750
NoConn ~ 4100 6950
NoConn ~ 4100 7050
NoConn ~ 4100 7150
NoConn ~ 4100 7350
NoConn ~ 4100 7450
NoConn ~ 4100 7550
NoConn ~ 4100 7650
NoConn ~ 4100 7850
NoConn ~ 4100 8050
NoConn ~ 2700 8100
NoConn ~ 2700 7900
NoConn ~ 2700 7800
NoConn ~ 2700 7700
NoConn ~ 2700 6600
NoConn ~ 2700 6700
NoConn ~ 2700 6800
NoConn ~ 2700 6900
NoConn ~ 2700 7000
NoConn ~ 2700 7300
NoConn ~ 3350 5250
NoConn ~ 3450 5250
NoConn ~ 3550 5250
NoConn ~ 12200 6150
NoConn ~ 12200 6250
NoConn ~ 12200 6350
NoConn ~ 13800 6250
NoConn ~ 13800 6350
NoConn ~ 13800 6450
NoConn ~ 12200 4650
NoConn ~ 12200 4750
Text Label 12050 5550 0 50 ~ 0
IO26
Text Label 12050 5650 0 50 ~ 0
IO27
Text Label 12050 5350 0 50 ~ 0
IO33
Text Label 12050 5450 0 50 ~ 0
IO25
Text Label 12050 5050 0 50 ~ 0
IO34
Text Label 12050 5150 0 50 ~ 0
IO35
Text Label 12050 5250 0 50 ~ 0
IO32
Text Label 12100 4850 0 50 ~ 0
SENVP
Text Label 12100 4950 0 50 ~ 0
SENVN
Text Label 13800 4950 0 50 ~ 0
TX
Text Label 13800 5050 0 50 ~ 0
RX
Text Label 13850 5850 0 50 ~ 0
IO4
Text Label 13850 5950 0 50 ~ 0
IO0
Text Label 13850 6050 0 50 ~ 0
IO2
Text Label 9400 5650 0 50 ~ 0
AR4
Text Label 9400 5750 0 50 ~ 0
AR5
Text Label 9400 5850 0 50 ~ 0
AR6
Text Label 9400 5950 0 50 ~ 0
AR7
Wire Bus Line
9700 5350 9700 5650
Wire Bus Line
11200 5650 11200 7550
Wire Bus Line
14650 4100 14650 5250
Wire Bus Line
4350 5650 4350 6350
Wire Bus Line
14650 5450 14650 7550
Wire Bus Line
7300 6350 7300 7050
Wire Bus Line
9700 6550 9700 7550
Wire Bus Line
7300 4950 7300 6150
Wire Bus Line
2400 4950 2400 6400
Text Label 7500 4950 0 50 ~ 0
BSYL
Text Label 9350 4950 0 50 ~ 0
BSYR
Text Label 2250 7200 0 50 ~ 0
IOSEL
Text Label 2250 7400 0 50 ~ 0
DEVSEL
Text Label 2250 7500 0 50 ~ 0
RW
Text Label 3450 3800 0 50 ~ 0
CEL
$EndSCHEMATC

View File

@ -0,0 +1,850 @@
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr B 17000 11000
encoding utf-8
Sheet 1 1
Title "Apple2Idiot"
Date "2021-08-06"
Rev "1"
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 "Nathanial Hendler"
$EndDescr
$Comp
L kicad-library:AppleIIBus J1
U 1 1 61291E51
P 3400 6800
F 0 "J1" H 3950 8300 50 0000 C CNN
F 1 "AppleIIBus" H 3800 5300 50 0000 C CNN
F 2 "kicad-library:AppleIIBus" H 3400 6800 50 0001 C CNN
F 3 "" H 3400 6800 50 0001 C CNN
1 3400 6800
1 0 0 -1
$EndComp
$Comp
L ESP32-DEV_KIT:ESP32-DEVKITC-32D U2
U 1 1 612B5485
P 13000 5550
F 0 "U2" H 13500 6600 50 0000 C CNN
F 1 "ESP32-DEVKITC-32D" H 13200 4500 50 0000 C CNN
F 2 "MODULE_ESP32-DEVKITC-32D" H 13000 5550 50 0001 L BNN
F 3 "" H 13000 5550 50 0001 L BNN
F 4 "4" H 13000 5550 50 0001 L BNN "PARTREV"
F 5 "Espressif Systems" H 13000 5550 50 0001 L BNN "MANUFACTURER"
1 13000 5550
1 0 0 -1
$EndComp
Text GLabel 11950 6450 0 50 Input ~ 0
VCC
Text GLabel 3250 5200 1 50 Input ~ 0
VCC
Wire Wire Line
11950 6450 12200 6450
Text GLabel 14050 4650 2 50 Input ~ 0
GND
Text GLabel 14050 5250 2 50 Input ~ 0
GND
Text GLabel 3400 8500 3 50 Input ~ 0
GND
Wire Wire Line
3400 8350 3400 8500
Wire Wire Line
13800 4650 14050 4650
Wire Wire Line
13800 5250 14050 5250
Entry Wire Line
2500 6300 2400 6200
Entry Wire Line
2400 6100 2500 6200
Entry Wire Line
2400 6000 2500 6100
Entry Wire Line
2400 5900 2500 6000
Entry Wire Line
2400 5800 2500 5900
Entry Wire Line
2400 5700 2500 5800
Entry Wire Line
2400 5600 2500 5700
Entry Wire Line
2400 5500 2500 5600
Entry Wire Line
2400 5400 2500 5500
Wire Wire Line
2500 5500 2700 5500
Wire Wire Line
2500 5600 2700 5600
Wire Wire Line
2500 5700 2700 5700
Wire Wire Line
2500 5800 2700 5800
Wire Wire Line
2500 5900 2700 5900
Wire Wire Line
2500 6000 2700 6000
Wire Wire Line
2500 6100 2700 6100
Wire Wire Line
2500 6200 2700 6200
Wire Wire Line
2500 6300 2700 6300
Entry Wire Line
7400 6050 7300 5950
Entry Wire Line
7300 5850 7400 5950
Entry Wire Line
7300 5750 7400 5850
Entry Wire Line
7300 5650 7400 5750
Entry Wire Line
7300 5550 7400 5650
Entry Wire Line
7300 5450 7400 5550
Entry Wire Line
7300 5350 7400 5450
Entry Wire Line
7300 5250 7400 5350
Entry Wire Line
7300 5150 7400 5250
Wire Wire Line
7400 5250 7600 5250
Wire Wire Line
7400 5350 7600 5350
Wire Wire Line
7400 5450 7600 5450
Wire Wire Line
7400 5550 7600 5550
Wire Wire Line
7400 5650 7600 5650
Wire Wire Line
7400 5750 7600 5750
Wire Wire Line
7400 5850 7600 5850
Wire Wire Line
7400 5950 7600 5950
Wire Wire Line
7400 6050 7600 6050
Entry Wire Line
4250 6250 4350 6350
Entry Wire Line
4250 6150 4350 6250
Entry Wire Line
4250 6050 4350 6150
Entry Wire Line
4250 5950 4350 6050
Entry Wire Line
4250 5850 4350 5950
Entry Wire Line
4250 5750 4350 5850
Entry Wire Line
4250 5650 4350 5750
Entry Wire Line
4250 5550 4350 5650
Entry Wire Line
7400 6150 7300 6050
Wire Wire Line
7400 6150 7600 6150
Entry Wire Line
2500 6500 2400 6400
Entry Wire Line
2400 6300 2500 6400
Wire Wire Line
2500 6400 2700 6400
Wire Wire Line
2500 6500 2700 6500
Entry Wire Line
9600 5350 9700 5450
Entry Wire Line
9600 5450 9700 5550
Entry Wire Line
9600 5250 9700 5350
Entry Wire Line
11200 5750 11300 5850
Entry Wire Line
11200 5950 11300 6050
Entry Wire Line
11200 5650 11300 5750
Wire Wire Line
9600 5250 9400 5250
Wire Wire Line
9600 5350 9400 5350
Wire Wire Line
9600 5450 9400 5450
Text GLabel 11950 5950 0 50 Input ~ 0
GND
Wire Wire Line
11950 5950 12200 5950
Wire Wire Line
11300 6050 12200 6050
Wire Wire Line
11300 5850 12200 5850
Entry Wire Line
9600 5550 9700 5650
Wire Wire Line
9600 5550 9400 5550
Entry Wire Line
14550 6150 14650 6250
Entry Wire Line
14550 5750 14650 5850
Entry Wire Line
14550 5650 14650 5750
Entry Wire Line
14550 5450 14650 5550
Entry Wire Line
14550 5350 14650 5450
Wire Wire Line
13800 6150 14550 6150
Wire Wire Line
13800 5750 14550 5750
Wire Wire Line
13800 5650 14550 5650
Wire Wire Line
13800 5450 14550 5450
Wire Wire Line
13800 5350 14550 5350
Entry Wire Line
9600 6550 9700 6650
Entry Wire Line
9600 6650 9700 6750
Wire Wire Line
9600 6550 9400 6550
Wire Wire Line
9600 6650 9400 6650
Entry Wire Line
9600 6850 9700 6950
Entry Wire Line
9600 6950 9700 7050
Entry Wire Line
9600 6750 9700 6850
Wire Wire Line
9600 6750 9400 6750
Wire Wire Line
9600 6850 9400 6850
Wire Wire Line
9600 6950 9400 6950
Entry Wire Line
9600 7150 9700 7250
Entry Wire Line
9600 7050 9700 7150
Wire Wire Line
9600 7050 9400 7050
Wire Wire Line
9600 7150 9400 7150
Entry Wire Line
7400 6950 7300 6850
Entry Wire Line
7300 6750 7400 6850
Entry Wire Line
7300 6650 7400 6750
Entry Wire Line
7300 6550 7400 6650
Wire Wire Line
7400 6550 7600 6550
Wire Wire Line
7400 6650 7600 6650
Wire Wire Line
7400 6750 7600 6750
Wire Wire Line
7400 6850 7600 6850
Wire Wire Line
7400 6950 7600 6950
Entry Wire Line
7400 7050 7300 6950
Wire Wire Line
7400 7050 7600 7050
Entry Wire Line
7400 7150 7300 7050
Wire Wire Line
7400 7150 7600 7150
Wire Bus Line
11200 7550 9700 7550
Wire Bus Line
11200 7550 14650 7550
Connection ~ 11200 7550
Text GLabel 9650 4750 2 50 Input ~ 0
GND
Wire Wire Line
9400 4750 9650 4750
Text GLabel 9650 4850 2 50 Input ~ 0
RWR
Wire Wire Line
9400 4850 9650 4850
Text GLabel 14050 5550 2 50 Input ~ 0
RWR
Wire Wire Line
13800 5550 14050 5550
Entry Wire Line
14550 5150 14650 5250
Wire Wire Line
13800 5150 14550 5150
Entry Wire Line
14550 4850 14650 4950
Wire Wire Line
13800 4850 14550 4850
Entry Wire Line
14550 4750 14650 4850
Wire Wire Line
13800 4750 14550 4750
Wire Wire Line
11300 5750 12200 5750
Entry Wire Line
11200 5350 11300 5450
Wire Wire Line
11300 5450 12200 5450
Wire Bus Line
9700 5350 11200 5350
Wire Bus Line
11200 5350 11200 4100
Wire Bus Line
11200 4100 14650 4100
Wire Wire Line
3250 5250 3250 5200
Wire Wire Line
4100 5550 4250 5550
Wire Wire Line
4100 5650 4250 5650
Wire Wire Line
4100 5750 4250 5750
Wire Wire Line
4100 5850 4250 5850
Wire Wire Line
4100 5950 4250 5950
Wire Wire Line
4100 6050 4250 6050
Wire Wire Line
4100 6150 4250 6150
Wire Wire Line
4100 6250 4250 6250
Wire Wire Line
2700 7200 2100 7200
Wire Wire Line
2100 7200 2100 3700
Wire Wire Line
7600 4950 7450 4950
Wire Wire Line
8050 4200 9900 4200
Wire Wire Line
9900 4200 9900 4950
Wire Wire Line
9900 4950 9400 4950
Wire Wire Line
12200 5150 11950 5150
Wire Wire Line
2700 7500 1950 7500
Wire Wire Line
1950 7500 1950 4850
Wire Wire Line
2100 3700 2750 3700
Text Label 2500 5500 0 50 ~ 0
A0
Text Label 2500 5600 0 50 ~ 0
A1
Text Label 2500 5700 0 50 ~ 0
A2
Text Label 2500 5800 0 50 ~ 0
A3
Text Label 2500 5900 0 50 ~ 0
A4
Text Label 2500 6000 0 50 ~ 0
A5
Text Label 2500 6100 0 50 ~ 0
A6
Text Label 2500 6200 0 50 ~ 0
A7
Text Label 2500 6300 0 50 ~ 0
A8
Text Label 2500 6400 0 50 ~ 0
A9
Text Label 2500 6500 0 50 ~ 0
A10
Text Label 4150 5550 0 50 ~ 0
D0
Text Label 4150 5650 0 50 ~ 0
D1
Text Label 4150 5750 0 50 ~ 0
D2
Text Label 4150 5850 0 50 ~ 0
D3
Text Label 4150 5950 0 50 ~ 0
D4
Text Label 4150 6050 0 50 ~ 0
D5
Text Label 4150 6150 0 50 ~ 0
D6
Text Label 4150 6250 0 50 ~ 0
D7
Text Label 7400 6550 0 50 ~ 0
D1
Text Label 7400 6650 0 50 ~ 0
D2
Text Label 7400 6750 0 50 ~ 0
D3
Text Label 7400 6850 0 50 ~ 0
D4
Text Label 7400 6950 0 50 ~ 0
D5
Text Label 7400 7050 0 50 ~ 0
D6
Text Label 7400 7150 0 50 ~ 0
D7
Text Label 7400 5250 0 50 ~ 0
A0
Text Label 7400 5350 0 50 ~ 0
A1
Text Label 7400 5450 0 50 ~ 0
A2
Text Label 7400 5550 0 50 ~ 0
A3
Text Label 7400 5650 0 50 ~ 0
A4
Text Label 7400 5750 0 50 ~ 0
A5
Text Label 7400 5850 0 50 ~ 0
A6
Text Label 7400 5950 0 50 ~ 0
A7
Text Label 7400 6050 0 50 ~ 0
A8
Text Label 7400 6150 0 50 ~ 0
A9
Text Label 9450 5250 0 50 ~ 0
AR0
Text Label 9450 5350 0 50 ~ 0
AR1
Text Label 9450 5450 0 50 ~ 0
AR2
Text Label 9450 5550 0 50 ~ 0
AR3
Text Label 14350 5150 0 50 ~ 0
AR0
Text Label 14350 4850 0 50 ~ 0
AR1
Text Label 14350 4750 0 50 ~ 0
AR2
Text Label 11400 5450 0 50 ~ 0
AR3
Text Label 9400 6550 0 50 ~ 0
DR1
Text Label 9400 6650 0 50 ~ 0
DR2
Text Label 9400 6750 0 50 ~ 0
DR3
Text Label 9400 6850 0 50 ~ 0
DR4
Text Label 9400 6950 0 50 ~ 0
DR5
Text Label 9400 7050 0 50 ~ 0
DR6
Text Label 9400 7150 0 50 ~ 0
DR7
Text Label 11350 5850 0 50 ~ 0
DR0
Text Label 11350 6050 0 50 ~ 0
DR1
Text Label 11350 5750 0 50 ~ 0
DR2
Text Label 14350 6150 0 50 ~ 0
DR3
Text Label 14350 5750 0 50 ~ 0
DR4
Text Label 14350 5650 0 50 ~ 0
DR5
Text Label 14350 5450 0 50 ~ 0
DR6
Text Label 14350 5350 0 50 ~ 0
DR7
$Comp
L Connector_Generic:Conn_02x02_Odd_Even J2
U 1 1 615F9C72
P 2950 3700
F 0 "J2" H 3000 3917 50 0000 C CNN
F 1 "Conn_02x02_Odd_Even" H 3000 3826 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" H 2950 3700 50 0001 C CNN
F 3 "~" H 2950 3700 50 0001 C CNN
1 2950 3700
1 0 0 -1
$EndComp
Wire Wire Line
1850 3800 2750 3800
Wire Wire Line
1850 7400 2700 7400
Wire Wire Line
3250 3700 3250 3800
Wire Wire Line
1950 4850 7600 4850
Wire Wire Line
3250 3800 7200 3800
Wire Wire Line
7200 3800 7200 4750
Connection ~ 3250 3800
Wire Wire Line
7200 4750 7600 4750
$Comp
L Connector_Generic:Conn_02x04_Odd_Even J5
U 1 1 61627517
P 10300 5750
F 0 "J5" H 10350 6067 50 0000 C CNN
F 1 "Conn_02x02_Odd_Even" H 10350 5976 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" H 10300 5750 50 0001 C CNN
F 3 "~" H 10300 5750 50 0001 C CNN
1 10300 5750
1 0 0 -1
$EndComp
Wire Wire Line
9650 5650 9650 5700
Wire Wire Line
9650 5700 9750 5700
Wire Wire Line
9750 5700 9750 5650
Wire Wire Line
9750 5650 10100 5650
Wire Wire Line
9400 5650 9650 5650
Wire Wire Line
9400 5750 10100 5750
Wire Wire Line
10600 5650 10800 5650
Wire Wire Line
10800 5650 10800 5550
Wire Wire Line
10800 5550 12200 5550
Wire Wire Line
10600 5750 10650 5750
Wire Wire Line
10850 5750 10850 5600
Wire Wire Line
10850 5600 12000 5600
Wire Wire Line
12000 5600 12000 5650
Wire Wire Line
12000 5650 12200 5650
Wire Wire Line
9400 5850 10100 5850
Wire Wire Line
9400 5950 10100 5950
Wire Wire Line
10600 5850 10700 5850
Wire Wire Line
10900 5850 10900 5250
Wire Wire Line
10900 5250 12200 5250
Wire Wire Line
10600 5950 10750 5950
Wire Wire Line
11000 5950 11000 5300
Wire Wire Line
11000 5300 12050 5300
Wire Wire Line
12050 5300 12050 5350
Wire Wire Line
12050 5350 12200 5350
$Comp
L Connector_Generic:Conn_02x07_Odd_Even J6
U 1 1 6166C407
P 12450 2400
F 0 "J6" H 12500 2917 50 0000 C CNN
F 1 "Conn_02x07_Odd_Even" H 12500 2826 50 0000 C CNN
F 2 "Connector_PinSocket_2.54mm:PinSocket_2x07_P2.54mm_Vertical" H 12450 2400 50 0001 C CNN
F 3 "~" H 12450 2400 50 0001 C CNN
1 12450 2400
1 0 0 -1
$EndComp
Connection ~ 10600 5650
Connection ~ 10650 5750
Wire Wire Line
10650 5750 10850 5750
Connection ~ 10700 5850
Wire Wire Line
10700 5850 10900 5850
Connection ~ 10750 5950
Wire Wire Line
10750 5950 11000 5950
Wire Wire Line
12250 2100 10600 2100
Wire Wire Line
10600 2100 10600 5650
Wire Wire Line
12250 2200 10650 2200
Wire Wire Line
10650 2200 10650 5750
Wire Wire Line
12250 2300 10700 2300
Wire Wire Line
10700 2300 10700 5850
Wire Wire Line
12250 2400 10750 2400
Wire Wire Line
10750 2400 10750 5950
Wire Wire Line
12000 5050 12000 2500
Wire Wire Line
12000 2500 12250 2500
Wire Wire Line
12000 5050 12200 5050
Wire Wire Line
11950 5150 11950 2600
Wire Wire Line
11950 2600 12250 2600
Wire Wire Line
12200 4850 12100 4850
Wire Wire Line
12100 4850 12100 2850
Wire Wire Line
12100 2850 12850 2850
Wire Wire Line
12850 2850 12850 2700
Wire Wire Line
12850 2700 12750 2700
Wire Wire Line
12200 4950 12050 4950
Wire Wire Line
12050 4950 12050 2700
Wire Wire Line
12050 2700 12250 2700
Wire Wire Line
13800 6050 16050 6050
Wire Wire Line
16050 6050 16050 2100
Wire Wire Line
16050 2100 12750 2100
Wire Wire Line
13800 5950 15950 5950
Wire Wire Line
15950 5950 15950 2200
Wire Wire Line
15950 2200 12750 2200
Wire Wire Line
14550 5850 14550 5900
Wire Wire Line
14800 5900 14800 5850
Wire Wire Line
14800 5850 15850 5850
Wire Wire Line
15850 5850 15850 2300
Wire Wire Line
15850 2300 12750 2300
Wire Wire Line
13800 5850 14550 5850
Wire Wire Line
14550 5900 14800 5900
Wire Wire Line
13800 5050 14550 5050
Wire Wire Line
14550 5050 14550 5100
Wire Wire Line
14550 5100 15750 5100
Wire Wire Line
15750 2400 12750 2400
Wire Wire Line
15750 2400 15750 5100
Wire Wire Line
13800 4950 14550 4950
Wire Wire Line
14550 4950 14550 5000
Wire Wire Line
14550 5000 15650 5000
Wire Wire Line
15650 2500 12750 2500
Wire Wire Line
15650 2500 15650 5000
$Comp
L Connector_Generic:Conn_02x02_Odd_Even J4
U 1 1 61709865
P 8400 2800
F 0 "J4" H 8450 3017 50 0000 C CNN
F 1 "Conn_02x02_Odd_Even" H 8450 2926 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" H 8400 2800 50 0001 C CNN
F 3 "~" H 8400 2800 50 0001 C CNN
1 8400 2800
1 0 0 -1
$EndComp
Wire Wire Line
7450 4950 7450 2800
Wire Wire Line
7450 2800 8200 2800
Wire Wire Line
8050 2900 8200 2900
Wire Wire Line
8050 2900 8050 4200
Wire Wire Line
8700 2800 11600 2800
Wire Wire Line
11600 2800 11600 5050
Wire Wire Line
11600 5050 12000 5050
Connection ~ 12000 5050
Wire Wire Line
8700 2900 11500 2900
Wire Wire Line
11500 2900 11500 5150
Wire Wire Line
11500 5150 11950 5150
Connection ~ 11950 5150
$Comp
L Device:C C1
U 1 1 6174221E
P 5250 8150
F 0 "C1" H 5365 8196 50 0000 L CNN
F 1 "C" H 5365 8105 50 0000 L CNN
F 2 "" H 5288 8000 50 0001 C CNN
F 3 "~" H 5250 8150 50 0001 C CNN
1 5250 8150
1 0 0 -1
$EndComp
Text GLabel 5250 8400 3 50 Input ~ 0
GND
Text GLabel 5250 7900 1 50 Input ~ 0
VCC
Wire Wire Line
5250 7900 5250 8000
Wire Wire Line
5250 8300 5250 8400
Wire Bus Line
2400 4950 7300 4950
Wire Wire Line
1850 2200 5000 2200
Wire Wire Line
5000 2200 5000 1850
Wire Wire Line
1850 2200 1850 3800
Connection ~ 1850 3800
Wire Wire Line
1850 3800 1850 7400
Wire Wire Line
2100 3700 2100 2300
Wire Wire Line
2100 2300 5100 2300
Wire Wire Line
5100 2300 5100 1850
Connection ~ 2100 3700
Wire Wire Line
8050 2900 5300 2900
Wire Wire Line
5300 2900 5300 1850
Connection ~ 8050 2900
Wire Wire Line
7450 2800 5200 2800
Wire Wire Line
5200 2800 5200 1850
Connection ~ 7450 2800
Text GLabel 7550 5050 0 50 Input ~ 0
GND
Wire Wire Line
7550 5050 7600 5050
Text GLabel 9450 5050 2 50 Input ~ 0
GND
Wire Wire Line
9450 5050 9400 5050
Text GLabel 9450 6050 2 50 Input ~ 0
GND
Wire Wire Line
9450 6050 9400 6050
Text GLabel 9450 6150 2 50 Input ~ 0
GND
Wire Wire Line
9450 6150 9400 6150
$Comp
L Connector_Generic:Conn_01x04 J3
U 1 1 618300D7
P 5100 1650
F 0 "J3" V 5064 1362 50 0000 R CNN
F 1 "Conn_01x04" V 4973 1362 50 0000 R CNN
F 2 "" H 5100 1650 50 0001 C CNN
F 3 "~" H 5100 1650 50 0001 C CNN
1 5100 1650
0 -1 -1 0
$EndComp
Wire Wire Line
9450 6250 9400 6250
Text GLabel 9450 6250 2 50 Input ~ 0
GND
Text Label 9400 6450 0 50 ~ 0
DR0
Text Label 7400 6250 0 50 ~ 0
A10
Text Label 7400 6450 0 50 ~ 0
D0
Wire Bus Line
4350 6350 7300 6350
Wire Wire Line
7400 6450 7600 6450
Entry Wire Line
7300 6350 7400 6450
Entry Wire Line
7300 6450 7400 6550
Wire Wire Line
9600 6450 9400 6450
Entry Wire Line
9600 6450 9700 6550
Wire Wire Line
7400 6250 7600 6250
Entry Wire Line
7400 6250 7300 6150
$Comp
L Memory_RAM:IDT7132 U1
U 1 1 61296796
P 8500 5950
F 0 "U1" H 9050 7400 50 0000 C CNN
F 1 "IDT7132" H 8950 4500 50 0000 C CNN
F 2 "Package_DIP:DIP-48_W15.24mm_LongPads" H 8500 5950 50 0001 C CNN
F 3 "" H 8500 5950 50 0001 C CNN
1 8500 5950
1 0 0 -1
$EndComp
NoConn ~ 12750 2600
NoConn ~ 4100 6450
NoConn ~ 4100 6550
NoConn ~ 4100 6650
NoConn ~ 4100 6750
NoConn ~ 4100 6950
NoConn ~ 4100 7050
NoConn ~ 4100 7150
NoConn ~ 4100 7350
NoConn ~ 4100 7450
NoConn ~ 4100 7550
NoConn ~ 4100 7650
NoConn ~ 4100 7850
NoConn ~ 4100 8050
NoConn ~ 2700 8100
NoConn ~ 2700 7900
NoConn ~ 2700 7800
NoConn ~ 2700 7700
NoConn ~ 2700 6600
NoConn ~ 2700 6700
NoConn ~ 2700 6800
NoConn ~ 2700 6900
NoConn ~ 2700 7000
NoConn ~ 2700 7300
NoConn ~ 3350 5250
NoConn ~ 3450 5250
NoConn ~ 3550 5250
NoConn ~ 12200 6150
NoConn ~ 12200 6250
NoConn ~ 12200 6350
NoConn ~ 13800 6250
NoConn ~ 13800 6350
NoConn ~ 13800 6450
NoConn ~ 12200 4650
NoConn ~ 12200 4750
Wire Bus Line
9700 5350 9700 5650
Wire Bus Line
11200 5650 11200 7550
Wire Bus Line
14650 4100 14650 5250
Wire Bus Line
4350 5650 4350 6350
Wire Bus Line
14650 5450 14650 7550
Wire Bus Line
7300 6350 7300 7050
Wire Bus Line
9700 6550 9700 7550
Wire Bus Line
7300 4950 7300 6150
Wire Bus Line
2400 4950 2400 6400
$EndSCHEMATC

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
(fp_lib_table
(lib (name kicad-library)(type KiCad)(uri /home/equant/projects/apple_ii/other_peoples_stuff/rharke/kicad-library/kicad-library.pretty)(options "")(descr ""))
(lib (name manual)(type KiCad)(uri ${KIPRJMOD}/manual.pretty)(options "")(descr ""))
)

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Glue,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,User*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,683 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Copper,L2,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 #@! TA.AperFunction,ComponentPad*
%ADD10C,1.560000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD11R,1.560000X1.560000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD12O,1.600000X2.400000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD13R,1.600000X2.400000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD14O,1.700000X1.700000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD15R,1.700000X1.700000*%
G04 #@! TD*
G04 #@! TA.AperFunction,SMDPad,CuDef*
%ADD16R,1.524000X6.350000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD17C,2.000000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ViaPad*
%ADD18C,0.800000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD19C,0.400000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD20C,0.250000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD21C,0.249936*%
G04 #@! TD*
G04 APERTURE END LIST*
D10*
X234160000Y-60400000D03*
X231620000Y-60400000D03*
X229080000Y-60400000D03*
X226540000Y-60400000D03*
X224000000Y-60400000D03*
X221460000Y-60400000D03*
X218920000Y-60400000D03*
X216380000Y-60400000D03*
X213840000Y-60400000D03*
X211300000Y-60400000D03*
X208760000Y-60400000D03*
X206220000Y-60400000D03*
X203680000Y-60400000D03*
X201140000Y-60400000D03*
X198600000Y-60400000D03*
X196060000Y-60400000D03*
X193520000Y-60400000D03*
X190980000Y-60400000D03*
X188440000Y-60400000D03*
X231620000Y-85800000D03*
X229080000Y-85800000D03*
X226540000Y-85800000D03*
X224000000Y-85800000D03*
X221460000Y-85800000D03*
X218920000Y-85800000D03*
X216380000Y-85800000D03*
X213840000Y-85800000D03*
X211300000Y-85800000D03*
X208760000Y-85800000D03*
X206220000Y-85800000D03*
X203680000Y-85800000D03*
X201140000Y-85800000D03*
X198600000Y-85800000D03*
X196060000Y-85800000D03*
X193520000Y-85800000D03*
X234160000Y-85800000D03*
X190980000Y-85800000D03*
D11*
X188440000Y-85800000D03*
D12*
X160600000Y-96160000D03*
X219020000Y-111400000D03*
X163140000Y-96160000D03*
X216480000Y-111400000D03*
X165680000Y-96160000D03*
X213940000Y-111400000D03*
X168220000Y-96160000D03*
X211400000Y-111400000D03*
X170760000Y-96160000D03*
X208860000Y-111400000D03*
X173300000Y-96160000D03*
X206320000Y-111400000D03*
X175840000Y-96160000D03*
X203780000Y-111400000D03*
X178380000Y-96160000D03*
X201240000Y-111400000D03*
X180920000Y-96160000D03*
X198700000Y-111400000D03*
X183460000Y-96160000D03*
X196160000Y-111400000D03*
X186000000Y-96160000D03*
X193620000Y-111400000D03*
X188540000Y-96160000D03*
X191080000Y-111400000D03*
X191080000Y-96160000D03*
X188540000Y-111400000D03*
X193620000Y-96160000D03*
X186000000Y-111400000D03*
X196160000Y-96160000D03*
X183460000Y-111400000D03*
X198700000Y-96160000D03*
X180920000Y-111400000D03*
X201240000Y-96160000D03*
X178380000Y-111400000D03*
X203780000Y-96160000D03*
X175840000Y-111400000D03*
X206320000Y-96160000D03*
X173300000Y-111400000D03*
X208860000Y-96160000D03*
X170760000Y-111400000D03*
X211400000Y-96160000D03*
X168220000Y-111400000D03*
X213940000Y-96160000D03*
X165680000Y-111400000D03*
X216480000Y-96160000D03*
X163140000Y-111400000D03*
X219020000Y-96160000D03*
D13*
X160600000Y-111400000D03*
D14*
X149360000Y-75140000D03*
X151900000Y-75140000D03*
X149360000Y-72600000D03*
X151900000Y-72600000D03*
X149360000Y-70060000D03*
X151900000Y-70060000D03*
X149360000Y-67520000D03*
X151900000Y-67520000D03*
X149360000Y-64980000D03*
X151900000Y-64980000D03*
X149360000Y-62440000D03*
X151900000Y-62440000D03*
X149360000Y-59900000D03*
D15*
X151900000Y-59900000D03*
D14*
X138020000Y-59960000D03*
X138020000Y-62500000D03*
X135480000Y-59960000D03*
X135480000Y-62500000D03*
X132940000Y-59960000D03*
X132940000Y-62500000D03*
X130400000Y-59960000D03*
D15*
X130400000Y-62500000D03*
D14*
X117540000Y-62440000D03*
X115000000Y-62440000D03*
X117540000Y-59900000D03*
D15*
X115000000Y-59900000D03*
D14*
X104020000Y-59700000D03*
X101480000Y-59700000D03*
X98940000Y-59700000D03*
D15*
X96400000Y-59700000D03*
D14*
X87840000Y-62440000D03*
X85300000Y-62440000D03*
X87840000Y-59900000D03*
D15*
X85300000Y-59900000D03*
D16*
X231230000Y-128500000D03*
X228690000Y-128500000D03*
X226150000Y-128500000D03*
X223610000Y-128500000D03*
X221070000Y-128500000D03*
X218530000Y-128500000D03*
X215990000Y-128500000D03*
X213450000Y-128500000D03*
X210910000Y-128500000D03*
X208370000Y-128500000D03*
X205830000Y-128500000D03*
X203290000Y-128500000D03*
X200750000Y-128500000D03*
X198210000Y-128500000D03*
X195670000Y-128500000D03*
X193130000Y-128500000D03*
X190590000Y-128500000D03*
X188050000Y-128500000D03*
X185510000Y-128500000D03*
X182970000Y-128500000D03*
X180430000Y-128500000D03*
X177890000Y-128500000D03*
X175350000Y-128500000D03*
X172810000Y-128500000D03*
X170270000Y-128500000D03*
D17*
X237000000Y-114500000D03*
X227000000Y-114500000D03*
D18*
X149600000Y-89800000D03*
X165700000Y-72700000D03*
X171500000Y-67000000D03*
X193200000Y-77000000D03*
X191200000Y-73500000D03*
X198600000Y-65300000D03*
X179200000Y-77300000D03*
X166900000Y-107600000D03*
X146000000Y-73900000D03*
X162700000Y-85300000D03*
X139215001Y-68884999D03*
X128884999Y-68884999D03*
X212200000Y-81300000D03*
X161700000Y-68300000D03*
X190000000Y-71300000D03*
X196800000Y-56900000D03*
X200000000Y-56900000D03*
D19*
X198700000Y-111400000D02*
X191300000Y-118800000D01*
X172810000Y-124925000D02*
X172810000Y-128500000D01*
X178935000Y-118800000D02*
X172810000Y-124925000D01*
X191300000Y-118800000D02*
X178935000Y-118800000D01*
X180874990Y-119400010D02*
X175350000Y-124925000D01*
X193239990Y-119400010D02*
X180874990Y-119400010D01*
X175350000Y-124925000D02*
X175350000Y-128500000D01*
X201240000Y-111400000D02*
X193239990Y-119400010D01*
X177890000Y-124925000D02*
X177890000Y-128500000D01*
X195179980Y-120000020D02*
X182814980Y-120000020D01*
X182814980Y-120000020D02*
X177890000Y-124925000D01*
X203780000Y-111400000D02*
X195179980Y-120000020D01*
X184754970Y-120600030D02*
X180430000Y-124925000D01*
X180430000Y-124925000D02*
X180430000Y-128500000D01*
X197119970Y-120600030D02*
X184754970Y-120600030D01*
X206320000Y-111400000D02*
X197119970Y-120600030D01*
X208860000Y-111400000D02*
X208600000Y-111400000D01*
X208600000Y-111400000D02*
X198799960Y-121200040D01*
X182970000Y-124925000D02*
X182970000Y-128500000D01*
X186694960Y-121200040D02*
X182970000Y-124925000D01*
X198799960Y-121200040D02*
X186694960Y-121200040D01*
X185510000Y-124925000D02*
X185510000Y-128500000D01*
X188634950Y-121800050D02*
X185510000Y-124925000D01*
X200999950Y-121800050D02*
X188634950Y-121800050D01*
X211400000Y-111400000D02*
X200999950Y-121800050D01*
X213940000Y-111400000D02*
X213800000Y-111400000D01*
X213800000Y-111400000D02*
X202799940Y-122400060D01*
X188050000Y-124925000D02*
X188050000Y-128500000D01*
X190574940Y-122400060D02*
X188050000Y-124925000D01*
X202799940Y-122400060D02*
X190574940Y-122400060D01*
X216480000Y-111400000D02*
X216400000Y-111400000D01*
X216400000Y-111400000D02*
X204799930Y-123000070D01*
X192514930Y-123000070D02*
X190590000Y-124925000D01*
X190590000Y-124925000D02*
X190590000Y-128500000D01*
X204799930Y-123000070D02*
X192514930Y-123000070D01*
X233900000Y-111400000D02*
X237000000Y-114500000D01*
X198700000Y-96160000D02*
X198700000Y-101400000D01*
X203700000Y-106400000D02*
X216800000Y-106400000D01*
X219020000Y-108620000D02*
X219020000Y-111400000D01*
X216800000Y-106400000D02*
X219020000Y-108620000D01*
X221460000Y-85800000D02*
X221460000Y-111360000D01*
X221460000Y-111360000D02*
X221500000Y-111400000D01*
X219020000Y-111400000D02*
X221500000Y-111400000D01*
X221500000Y-111400000D02*
X233900000Y-111400000D01*
X196160000Y-96160000D02*
X198700000Y-96160000D01*
X163140000Y-96160000D02*
X163140000Y-98840000D01*
X163140000Y-98840000D02*
X168600000Y-104300000D01*
X201600000Y-104300000D02*
X203700000Y-106400000D01*
X170760000Y-111400000D02*
X170760000Y-104460000D01*
X168600000Y-104300000D02*
X170600000Y-104300000D01*
X170760000Y-104460000D02*
X170600000Y-104300000D01*
X170760000Y-96160000D02*
X173300000Y-96160000D01*
X173300000Y-96160000D02*
X173300000Y-104200000D01*
X173300000Y-104200000D02*
X173400000Y-104300000D01*
X170600000Y-104300000D02*
X173400000Y-104300000D01*
X231230000Y-120270000D02*
X231230000Y-128500000D01*
X237000000Y-114500000D02*
X231230000Y-120270000D01*
D20*
X188440000Y-60400000D02*
X188440000Y-56960000D01*
X188440000Y-56960000D02*
X190200000Y-55200000D01*
X190200000Y-55200000D02*
X202500000Y-55200000D01*
X203680000Y-56380000D02*
X203680000Y-60400000D01*
X202500000Y-55200000D02*
X203680000Y-56380000D01*
X203680000Y-56380000D02*
X203680000Y-56320000D01*
X203680000Y-56320000D02*
X204300000Y-55700000D01*
X204300000Y-55700000D02*
X239300000Y-55700000D01*
X239300000Y-55700000D02*
X240300000Y-56700000D01*
X240300000Y-56700000D02*
X240300000Y-81500000D01*
X240300000Y-81500000D02*
X238900000Y-82900000D01*
X224360000Y-82900000D02*
X221460000Y-85800000D01*
X238900000Y-82900000D02*
X224360000Y-82900000D01*
D19*
X199000000Y-104300000D02*
X200300000Y-103000000D01*
X195400000Y-104300000D02*
X199000000Y-104300000D01*
X200300000Y-103000000D02*
X203700000Y-106400000D01*
X198700000Y-101400000D02*
X200300000Y-103000000D01*
X173400000Y-104300000D02*
X195400000Y-104300000D01*
D21*
X104020000Y-59700000D02*
X107020000Y-62700000D01*
D19*
X114740000Y-62700000D02*
X115000000Y-62440000D01*
D21*
X107020000Y-62700000D02*
X114740000Y-62700000D01*
D20*
X115000000Y-62440000D02*
X134060000Y-81500000D01*
X134060000Y-81500000D02*
X141100000Y-81500000D01*
X141100000Y-81500000D02*
X149400000Y-89800000D01*
X149400000Y-89800000D02*
X149600000Y-89800000D01*
X165680000Y-96160000D02*
X165680000Y-72720000D01*
X165680000Y-72720000D02*
X165700000Y-72700000D01*
X171500000Y-67000000D02*
X209200000Y-67000000D01*
X211300000Y-64900000D02*
X211300000Y-60400000D01*
X209200000Y-67000000D02*
X211300000Y-64900000D01*
X175840000Y-96160000D02*
X178680000Y-99000000D01*
X199705001Y-86330401D02*
X199705001Y-83505001D01*
X195034990Y-91000412D02*
X199705001Y-86330401D01*
X195034990Y-96736014D02*
X195034990Y-91000412D01*
X178680000Y-99000000D02*
X192771004Y-99000000D01*
X192771004Y-99000000D02*
X195034990Y-96736014D01*
X199705001Y-83505001D02*
X193200000Y-77000000D01*
X178380000Y-77046998D02*
X181926998Y-73500000D01*
X178380000Y-96160000D02*
X178380000Y-77046998D01*
X181926998Y-73500000D02*
X191200000Y-73500000D01*
X198600000Y-65300000D02*
X195900000Y-65300000D01*
X193520000Y-62920000D02*
X193520000Y-60400000D01*
X195900000Y-65300000D02*
X193520000Y-62920000D01*
X179200000Y-77300000D02*
X179200000Y-86900000D01*
X180920000Y-88620000D02*
X180920000Y-96160000D01*
X179200000Y-86900000D02*
X180920000Y-88620000D01*
X217894990Y-86825010D02*
X217894990Y-98105010D01*
X218920000Y-85800000D02*
X217894990Y-86825010D01*
X217894990Y-98105010D02*
X214700000Y-101300000D01*
X206380000Y-101300000D02*
X201240000Y-96160000D01*
X214700000Y-101300000D02*
X206380000Y-101300000D01*
X215065010Y-95671400D02*
X215065010Y-97025994D01*
X215065010Y-97025994D02*
X212391004Y-99700000D01*
X215395010Y-95341400D02*
X215065010Y-95671400D01*
X216380000Y-85800000D02*
X215395010Y-86784990D01*
X215395010Y-86784990D02*
X215395010Y-95341400D01*
X209860000Y-99700000D02*
X206320000Y-96160000D01*
X212391004Y-99700000D02*
X209860000Y-99700000D01*
X212405001Y-95154999D02*
X211400000Y-96160000D01*
X212405001Y-83694999D02*
X212405001Y-95154999D01*
X217159999Y-78940001D02*
X212405001Y-83694999D01*
X217159999Y-61179999D02*
X217159999Y-78940001D01*
X216380000Y-60400000D02*
X217159999Y-61179999D01*
X213840000Y-60400000D02*
X216340000Y-57900000D01*
X216340000Y-57900000D02*
X235600000Y-57900000D01*
X235600000Y-57900000D02*
X237700000Y-60000000D01*
X237700000Y-60000000D02*
X237700000Y-74600000D01*
X237700000Y-74600000D02*
X234600000Y-77700000D01*
X214945001Y-95154999D02*
X213940000Y-96160000D01*
X214945001Y-84963187D02*
X214945001Y-95154999D01*
X222208188Y-77700000D02*
X214945001Y-84963187D01*
X234600000Y-77700000D02*
X222208188Y-77700000D01*
X208760000Y-60400000D02*
X211960000Y-57200000D01*
X237500000Y-57200000D02*
X238600000Y-58300000D01*
X211960000Y-57200000D02*
X237500000Y-57200000D01*
X238600000Y-58300000D02*
X238600000Y-78600000D01*
X216480000Y-87335402D02*
X216480000Y-96160000D01*
X217485001Y-86330401D02*
X216480000Y-87335402D01*
X217485001Y-83059597D02*
X217485001Y-86330401D01*
X221944598Y-78600000D02*
X217485001Y-83059597D01*
X238600000Y-78600000D02*
X221944598Y-78600000D01*
X224000000Y-81300000D02*
X220025001Y-85274999D01*
X237800000Y-81300000D02*
X224000000Y-81300000D01*
X220025001Y-85274999D02*
X220025001Y-95154999D01*
X206220000Y-56980000D02*
X207000000Y-56200000D01*
X206220000Y-60400000D02*
X206220000Y-56980000D01*
X207000000Y-56200000D02*
X237800000Y-56200000D01*
X239500000Y-57900000D02*
X239500000Y-79600000D01*
X237800000Y-56200000D02*
X239500000Y-57900000D01*
X220025001Y-95154999D02*
X219020000Y-96160000D01*
X239500000Y-79600000D02*
X237800000Y-81300000D01*
D21*
X94910001Y-61189999D02*
X96400000Y-59700000D01*
X86550001Y-61189999D02*
X94910001Y-61189999D01*
X85300000Y-62440000D02*
X86550001Y-61189999D01*
D20*
X113559993Y-56174991D02*
X99925009Y-56174991D01*
X116175001Y-58789999D02*
X113559993Y-56174991D01*
X164647200Y-118000000D02*
X150724999Y-104077799D01*
X206345924Y-123525080D02*
X217605010Y-112265994D01*
X193130000Y-128500000D02*
X193130000Y-124070000D01*
X116175001Y-60464001D02*
X116175001Y-58789999D01*
X149924001Y-71235001D02*
X148795999Y-71235001D01*
X138825997Y-61264999D02*
X116975999Y-61264999D01*
X216900000Y-108100000D02*
X197400000Y-108100000D01*
X193674920Y-123525080D02*
X206345924Y-123525080D01*
X150724999Y-72035999D02*
X149924001Y-71235001D01*
X116975999Y-61264999D02*
X116175001Y-60464001D01*
X197400000Y-108100000D02*
X195034990Y-110465010D01*
X217605010Y-112265994D02*
X217605010Y-108805010D01*
X195034990Y-110465010D02*
X195034990Y-112265994D01*
X195034990Y-112265994D02*
X189300984Y-118000000D01*
X189300984Y-118000000D02*
X164647200Y-118000000D01*
X150724999Y-104077799D02*
X150724999Y-72035999D01*
X99925009Y-56174991D02*
X96400000Y-59700000D01*
X217605010Y-108805010D02*
X216900000Y-108100000D01*
X193130000Y-124070000D02*
X193674920Y-123525080D01*
X148795999Y-71235001D02*
X138825997Y-61264999D01*
X163140000Y-111400000D02*
X163140000Y-111360000D01*
X163140000Y-111360000D02*
X166900000Y-107600000D01*
D21*
X101480000Y-59700000D02*
X101480000Y-57520000D01*
X101480000Y-57520000D02*
X102300000Y-56700000D01*
X111800000Y-56700000D02*
X115000000Y-59900000D01*
X102300000Y-56700000D02*
X111800000Y-56700000D01*
D20*
X117540000Y-62440000D02*
X126200000Y-71100000D01*
X126200000Y-71100000D02*
X127200000Y-72100000D01*
X127200000Y-72100000D02*
X129000000Y-73900000D01*
X129000000Y-73900000D02*
X146000000Y-73900000D01*
X151900000Y-72600000D02*
X162700000Y-83400000D01*
X162700000Y-83400000D02*
X162700000Y-85300000D01*
X139215001Y-68884999D02*
X128884999Y-68884999D01*
X206220000Y-85800000D02*
X190920000Y-70500000D01*
X154880000Y-70500000D02*
X151900000Y-67520000D01*
X190920000Y-70500000D02*
X154880000Y-70500000D01*
X150724999Y-66344999D02*
X151900000Y-67520000D01*
X142600998Y-59960000D02*
X148985997Y-66344999D01*
X148985997Y-66344999D02*
X150724999Y-66344999D01*
X138020000Y-59960000D02*
X142600998Y-59960000D01*
X135480000Y-59960000D02*
X135480000Y-58720000D01*
X135480000Y-58720000D02*
X136700000Y-57500000D01*
X150724999Y-63804999D02*
X151900000Y-64980000D01*
X148985997Y-63804999D02*
X150724999Y-63804999D01*
X142680998Y-57500000D02*
X148985997Y-63804999D01*
X136700000Y-57500000D02*
X142680998Y-57500000D01*
X207436410Y-81300000D02*
X194236410Y-68100000D01*
X212200000Y-81300000D02*
X207436410Y-81300000D01*
X194236410Y-68100000D02*
X161900000Y-68100000D01*
X161900000Y-68100000D02*
X161700000Y-68300000D01*
X132940000Y-59960000D02*
X132940000Y-57760000D01*
X132940000Y-57760000D02*
X134200000Y-56500000D01*
X150724999Y-61264999D02*
X151900000Y-62440000D01*
X148985997Y-61264999D02*
X150724999Y-61264999D01*
X144220998Y-56500000D02*
X148985997Y-61264999D01*
X134200000Y-56500000D02*
X144220998Y-56500000D01*
X211300000Y-85800000D02*
X194800000Y-69300000D01*
X161300000Y-69300000D02*
X151900000Y-59900000D01*
X194800000Y-69300000D02*
X161300000Y-69300000D01*
X130400000Y-59960000D02*
X130400000Y-57200000D01*
X130400000Y-57200000D02*
X132100000Y-55500000D01*
X147500000Y-55500000D02*
X151900000Y-59900000D01*
X132100000Y-55500000D02*
X147500000Y-55500000D01*
X151400998Y-71300000D02*
X190000000Y-71300000D01*
X149360000Y-70060000D02*
X150160998Y-70060000D01*
X150160998Y-70060000D02*
X151400998Y-71300000D01*
X196800000Y-56900000D02*
X200000000Y-56900000D01*
M02*

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,Fab,Bot*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,940 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Soldermask,Bot*
G04 #@! TF.FilePolarity,Negative*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,0.100000*%
%ADD11C,1.662000*%
%ADD12O,1.702000X2.502000*%
%ADD13O,1.802000X1.802000*%
%ADD14C,2.102000*%
G04 APERTURE END LIST*
D10*
G36*
X167857000Y-124690000D02*
G01*
X167857000Y-132310000D01*
X168873000Y-132310000D01*
X168873000Y-124690000D01*
X167857000Y-124690000D01*
G37*
G36*
X233643000Y-124690000D02*
G01*
X232627000Y-124690000D01*
X232627000Y-132310000D01*
X233643000Y-132310000D01*
X233643000Y-124690000D01*
G37*
G36*
X167857000Y-124690000D02*
G01*
X167857000Y-132310000D01*
X168873000Y-132310000D01*
X168873000Y-124690000D01*
X167857000Y-124690000D01*
G37*
G36*
X233643000Y-124690000D02*
G01*
X232627000Y-124690000D01*
X232627000Y-132310000D01*
X233643000Y-132310000D01*
X233643000Y-124690000D01*
G37*
D11*
X234160000Y-60400000D03*
X231620000Y-60400000D03*
X229080000Y-60400000D03*
X226540000Y-60400000D03*
X224000000Y-60400000D03*
X221460000Y-60400000D03*
X218920000Y-60400000D03*
X216380000Y-60400000D03*
X213840000Y-60400000D03*
X211300000Y-60400000D03*
X208760000Y-60400000D03*
X206220000Y-60400000D03*
X203680000Y-60400000D03*
X201140000Y-60400000D03*
X198600000Y-60400000D03*
X196060000Y-60400000D03*
X193520000Y-60400000D03*
X190980000Y-60400000D03*
X188440000Y-60400000D03*
X231620000Y-85800000D03*
X229080000Y-85800000D03*
X226540000Y-85800000D03*
X224000000Y-85800000D03*
X221460000Y-85800000D03*
X218920000Y-85800000D03*
X216380000Y-85800000D03*
X213840000Y-85800000D03*
X211300000Y-85800000D03*
X208760000Y-85800000D03*
X206220000Y-85800000D03*
X203680000Y-85800000D03*
X201140000Y-85800000D03*
X198600000Y-85800000D03*
X196060000Y-85800000D03*
X193520000Y-85800000D03*
X234160000Y-85800000D03*
X190980000Y-85800000D03*
G36*
G01*
X189220000Y-86631000D02*
X187660000Y-86631000D01*
G75*
G02*
X187609000Y-86580000I0J51000D01*
G01*
X187609000Y-85020000D01*
G75*
G02*
X187660000Y-84969000I51000J0D01*
G01*
X189220000Y-84969000D01*
G75*
G02*
X189271000Y-85020000I0J-51000D01*
G01*
X189271000Y-86580000D01*
G75*
G02*
X189220000Y-86631000I-51000J0D01*
G01*
G37*
D12*
X160600000Y-96160000D03*
X219020000Y-111400000D03*
X163140000Y-96160000D03*
X216480000Y-111400000D03*
X165680000Y-96160000D03*
X213940000Y-111400000D03*
X168220000Y-96160000D03*
X211400000Y-111400000D03*
X170760000Y-96160000D03*
X208860000Y-111400000D03*
X173300000Y-96160000D03*
X206320000Y-111400000D03*
X175840000Y-96160000D03*
X203780000Y-111400000D03*
X178380000Y-96160000D03*
X201240000Y-111400000D03*
X180920000Y-96160000D03*
X198700000Y-111400000D03*
X183460000Y-96160000D03*
X196160000Y-111400000D03*
X186000000Y-96160000D03*
X193620000Y-111400000D03*
X188540000Y-96160000D03*
X191080000Y-111400000D03*
X191080000Y-96160000D03*
X188540000Y-111400000D03*
X193620000Y-96160000D03*
X186000000Y-111400000D03*
X196160000Y-96160000D03*
X183460000Y-111400000D03*
X198700000Y-96160000D03*
X180920000Y-111400000D03*
X201240000Y-96160000D03*
X178380000Y-111400000D03*
X203780000Y-96160000D03*
X175840000Y-111400000D03*
X206320000Y-96160000D03*
X173300000Y-111400000D03*
X208860000Y-96160000D03*
X170760000Y-111400000D03*
X211400000Y-96160000D03*
X168220000Y-111400000D03*
X213940000Y-96160000D03*
X165680000Y-111400000D03*
X216480000Y-96160000D03*
X163140000Y-111400000D03*
X219020000Y-96160000D03*
G36*
G01*
X161400000Y-112651000D02*
X159800000Y-112651000D01*
G75*
G02*
X159749000Y-112600000I0J51000D01*
G01*
X159749000Y-110200000D01*
G75*
G02*
X159800000Y-110149000I51000J0D01*
G01*
X161400000Y-110149000D01*
G75*
G02*
X161451000Y-110200000I0J-51000D01*
G01*
X161451000Y-112600000D01*
G75*
G02*
X161400000Y-112651000I-51000J0D01*
G01*
G37*
D13*
X149360000Y-75140000D03*
X151900000Y-75140000D03*
X149360000Y-72600000D03*
X151900000Y-72600000D03*
X149360000Y-70060000D03*
X151900000Y-70060000D03*
X149360000Y-67520000D03*
X151900000Y-67520000D03*
X149360000Y-64980000D03*
X151900000Y-64980000D03*
X149360000Y-62440000D03*
X151900000Y-62440000D03*
X149360000Y-59900000D03*
G36*
G01*
X150999000Y-60750000D02*
X150999000Y-59050000D01*
G75*
G02*
X151050000Y-58999000I51000J0D01*
G01*
X152750000Y-58999000D01*
G75*
G02*
X152801000Y-59050000I0J-51000D01*
G01*
X152801000Y-60750000D01*
G75*
G02*
X152750000Y-60801000I-51000J0D01*
G01*
X151050000Y-60801000D01*
G75*
G02*
X150999000Y-60750000I0J51000D01*
G01*
G37*
X138020000Y-59960000D03*
X138020000Y-62500000D03*
X135480000Y-59960000D03*
X135480000Y-62500000D03*
X132940000Y-59960000D03*
X132940000Y-62500000D03*
X130400000Y-59960000D03*
G36*
G01*
X131250000Y-63401000D02*
X129550000Y-63401000D01*
G75*
G02*
X129499000Y-63350000I0J51000D01*
G01*
X129499000Y-61650000D01*
G75*
G02*
X129550000Y-61599000I51000J0D01*
G01*
X131250000Y-61599000D01*
G75*
G02*
X131301000Y-61650000I0J-51000D01*
G01*
X131301000Y-63350000D01*
G75*
G02*
X131250000Y-63401000I-51000J0D01*
G01*
G37*
X117540000Y-62440000D03*
X115000000Y-62440000D03*
X117540000Y-59900000D03*
G36*
G01*
X114099000Y-60750000D02*
X114099000Y-59050000D01*
G75*
G02*
X114150000Y-58999000I51000J0D01*
G01*
X115850000Y-58999000D01*
G75*
G02*
X115901000Y-59050000I0J-51000D01*
G01*
X115901000Y-60750000D01*
G75*
G02*
X115850000Y-60801000I-51000J0D01*
G01*
X114150000Y-60801000D01*
G75*
G02*
X114099000Y-60750000I0J51000D01*
G01*
G37*
X104020000Y-59700000D03*
X101480000Y-59700000D03*
X98940000Y-59700000D03*
G36*
G01*
X97250000Y-60601000D02*
X95550000Y-60601000D01*
G75*
G02*
X95499000Y-60550000I0J51000D01*
G01*
X95499000Y-58850000D01*
G75*
G02*
X95550000Y-58799000I51000J0D01*
G01*
X97250000Y-58799000D01*
G75*
G02*
X97301000Y-58850000I0J-51000D01*
G01*
X97301000Y-60550000D01*
G75*
G02*
X97250000Y-60601000I-51000J0D01*
G01*
G37*
X87840000Y-62440000D03*
X85300000Y-62440000D03*
X87840000Y-59900000D03*
G36*
G01*
X84399000Y-60750000D02*
X84399000Y-59050000D01*
G75*
G02*
X84450000Y-58999000I51000J0D01*
G01*
X86150000Y-58999000D01*
G75*
G02*
X86201000Y-59050000I0J-51000D01*
G01*
X86201000Y-60750000D01*
G75*
G02*
X86150000Y-60801000I-51000J0D01*
G01*
X84450000Y-60801000D01*
G75*
G02*
X84399000Y-60750000I0J51000D01*
G01*
G37*
G36*
G01*
X229833000Y-131675000D02*
X229833000Y-125325000D01*
G75*
G02*
X230468000Y-124690000I635000J0D01*
G01*
X231992000Y-124690000D01*
G75*
G02*
X232627000Y-125325000I0J-635000D01*
G01*
X232627000Y-131675000D01*
G75*
G02*
X231992000Y-132310000I-635000J0D01*
G01*
X230468000Y-132310000D01*
G75*
G02*
X229833000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X227293000Y-131675000D02*
X227293000Y-125325000D01*
G75*
G02*
X227928000Y-124690000I635000J0D01*
G01*
X229452000Y-124690000D01*
G75*
G02*
X230087000Y-125325000I0J-635000D01*
G01*
X230087000Y-131675000D01*
G75*
G02*
X229452000Y-132310000I-635000J0D01*
G01*
X227928000Y-132310000D01*
G75*
G02*
X227293000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X224753000Y-131675000D02*
X224753000Y-125325000D01*
G75*
G02*
X225388000Y-124690000I635000J0D01*
G01*
X226912000Y-124690000D01*
G75*
G02*
X227547000Y-125325000I0J-635000D01*
G01*
X227547000Y-131675000D01*
G75*
G02*
X226912000Y-132310000I-635000J0D01*
G01*
X225388000Y-132310000D01*
G75*
G02*
X224753000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X222213000Y-131675000D02*
X222213000Y-125325000D01*
G75*
G02*
X222848000Y-124690000I635000J0D01*
G01*
X224372000Y-124690000D01*
G75*
G02*
X225007000Y-125325000I0J-635000D01*
G01*
X225007000Y-131675000D01*
G75*
G02*
X224372000Y-132310000I-635000J0D01*
G01*
X222848000Y-132310000D01*
G75*
G02*
X222213000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X219673000Y-131675000D02*
X219673000Y-125325000D01*
G75*
G02*
X220308000Y-124690000I635000J0D01*
G01*
X221832000Y-124690000D01*
G75*
G02*
X222467000Y-125325000I0J-635000D01*
G01*
X222467000Y-131675000D01*
G75*
G02*
X221832000Y-132310000I-635000J0D01*
G01*
X220308000Y-132310000D01*
G75*
G02*
X219673000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X217133000Y-131675000D02*
X217133000Y-125325000D01*
G75*
G02*
X217768000Y-124690000I635000J0D01*
G01*
X219292000Y-124690000D01*
G75*
G02*
X219927000Y-125325000I0J-635000D01*
G01*
X219927000Y-131675000D01*
G75*
G02*
X219292000Y-132310000I-635000J0D01*
G01*
X217768000Y-132310000D01*
G75*
G02*
X217133000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X214593000Y-131675000D02*
X214593000Y-125325000D01*
G75*
G02*
X215228000Y-124690000I635000J0D01*
G01*
X216752000Y-124690000D01*
G75*
G02*
X217387000Y-125325000I0J-635000D01*
G01*
X217387000Y-131675000D01*
G75*
G02*
X216752000Y-132310000I-635000J0D01*
G01*
X215228000Y-132310000D01*
G75*
G02*
X214593000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X212053000Y-131675000D02*
X212053000Y-125325000D01*
G75*
G02*
X212688000Y-124690000I635000J0D01*
G01*
X214212000Y-124690000D01*
G75*
G02*
X214847000Y-125325000I0J-635000D01*
G01*
X214847000Y-131675000D01*
G75*
G02*
X214212000Y-132310000I-635000J0D01*
G01*
X212688000Y-132310000D01*
G75*
G02*
X212053000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X209513000Y-131675000D02*
X209513000Y-125325000D01*
G75*
G02*
X210148000Y-124690000I635000J0D01*
G01*
X211672000Y-124690000D01*
G75*
G02*
X212307000Y-125325000I0J-635000D01*
G01*
X212307000Y-131675000D01*
G75*
G02*
X211672000Y-132310000I-635000J0D01*
G01*
X210148000Y-132310000D01*
G75*
G02*
X209513000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X206973000Y-131675000D02*
X206973000Y-125325000D01*
G75*
G02*
X207608000Y-124690000I635000J0D01*
G01*
X209132000Y-124690000D01*
G75*
G02*
X209767000Y-125325000I0J-635000D01*
G01*
X209767000Y-131675000D01*
G75*
G02*
X209132000Y-132310000I-635000J0D01*
G01*
X207608000Y-132310000D01*
G75*
G02*
X206973000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X204433000Y-131675000D02*
X204433000Y-125325000D01*
G75*
G02*
X205068000Y-124690000I635000J0D01*
G01*
X206592000Y-124690000D01*
G75*
G02*
X207227000Y-125325000I0J-635000D01*
G01*
X207227000Y-131675000D01*
G75*
G02*
X206592000Y-132310000I-635000J0D01*
G01*
X205068000Y-132310000D01*
G75*
G02*
X204433000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X201893000Y-131675000D02*
X201893000Y-125325000D01*
G75*
G02*
X202528000Y-124690000I635000J0D01*
G01*
X204052000Y-124690000D01*
G75*
G02*
X204687000Y-125325000I0J-635000D01*
G01*
X204687000Y-131675000D01*
G75*
G02*
X204052000Y-132310000I-635000J0D01*
G01*
X202528000Y-132310000D01*
G75*
G02*
X201893000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X199353000Y-131675000D02*
X199353000Y-125325000D01*
G75*
G02*
X199988000Y-124690000I635000J0D01*
G01*
X201512000Y-124690000D01*
G75*
G02*
X202147000Y-125325000I0J-635000D01*
G01*
X202147000Y-131675000D01*
G75*
G02*
X201512000Y-132310000I-635000J0D01*
G01*
X199988000Y-132310000D01*
G75*
G02*
X199353000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X196813000Y-131675000D02*
X196813000Y-125325000D01*
G75*
G02*
X197448000Y-124690000I635000J0D01*
G01*
X198972000Y-124690000D01*
G75*
G02*
X199607000Y-125325000I0J-635000D01*
G01*
X199607000Y-131675000D01*
G75*
G02*
X198972000Y-132310000I-635000J0D01*
G01*
X197448000Y-132310000D01*
G75*
G02*
X196813000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X194273000Y-131675000D02*
X194273000Y-125325000D01*
G75*
G02*
X194908000Y-124690000I635000J0D01*
G01*
X196432000Y-124690000D01*
G75*
G02*
X197067000Y-125325000I0J-635000D01*
G01*
X197067000Y-131675000D01*
G75*
G02*
X196432000Y-132310000I-635000J0D01*
G01*
X194908000Y-132310000D01*
G75*
G02*
X194273000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X191733000Y-131675000D02*
X191733000Y-125325000D01*
G75*
G02*
X192368000Y-124690000I635000J0D01*
G01*
X193892000Y-124690000D01*
G75*
G02*
X194527000Y-125325000I0J-635000D01*
G01*
X194527000Y-131675000D01*
G75*
G02*
X193892000Y-132310000I-635000J0D01*
G01*
X192368000Y-132310000D01*
G75*
G02*
X191733000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X189193000Y-131675000D02*
X189193000Y-125325000D01*
G75*
G02*
X189828000Y-124690000I635000J0D01*
G01*
X191352000Y-124690000D01*
G75*
G02*
X191987000Y-125325000I0J-635000D01*
G01*
X191987000Y-131675000D01*
G75*
G02*
X191352000Y-132310000I-635000J0D01*
G01*
X189828000Y-132310000D01*
G75*
G02*
X189193000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X186653000Y-131675000D02*
X186653000Y-125325000D01*
G75*
G02*
X187288000Y-124690000I635000J0D01*
G01*
X188812000Y-124690000D01*
G75*
G02*
X189447000Y-125325000I0J-635000D01*
G01*
X189447000Y-131675000D01*
G75*
G02*
X188812000Y-132310000I-635000J0D01*
G01*
X187288000Y-132310000D01*
G75*
G02*
X186653000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X184113000Y-131675000D02*
X184113000Y-125325000D01*
G75*
G02*
X184748000Y-124690000I635000J0D01*
G01*
X186272000Y-124690000D01*
G75*
G02*
X186907000Y-125325000I0J-635000D01*
G01*
X186907000Y-131675000D01*
G75*
G02*
X186272000Y-132310000I-635000J0D01*
G01*
X184748000Y-132310000D01*
G75*
G02*
X184113000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X181573000Y-131675000D02*
X181573000Y-125325000D01*
G75*
G02*
X182208000Y-124690000I635000J0D01*
G01*
X183732000Y-124690000D01*
G75*
G02*
X184367000Y-125325000I0J-635000D01*
G01*
X184367000Y-131675000D01*
G75*
G02*
X183732000Y-132310000I-635000J0D01*
G01*
X182208000Y-132310000D01*
G75*
G02*
X181573000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X179033000Y-131675000D02*
X179033000Y-125325000D01*
G75*
G02*
X179668000Y-124690000I635000J0D01*
G01*
X181192000Y-124690000D01*
G75*
G02*
X181827000Y-125325000I0J-635000D01*
G01*
X181827000Y-131675000D01*
G75*
G02*
X181192000Y-132310000I-635000J0D01*
G01*
X179668000Y-132310000D01*
G75*
G02*
X179033000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X176493000Y-131675000D02*
X176493000Y-125325000D01*
G75*
G02*
X177128000Y-124690000I635000J0D01*
G01*
X178652000Y-124690000D01*
G75*
G02*
X179287000Y-125325000I0J-635000D01*
G01*
X179287000Y-131675000D01*
G75*
G02*
X178652000Y-132310000I-635000J0D01*
G01*
X177128000Y-132310000D01*
G75*
G02*
X176493000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X173953000Y-131675000D02*
X173953000Y-125325000D01*
G75*
G02*
X174588000Y-124690000I635000J0D01*
G01*
X176112000Y-124690000D01*
G75*
G02*
X176747000Y-125325000I0J-635000D01*
G01*
X176747000Y-131675000D01*
G75*
G02*
X176112000Y-132310000I-635000J0D01*
G01*
X174588000Y-132310000D01*
G75*
G02*
X173953000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X171413000Y-131675000D02*
X171413000Y-125325000D01*
G75*
G02*
X172048000Y-124690000I635000J0D01*
G01*
X173572000Y-124690000D01*
G75*
G02*
X174207000Y-125325000I0J-635000D01*
G01*
X174207000Y-131675000D01*
G75*
G02*
X173572000Y-132310000I-635000J0D01*
G01*
X172048000Y-132310000D01*
G75*
G02*
X171413000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X168873000Y-131675000D02*
X168873000Y-125325000D01*
G75*
G02*
X169508000Y-124690000I635000J0D01*
G01*
X171032000Y-124690000D01*
G75*
G02*
X171667000Y-125325000I0J-635000D01*
G01*
X171667000Y-131675000D01*
G75*
G02*
X171032000Y-132310000I-635000J0D01*
G01*
X169508000Y-132310000D01*
G75*
G02*
X168873000Y-131675000I0J635000D01*
G01*
G37*
D14*
X237000000Y-114500000D03*
X227000000Y-114500000D03*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Paste,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Legend,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,Comment*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,OtherDrawing,Comment*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,ECO1*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,ECO2*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,34 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Profile,NP*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 #@! TA.AperFunction,Profile*
%ADD10C,0.050000*%
G04 #@! TD*
G04 APERTURE END LIST*
D10*
X73660000Y-54737000D02*
X73660000Y-124587000D01*
X167767000Y-124587000D02*
X73660000Y-124587000D01*
X167767000Y-132207000D02*
X167767000Y-124587000D01*
X241300000Y-54737000D02*
X73660000Y-54737000D01*
X241300000Y-124587000D02*
X241300000Y-54737000D01*
X233553000Y-124587000D02*
X241300000Y-124587000D01*
X233553000Y-132207000D02*
X233553000Y-124587000D01*
X167767000Y-132207000D02*
X233553000Y-132207000D01*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Glue,Top*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,80 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,User*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,0.050000*%
G04 APERTURE END LIST*
D10*
X180800000Y-87300000D02*
X180800000Y-58900000D01*
X180800000Y-58900000D02*
X235700000Y-58900000D01*
X235700000Y-58900000D02*
X235700000Y-87300000D01*
X235700000Y-87300000D02*
X180800000Y-87300000D01*
X159050000Y-112900000D02*
X220550000Y-112900000D01*
X220550000Y-112900000D02*
X220550000Y-94700000D01*
X220550000Y-94700000D02*
X159050000Y-94700000D01*
X159050000Y-94700000D02*
X159050000Y-112900000D01*
X147560000Y-58100000D02*
X153660000Y-58100000D01*
X153660000Y-58100000D02*
X153660000Y-76900000D01*
X153660000Y-76900000D02*
X147560000Y-76900000D01*
X147560000Y-76900000D02*
X147560000Y-58100000D01*
X128600000Y-64300000D02*
X139800000Y-64300000D01*
X139800000Y-64300000D02*
X139800000Y-58150000D01*
X139800000Y-58150000D02*
X128600000Y-58150000D01*
X128600000Y-58150000D02*
X128600000Y-64300000D01*
X113200000Y-58100000D02*
X113200000Y-64250000D01*
X113200000Y-64250000D02*
X119350000Y-64250000D01*
X119350000Y-64250000D02*
X119350000Y-58100000D01*
X119350000Y-58100000D02*
X113200000Y-58100000D01*
X94600000Y-61500000D02*
X94600000Y-57950000D01*
X94600000Y-57950000D02*
X105800000Y-57950000D01*
X105800000Y-57950000D02*
X105800000Y-61500000D01*
X105800000Y-61500000D02*
X94600000Y-61500000D01*
X83500000Y-58100000D02*
X83500000Y-64250000D01*
X83500000Y-64250000D02*
X89650000Y-64250000D01*
X89650000Y-64250000D02*
X89650000Y-58100000D01*
X89650000Y-58100000D02*
X83500000Y-58100000D01*
X225750000Y-111750000D02*
X225750000Y-117250000D01*
X225750000Y-117250000D02*
X238250000Y-117250000D01*
X238250000Y-117250000D02*
X238250000Y-111750000D01*
X238250000Y-111750000D02*
X225750000Y-111750000D01*
M02*

View File

@ -0,0 +1,603 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Copper,L1,Top*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 #@! TA.AperFunction,ComponentPad*
%ADD10C,1.560000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD11R,1.560000X1.560000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD12O,1.600000X2.400000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD13R,1.600000X2.400000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD14O,1.700000X1.700000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD15R,1.700000X1.700000*%
G04 #@! TD*
G04 #@! TA.AperFunction,SMDPad,CuDef*
%ADD16R,1.524000X6.350000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD17C,2.000000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ViaPad*
%ADD18C,0.800000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD19C,0.400000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD20C,0.250000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD21C,0.249936*%
G04 #@! TD*
G04 APERTURE END LIST*
D10*
X234160000Y-60400000D03*
X231620000Y-60400000D03*
X229080000Y-60400000D03*
X226540000Y-60400000D03*
X224000000Y-60400000D03*
X221460000Y-60400000D03*
X218920000Y-60400000D03*
X216380000Y-60400000D03*
X213840000Y-60400000D03*
X211300000Y-60400000D03*
X208760000Y-60400000D03*
X206220000Y-60400000D03*
X203680000Y-60400000D03*
X201140000Y-60400000D03*
X198600000Y-60400000D03*
X196060000Y-60400000D03*
X193520000Y-60400000D03*
X190980000Y-60400000D03*
X188440000Y-60400000D03*
X231620000Y-85800000D03*
X229080000Y-85800000D03*
X226540000Y-85800000D03*
X224000000Y-85800000D03*
X221460000Y-85800000D03*
X218920000Y-85800000D03*
X216380000Y-85800000D03*
X213840000Y-85800000D03*
X211300000Y-85800000D03*
X208760000Y-85800000D03*
X206220000Y-85800000D03*
X203680000Y-85800000D03*
X201140000Y-85800000D03*
X198600000Y-85800000D03*
X196060000Y-85800000D03*
X193520000Y-85800000D03*
X234160000Y-85800000D03*
X190980000Y-85800000D03*
D11*
X188440000Y-85800000D03*
D12*
X160600000Y-96160000D03*
X219020000Y-111400000D03*
X163140000Y-96160000D03*
X216480000Y-111400000D03*
X165680000Y-96160000D03*
X213940000Y-111400000D03*
X168220000Y-96160000D03*
X211400000Y-111400000D03*
X170760000Y-96160000D03*
X208860000Y-111400000D03*
X173300000Y-96160000D03*
X206320000Y-111400000D03*
X175840000Y-96160000D03*
X203780000Y-111400000D03*
X178380000Y-96160000D03*
X201240000Y-111400000D03*
X180920000Y-96160000D03*
X198700000Y-111400000D03*
X183460000Y-96160000D03*
X196160000Y-111400000D03*
X186000000Y-96160000D03*
X193620000Y-111400000D03*
X188540000Y-96160000D03*
X191080000Y-111400000D03*
X191080000Y-96160000D03*
X188540000Y-111400000D03*
X193620000Y-96160000D03*
X186000000Y-111400000D03*
X196160000Y-96160000D03*
X183460000Y-111400000D03*
X198700000Y-96160000D03*
X180920000Y-111400000D03*
X201240000Y-96160000D03*
X178380000Y-111400000D03*
X203780000Y-96160000D03*
X175840000Y-111400000D03*
X206320000Y-96160000D03*
X173300000Y-111400000D03*
X208860000Y-96160000D03*
X170760000Y-111400000D03*
X211400000Y-96160000D03*
X168220000Y-111400000D03*
X213940000Y-96160000D03*
X165680000Y-111400000D03*
X216480000Y-96160000D03*
X163140000Y-111400000D03*
X219020000Y-96160000D03*
D13*
X160600000Y-111400000D03*
D14*
X149360000Y-75140000D03*
X151900000Y-75140000D03*
X149360000Y-72600000D03*
X151900000Y-72600000D03*
X149360000Y-70060000D03*
X151900000Y-70060000D03*
X149360000Y-67520000D03*
X151900000Y-67520000D03*
X149360000Y-64980000D03*
X151900000Y-64980000D03*
X149360000Y-62440000D03*
X151900000Y-62440000D03*
X149360000Y-59900000D03*
D15*
X151900000Y-59900000D03*
D14*
X138020000Y-59960000D03*
X138020000Y-62500000D03*
X135480000Y-59960000D03*
X135480000Y-62500000D03*
X132940000Y-59960000D03*
X132940000Y-62500000D03*
X130400000Y-59960000D03*
D15*
X130400000Y-62500000D03*
D14*
X117540000Y-62440000D03*
X115000000Y-62440000D03*
X117540000Y-59900000D03*
D15*
X115000000Y-59900000D03*
D14*
X104020000Y-59700000D03*
X101480000Y-59700000D03*
X98940000Y-59700000D03*
D15*
X96400000Y-59700000D03*
D14*
X87840000Y-62440000D03*
X85300000Y-62440000D03*
X87840000Y-59900000D03*
D15*
X85300000Y-59900000D03*
D16*
X231230000Y-128500000D03*
X228690000Y-128500000D03*
X226150000Y-128500000D03*
X223610000Y-128500000D03*
X221070000Y-128500000D03*
X218530000Y-128500000D03*
X215990000Y-128500000D03*
X213450000Y-128500000D03*
X210910000Y-128500000D03*
X208370000Y-128500000D03*
X205830000Y-128500000D03*
X203290000Y-128500000D03*
X200750000Y-128500000D03*
X198210000Y-128500000D03*
X195670000Y-128500000D03*
X193130000Y-128500000D03*
X190590000Y-128500000D03*
X188050000Y-128500000D03*
X185510000Y-128500000D03*
X182970000Y-128500000D03*
X180430000Y-128500000D03*
X177890000Y-128500000D03*
X175350000Y-128500000D03*
X172810000Y-128500000D03*
X170270000Y-128500000D03*
D17*
X237000000Y-114500000D03*
X227000000Y-114500000D03*
D18*
X149600000Y-89800000D03*
X165700000Y-72700000D03*
X171500000Y-67000000D03*
X193200000Y-77000000D03*
X191200000Y-73500000D03*
X198600000Y-65300000D03*
X179200000Y-77300000D03*
X166900000Y-107600000D03*
X146000000Y-73900000D03*
X162700000Y-85300000D03*
X139215001Y-68884999D03*
X128884999Y-68884999D03*
X212200000Y-81300000D03*
X161700000Y-68300000D03*
X190000000Y-71300000D03*
X196800000Y-56900000D03*
X200000000Y-56900000D03*
D19*
X173300000Y-128010000D02*
X172810000Y-128500000D01*
X173300000Y-111400000D02*
X173300000Y-128010000D01*
X175840000Y-128010000D02*
X175350000Y-128500000D01*
X175840000Y-111400000D02*
X175840000Y-128010000D01*
X178380000Y-128010000D02*
X177890000Y-128500000D01*
X178380000Y-111400000D02*
X178380000Y-128010000D01*
X180920000Y-128010000D02*
X180430000Y-128500000D01*
X180920000Y-111400000D02*
X180920000Y-128010000D01*
X183460000Y-128010000D02*
X182970000Y-128500000D01*
X183460000Y-111400000D02*
X183460000Y-128010000D01*
X186000000Y-128010000D02*
X185510000Y-128500000D01*
X186000000Y-111400000D02*
X186000000Y-128010000D01*
X188540000Y-128010000D02*
X188050000Y-128500000D01*
X188540000Y-111400000D02*
X188540000Y-128010000D01*
X191080000Y-128010000D02*
X190590000Y-128500000D01*
X191080000Y-111400000D02*
X191080000Y-128010000D01*
X193620000Y-128010000D02*
X193130000Y-128500000D01*
X193620000Y-111400000D02*
X193620000Y-128010000D01*
X196160000Y-128010000D02*
X195670000Y-128500000D01*
X196160000Y-111400000D02*
X196160000Y-128010000D01*
D20*
X168220000Y-111400000D02*
X171320000Y-108300000D01*
X197574990Y-127864990D02*
X198210000Y-128500000D01*
X195051004Y-108300000D02*
X197574990Y-110823986D01*
X197574990Y-110823986D02*
X197574990Y-127864990D01*
X171320000Y-108300000D02*
X195051004Y-108300000D01*
D19*
X231230000Y-118730000D02*
X227000000Y-114500000D01*
X231230000Y-128500000D02*
X231230000Y-118730000D01*
X227000000Y-114500000D02*
X234200000Y-107300000D01*
X234200000Y-85840000D02*
X234160000Y-85800000D01*
X234200000Y-107300000D02*
X234200000Y-85840000D01*
D20*
X160600000Y-96160000D02*
X160600000Y-98800000D01*
X160600000Y-98800000D02*
X165300000Y-103500000D01*
X216000000Y-103500000D02*
X227000000Y-114500000D01*
X165300000Y-103500000D02*
X216000000Y-103500000D01*
X149600000Y-89800000D02*
X152800000Y-93000000D01*
X165060000Y-93000000D02*
X168220000Y-96160000D01*
X152800000Y-93000000D02*
X165060000Y-93000000D01*
X165700000Y-72700000D02*
X171400000Y-67000000D01*
X171400000Y-67000000D02*
X171500000Y-67000000D01*
X201140000Y-69060000D02*
X201140000Y-60400000D01*
X193200000Y-77000000D02*
X201140000Y-69060000D01*
X191200000Y-73500000D02*
X198600000Y-66100000D01*
X198600000Y-66100000D02*
X198600000Y-65300000D01*
X190980000Y-60400000D02*
X190980000Y-65520000D01*
X190980000Y-65520000D02*
X179200000Y-77300000D01*
X183460000Y-96160000D02*
X187200000Y-99900000D01*
X200114990Y-94445010D02*
X208760000Y-85800000D01*
X200114990Y-96736014D02*
X200114990Y-94445010D01*
X196951004Y-99900000D02*
X200114990Y-96736014D01*
X187200000Y-99900000D02*
X196951004Y-99900000D01*
X224000000Y-85800000D02*
X224000000Y-96500000D01*
X224000000Y-96500000D02*
X220000000Y-100500000D01*
X220000000Y-100500000D02*
X205900000Y-100500000D01*
X203780000Y-98380000D02*
X203780000Y-96160000D01*
X205900000Y-100500000D02*
X203780000Y-98380000D01*
X226540000Y-60400000D02*
X210600000Y-76340000D01*
X209865001Y-95154999D02*
X208860000Y-96160000D01*
X209865001Y-85599597D02*
X209865001Y-95154999D01*
X210600000Y-84864598D02*
X209865001Y-85599597D01*
X210600000Y-76340000D02*
X210600000Y-84864598D01*
X212814990Y-110823986D02*
X212814990Y-127864990D01*
X209591004Y-107600000D02*
X212814990Y-110823986D01*
X212814990Y-127864990D02*
X213450000Y-128500000D01*
X166900000Y-107600000D02*
X209591004Y-107600000D01*
X170270000Y-124925000D02*
X142545000Y-97200000D01*
D19*
X170270000Y-128500000D02*
X170270000Y-124925000D01*
D20*
X142545000Y-97200000D02*
X79600000Y-97200000D01*
X79600000Y-97200000D02*
X75600000Y-93200000D01*
D19*
X85300000Y-60589998D02*
X85300000Y-59900000D01*
D20*
X75600000Y-70289998D02*
X85300000Y-60589998D01*
X75600000Y-93200000D02*
X75600000Y-70289998D01*
D19*
X85300000Y-59900000D02*
X85300000Y-59400000D01*
D21*
X85300000Y-59400000D02*
X88300000Y-56400000D01*
X88300000Y-56400000D02*
X97400000Y-56400000D01*
X98940000Y-57940000D02*
X98940000Y-59700000D01*
X97400000Y-56400000D02*
X98940000Y-57940000D01*
X87840000Y-59900000D02*
X87840000Y-62440000D01*
X87840000Y-62440000D02*
X87840000Y-66840000D01*
X87840000Y-66840000D02*
X94100000Y-73100000D01*
X94100000Y-73100000D02*
X109300000Y-73100000D01*
X109300000Y-73100000D02*
X112900000Y-76700000D01*
X112900000Y-76700000D02*
X125100000Y-76700000D01*
X125100000Y-76700000D02*
X132700000Y-84300000D01*
X132700000Y-84300000D02*
X137800000Y-84300000D01*
X160600000Y-107100000D02*
X160600000Y-111400000D01*
X137800000Y-84300000D02*
X160600000Y-107100000D01*
X116289999Y-61189999D02*
X118589999Y-61189999D01*
X115000000Y-59900000D02*
X116289999Y-61189999D01*
X165680000Y-108280000D02*
X165680000Y-111400000D01*
X118589999Y-61189999D02*
X165680000Y-108280000D01*
D20*
X150600000Y-73900000D02*
X151900000Y-72600000D01*
X146000000Y-73900000D02*
X150600000Y-73900000D01*
X162700000Y-85300000D02*
X164200000Y-86800000D01*
X164200000Y-86800000D02*
X164200000Y-86900000D01*
X164200000Y-86900000D02*
X165300000Y-88000000D01*
X165300000Y-88000000D02*
X186700000Y-88000000D01*
X186700000Y-88000000D02*
X188300000Y-89600000D01*
X188300000Y-89600000D02*
X200300000Y-89600000D01*
X201140000Y-88760000D02*
X201140000Y-85800000D01*
X200300000Y-89600000D02*
X201140000Y-88760000D01*
X198600000Y-85800000D02*
X193400000Y-80600000D01*
X162440000Y-80600000D02*
X151900000Y-70060000D01*
X193400000Y-80600000D02*
X162440000Y-80600000D01*
X150724999Y-68884999D02*
X139215001Y-68884999D01*
X151900000Y-70060000D02*
X150724999Y-68884999D01*
X119900000Y-59900000D02*
X117540000Y-59900000D01*
X128884999Y-68884999D02*
X119900000Y-59900000D01*
X193620000Y-96160000D02*
X186360000Y-88900000D01*
X186360000Y-88900000D02*
X157800000Y-88900000D01*
X138020000Y-69120000D02*
X138020000Y-62500000D01*
X157800000Y-88900000D02*
X138020000Y-69120000D01*
X203680000Y-85800000D02*
X196480000Y-78600000D01*
X165520000Y-78600000D02*
X151900000Y-64980000D01*
X196480000Y-78600000D02*
X165520000Y-78600000D01*
X191080000Y-96160000D02*
X184620000Y-89700000D01*
X184620000Y-89700000D02*
X156700000Y-89700000D01*
X135480000Y-68480000D02*
X135480000Y-62500000D01*
X156700000Y-89700000D02*
X135480000Y-68480000D01*
X213840000Y-85800000D02*
X213840000Y-82940000D01*
X213840000Y-82940000D02*
X212200000Y-81300000D01*
X155840000Y-62440000D02*
X151900000Y-62440000D01*
X161700000Y-68300000D02*
X155840000Y-62440000D01*
X188540000Y-96160000D02*
X182680000Y-90300000D01*
X182680000Y-90300000D02*
X156400000Y-90300000D01*
X132940000Y-66840000D02*
X132940000Y-62500000D01*
X156400000Y-90300000D02*
X132940000Y-66840000D01*
X130400000Y-66000000D02*
X130400000Y-62500000D01*
X181170000Y-91330000D02*
X155730000Y-91330000D01*
X155730000Y-91330000D02*
X130400000Y-66000000D01*
X186000000Y-96160000D02*
X181170000Y-91330000D01*
X193520000Y-85800000D02*
X190020000Y-82300000D01*
X156520000Y-82300000D02*
X149360000Y-75140000D01*
X190020000Y-82300000D02*
X156520000Y-82300000D01*
X196060000Y-85800000D02*
X191960000Y-81700000D01*
X158460000Y-81700000D02*
X151900000Y-75140000D01*
X191960000Y-81700000D02*
X158460000Y-81700000D01*
X190000000Y-71300000D02*
X196000000Y-65300000D01*
X196000000Y-60460000D02*
X196060000Y-60400000D01*
X196000000Y-65300000D02*
X196000000Y-60460000D01*
X198600000Y-57100000D02*
X198600000Y-60400000D01*
X144120000Y-67520000D02*
X140800000Y-64200000D01*
X142500000Y-56000000D02*
X197500000Y-56000000D01*
X149360000Y-67520000D02*
X144120000Y-67520000D01*
X197500000Y-56000000D02*
X198600000Y-57100000D01*
X140800000Y-64200000D02*
X140800000Y-57700000D01*
X140800000Y-57700000D02*
X142500000Y-56000000D01*
X149360000Y-64980000D02*
X143630010Y-64980000D01*
X141600000Y-62949990D02*
X141600000Y-58000000D01*
X143630010Y-64980000D02*
X141600000Y-62949990D01*
X141600000Y-58000000D02*
X142700000Y-56900000D01*
X142700000Y-56900000D02*
X196800000Y-56900000D01*
X200000000Y-56900000D02*
X218100000Y-56900000D01*
X218920000Y-57720000D02*
X218920000Y-60400000D01*
X218100000Y-56900000D02*
X218920000Y-57720000D01*
X143260000Y-62440000D02*
X149360000Y-62440000D01*
X199274999Y-57248001D02*
X199705001Y-57678003D01*
X199274999Y-56551999D02*
X199274999Y-57248001D01*
X221460000Y-60400000D02*
X221460000Y-57760000D01*
X143174999Y-57625001D02*
X142700000Y-58100000D01*
X221460000Y-57760000D02*
X219874999Y-56174999D01*
X199651999Y-56174999D02*
X199274999Y-56551999D01*
X198069599Y-61505001D02*
X197494999Y-60930401D01*
X199705001Y-60930401D02*
X199130401Y-61505001D01*
X199130401Y-61505001D02*
X198069599Y-61505001D01*
X197494999Y-60930401D02*
X197494999Y-57971999D01*
X197494999Y-57971999D02*
X197148001Y-57625001D01*
X142700000Y-58100000D02*
X142700000Y-61880000D01*
X197148001Y-57625001D02*
X143174999Y-57625001D01*
X219874999Y-56174999D02*
X199651999Y-56174999D01*
X199705001Y-57678003D02*
X199705001Y-60930401D01*
X142700000Y-61880000D02*
X143260000Y-62440000D01*
X150724999Y-61264999D02*
X170664999Y-61264999D01*
X149360000Y-59900000D02*
X150724999Y-61264999D01*
X178851999Y-78025001D02*
X194874999Y-78025001D01*
X178474999Y-77648001D02*
X178851999Y-78025001D01*
X170664999Y-61264999D02*
X178474999Y-69074999D01*
X178474999Y-69074999D02*
X178474999Y-77648001D01*
X194874999Y-78025001D02*
X203900000Y-69000000D01*
X215400000Y-69000000D02*
X224000000Y-60400000D01*
X203900000Y-69000000D02*
X215400000Y-69000000D01*
M02*

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,940 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Soldermask,Top*
G04 #@! TF.FilePolarity,Negative*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,0.100000*%
%ADD11C,1.662000*%
%ADD12O,1.702000X2.502000*%
%ADD13O,1.802000X1.802000*%
%ADD14C,2.102000*%
G04 APERTURE END LIST*
D10*
G36*
X167857000Y-124690000D02*
G01*
X167857000Y-132310000D01*
X168873000Y-132310000D01*
X168873000Y-124690000D01*
X167857000Y-124690000D01*
G37*
G36*
X233643000Y-124690000D02*
G01*
X232627000Y-124690000D01*
X232627000Y-132310000D01*
X233643000Y-132310000D01*
X233643000Y-124690000D01*
G37*
G36*
X167857000Y-124690000D02*
G01*
X167857000Y-132310000D01*
X168873000Y-132310000D01*
X168873000Y-124690000D01*
X167857000Y-124690000D01*
G37*
G36*
X233643000Y-124690000D02*
G01*
X232627000Y-124690000D01*
X232627000Y-132310000D01*
X233643000Y-132310000D01*
X233643000Y-124690000D01*
G37*
D11*
X234160000Y-60400000D03*
X231620000Y-60400000D03*
X229080000Y-60400000D03*
X226540000Y-60400000D03*
X224000000Y-60400000D03*
X221460000Y-60400000D03*
X218920000Y-60400000D03*
X216380000Y-60400000D03*
X213840000Y-60400000D03*
X211300000Y-60400000D03*
X208760000Y-60400000D03*
X206220000Y-60400000D03*
X203680000Y-60400000D03*
X201140000Y-60400000D03*
X198600000Y-60400000D03*
X196060000Y-60400000D03*
X193520000Y-60400000D03*
X190980000Y-60400000D03*
X188440000Y-60400000D03*
X231620000Y-85800000D03*
X229080000Y-85800000D03*
X226540000Y-85800000D03*
X224000000Y-85800000D03*
X221460000Y-85800000D03*
X218920000Y-85800000D03*
X216380000Y-85800000D03*
X213840000Y-85800000D03*
X211300000Y-85800000D03*
X208760000Y-85800000D03*
X206220000Y-85800000D03*
X203680000Y-85800000D03*
X201140000Y-85800000D03*
X198600000Y-85800000D03*
X196060000Y-85800000D03*
X193520000Y-85800000D03*
X234160000Y-85800000D03*
X190980000Y-85800000D03*
G36*
G01*
X189220000Y-86631000D02*
X187660000Y-86631000D01*
G75*
G02*
X187609000Y-86580000I0J51000D01*
G01*
X187609000Y-85020000D01*
G75*
G02*
X187660000Y-84969000I51000J0D01*
G01*
X189220000Y-84969000D01*
G75*
G02*
X189271000Y-85020000I0J-51000D01*
G01*
X189271000Y-86580000D01*
G75*
G02*
X189220000Y-86631000I-51000J0D01*
G01*
G37*
D12*
X160600000Y-96160000D03*
X219020000Y-111400000D03*
X163140000Y-96160000D03*
X216480000Y-111400000D03*
X165680000Y-96160000D03*
X213940000Y-111400000D03*
X168220000Y-96160000D03*
X211400000Y-111400000D03*
X170760000Y-96160000D03*
X208860000Y-111400000D03*
X173300000Y-96160000D03*
X206320000Y-111400000D03*
X175840000Y-96160000D03*
X203780000Y-111400000D03*
X178380000Y-96160000D03*
X201240000Y-111400000D03*
X180920000Y-96160000D03*
X198700000Y-111400000D03*
X183460000Y-96160000D03*
X196160000Y-111400000D03*
X186000000Y-96160000D03*
X193620000Y-111400000D03*
X188540000Y-96160000D03*
X191080000Y-111400000D03*
X191080000Y-96160000D03*
X188540000Y-111400000D03*
X193620000Y-96160000D03*
X186000000Y-111400000D03*
X196160000Y-96160000D03*
X183460000Y-111400000D03*
X198700000Y-96160000D03*
X180920000Y-111400000D03*
X201240000Y-96160000D03*
X178380000Y-111400000D03*
X203780000Y-96160000D03*
X175840000Y-111400000D03*
X206320000Y-96160000D03*
X173300000Y-111400000D03*
X208860000Y-96160000D03*
X170760000Y-111400000D03*
X211400000Y-96160000D03*
X168220000Y-111400000D03*
X213940000Y-96160000D03*
X165680000Y-111400000D03*
X216480000Y-96160000D03*
X163140000Y-111400000D03*
X219020000Y-96160000D03*
G36*
G01*
X161400000Y-112651000D02*
X159800000Y-112651000D01*
G75*
G02*
X159749000Y-112600000I0J51000D01*
G01*
X159749000Y-110200000D01*
G75*
G02*
X159800000Y-110149000I51000J0D01*
G01*
X161400000Y-110149000D01*
G75*
G02*
X161451000Y-110200000I0J-51000D01*
G01*
X161451000Y-112600000D01*
G75*
G02*
X161400000Y-112651000I-51000J0D01*
G01*
G37*
D13*
X149360000Y-75140000D03*
X151900000Y-75140000D03*
X149360000Y-72600000D03*
X151900000Y-72600000D03*
X149360000Y-70060000D03*
X151900000Y-70060000D03*
X149360000Y-67520000D03*
X151900000Y-67520000D03*
X149360000Y-64980000D03*
X151900000Y-64980000D03*
X149360000Y-62440000D03*
X151900000Y-62440000D03*
X149360000Y-59900000D03*
G36*
G01*
X150999000Y-60750000D02*
X150999000Y-59050000D01*
G75*
G02*
X151050000Y-58999000I51000J0D01*
G01*
X152750000Y-58999000D01*
G75*
G02*
X152801000Y-59050000I0J-51000D01*
G01*
X152801000Y-60750000D01*
G75*
G02*
X152750000Y-60801000I-51000J0D01*
G01*
X151050000Y-60801000D01*
G75*
G02*
X150999000Y-60750000I0J51000D01*
G01*
G37*
X138020000Y-59960000D03*
X138020000Y-62500000D03*
X135480000Y-59960000D03*
X135480000Y-62500000D03*
X132940000Y-59960000D03*
X132940000Y-62500000D03*
X130400000Y-59960000D03*
G36*
G01*
X131250000Y-63401000D02*
X129550000Y-63401000D01*
G75*
G02*
X129499000Y-63350000I0J51000D01*
G01*
X129499000Y-61650000D01*
G75*
G02*
X129550000Y-61599000I51000J0D01*
G01*
X131250000Y-61599000D01*
G75*
G02*
X131301000Y-61650000I0J-51000D01*
G01*
X131301000Y-63350000D01*
G75*
G02*
X131250000Y-63401000I-51000J0D01*
G01*
G37*
X117540000Y-62440000D03*
X115000000Y-62440000D03*
X117540000Y-59900000D03*
G36*
G01*
X114099000Y-60750000D02*
X114099000Y-59050000D01*
G75*
G02*
X114150000Y-58999000I51000J0D01*
G01*
X115850000Y-58999000D01*
G75*
G02*
X115901000Y-59050000I0J-51000D01*
G01*
X115901000Y-60750000D01*
G75*
G02*
X115850000Y-60801000I-51000J0D01*
G01*
X114150000Y-60801000D01*
G75*
G02*
X114099000Y-60750000I0J51000D01*
G01*
G37*
X104020000Y-59700000D03*
X101480000Y-59700000D03*
X98940000Y-59700000D03*
G36*
G01*
X97250000Y-60601000D02*
X95550000Y-60601000D01*
G75*
G02*
X95499000Y-60550000I0J51000D01*
G01*
X95499000Y-58850000D01*
G75*
G02*
X95550000Y-58799000I51000J0D01*
G01*
X97250000Y-58799000D01*
G75*
G02*
X97301000Y-58850000I0J-51000D01*
G01*
X97301000Y-60550000D01*
G75*
G02*
X97250000Y-60601000I-51000J0D01*
G01*
G37*
X87840000Y-62440000D03*
X85300000Y-62440000D03*
X87840000Y-59900000D03*
G36*
G01*
X84399000Y-60750000D02*
X84399000Y-59050000D01*
G75*
G02*
X84450000Y-58999000I51000J0D01*
G01*
X86150000Y-58999000D01*
G75*
G02*
X86201000Y-59050000I0J-51000D01*
G01*
X86201000Y-60750000D01*
G75*
G02*
X86150000Y-60801000I-51000J0D01*
G01*
X84450000Y-60801000D01*
G75*
G02*
X84399000Y-60750000I0J51000D01*
G01*
G37*
G36*
G01*
X229833000Y-131675000D02*
X229833000Y-125325000D01*
G75*
G02*
X230468000Y-124690000I635000J0D01*
G01*
X231992000Y-124690000D01*
G75*
G02*
X232627000Y-125325000I0J-635000D01*
G01*
X232627000Y-131675000D01*
G75*
G02*
X231992000Y-132310000I-635000J0D01*
G01*
X230468000Y-132310000D01*
G75*
G02*
X229833000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X227293000Y-131675000D02*
X227293000Y-125325000D01*
G75*
G02*
X227928000Y-124690000I635000J0D01*
G01*
X229452000Y-124690000D01*
G75*
G02*
X230087000Y-125325000I0J-635000D01*
G01*
X230087000Y-131675000D01*
G75*
G02*
X229452000Y-132310000I-635000J0D01*
G01*
X227928000Y-132310000D01*
G75*
G02*
X227293000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X224753000Y-131675000D02*
X224753000Y-125325000D01*
G75*
G02*
X225388000Y-124690000I635000J0D01*
G01*
X226912000Y-124690000D01*
G75*
G02*
X227547000Y-125325000I0J-635000D01*
G01*
X227547000Y-131675000D01*
G75*
G02*
X226912000Y-132310000I-635000J0D01*
G01*
X225388000Y-132310000D01*
G75*
G02*
X224753000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X222213000Y-131675000D02*
X222213000Y-125325000D01*
G75*
G02*
X222848000Y-124690000I635000J0D01*
G01*
X224372000Y-124690000D01*
G75*
G02*
X225007000Y-125325000I0J-635000D01*
G01*
X225007000Y-131675000D01*
G75*
G02*
X224372000Y-132310000I-635000J0D01*
G01*
X222848000Y-132310000D01*
G75*
G02*
X222213000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X219673000Y-131675000D02*
X219673000Y-125325000D01*
G75*
G02*
X220308000Y-124690000I635000J0D01*
G01*
X221832000Y-124690000D01*
G75*
G02*
X222467000Y-125325000I0J-635000D01*
G01*
X222467000Y-131675000D01*
G75*
G02*
X221832000Y-132310000I-635000J0D01*
G01*
X220308000Y-132310000D01*
G75*
G02*
X219673000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X217133000Y-131675000D02*
X217133000Y-125325000D01*
G75*
G02*
X217768000Y-124690000I635000J0D01*
G01*
X219292000Y-124690000D01*
G75*
G02*
X219927000Y-125325000I0J-635000D01*
G01*
X219927000Y-131675000D01*
G75*
G02*
X219292000Y-132310000I-635000J0D01*
G01*
X217768000Y-132310000D01*
G75*
G02*
X217133000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X214593000Y-131675000D02*
X214593000Y-125325000D01*
G75*
G02*
X215228000Y-124690000I635000J0D01*
G01*
X216752000Y-124690000D01*
G75*
G02*
X217387000Y-125325000I0J-635000D01*
G01*
X217387000Y-131675000D01*
G75*
G02*
X216752000Y-132310000I-635000J0D01*
G01*
X215228000Y-132310000D01*
G75*
G02*
X214593000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X212053000Y-131675000D02*
X212053000Y-125325000D01*
G75*
G02*
X212688000Y-124690000I635000J0D01*
G01*
X214212000Y-124690000D01*
G75*
G02*
X214847000Y-125325000I0J-635000D01*
G01*
X214847000Y-131675000D01*
G75*
G02*
X214212000Y-132310000I-635000J0D01*
G01*
X212688000Y-132310000D01*
G75*
G02*
X212053000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X209513000Y-131675000D02*
X209513000Y-125325000D01*
G75*
G02*
X210148000Y-124690000I635000J0D01*
G01*
X211672000Y-124690000D01*
G75*
G02*
X212307000Y-125325000I0J-635000D01*
G01*
X212307000Y-131675000D01*
G75*
G02*
X211672000Y-132310000I-635000J0D01*
G01*
X210148000Y-132310000D01*
G75*
G02*
X209513000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X206973000Y-131675000D02*
X206973000Y-125325000D01*
G75*
G02*
X207608000Y-124690000I635000J0D01*
G01*
X209132000Y-124690000D01*
G75*
G02*
X209767000Y-125325000I0J-635000D01*
G01*
X209767000Y-131675000D01*
G75*
G02*
X209132000Y-132310000I-635000J0D01*
G01*
X207608000Y-132310000D01*
G75*
G02*
X206973000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X204433000Y-131675000D02*
X204433000Y-125325000D01*
G75*
G02*
X205068000Y-124690000I635000J0D01*
G01*
X206592000Y-124690000D01*
G75*
G02*
X207227000Y-125325000I0J-635000D01*
G01*
X207227000Y-131675000D01*
G75*
G02*
X206592000Y-132310000I-635000J0D01*
G01*
X205068000Y-132310000D01*
G75*
G02*
X204433000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X201893000Y-131675000D02*
X201893000Y-125325000D01*
G75*
G02*
X202528000Y-124690000I635000J0D01*
G01*
X204052000Y-124690000D01*
G75*
G02*
X204687000Y-125325000I0J-635000D01*
G01*
X204687000Y-131675000D01*
G75*
G02*
X204052000Y-132310000I-635000J0D01*
G01*
X202528000Y-132310000D01*
G75*
G02*
X201893000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X199353000Y-131675000D02*
X199353000Y-125325000D01*
G75*
G02*
X199988000Y-124690000I635000J0D01*
G01*
X201512000Y-124690000D01*
G75*
G02*
X202147000Y-125325000I0J-635000D01*
G01*
X202147000Y-131675000D01*
G75*
G02*
X201512000Y-132310000I-635000J0D01*
G01*
X199988000Y-132310000D01*
G75*
G02*
X199353000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X196813000Y-131675000D02*
X196813000Y-125325000D01*
G75*
G02*
X197448000Y-124690000I635000J0D01*
G01*
X198972000Y-124690000D01*
G75*
G02*
X199607000Y-125325000I0J-635000D01*
G01*
X199607000Y-131675000D01*
G75*
G02*
X198972000Y-132310000I-635000J0D01*
G01*
X197448000Y-132310000D01*
G75*
G02*
X196813000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X194273000Y-131675000D02*
X194273000Y-125325000D01*
G75*
G02*
X194908000Y-124690000I635000J0D01*
G01*
X196432000Y-124690000D01*
G75*
G02*
X197067000Y-125325000I0J-635000D01*
G01*
X197067000Y-131675000D01*
G75*
G02*
X196432000Y-132310000I-635000J0D01*
G01*
X194908000Y-132310000D01*
G75*
G02*
X194273000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X191733000Y-131675000D02*
X191733000Y-125325000D01*
G75*
G02*
X192368000Y-124690000I635000J0D01*
G01*
X193892000Y-124690000D01*
G75*
G02*
X194527000Y-125325000I0J-635000D01*
G01*
X194527000Y-131675000D01*
G75*
G02*
X193892000Y-132310000I-635000J0D01*
G01*
X192368000Y-132310000D01*
G75*
G02*
X191733000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X189193000Y-131675000D02*
X189193000Y-125325000D01*
G75*
G02*
X189828000Y-124690000I635000J0D01*
G01*
X191352000Y-124690000D01*
G75*
G02*
X191987000Y-125325000I0J-635000D01*
G01*
X191987000Y-131675000D01*
G75*
G02*
X191352000Y-132310000I-635000J0D01*
G01*
X189828000Y-132310000D01*
G75*
G02*
X189193000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X186653000Y-131675000D02*
X186653000Y-125325000D01*
G75*
G02*
X187288000Y-124690000I635000J0D01*
G01*
X188812000Y-124690000D01*
G75*
G02*
X189447000Y-125325000I0J-635000D01*
G01*
X189447000Y-131675000D01*
G75*
G02*
X188812000Y-132310000I-635000J0D01*
G01*
X187288000Y-132310000D01*
G75*
G02*
X186653000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X184113000Y-131675000D02*
X184113000Y-125325000D01*
G75*
G02*
X184748000Y-124690000I635000J0D01*
G01*
X186272000Y-124690000D01*
G75*
G02*
X186907000Y-125325000I0J-635000D01*
G01*
X186907000Y-131675000D01*
G75*
G02*
X186272000Y-132310000I-635000J0D01*
G01*
X184748000Y-132310000D01*
G75*
G02*
X184113000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X181573000Y-131675000D02*
X181573000Y-125325000D01*
G75*
G02*
X182208000Y-124690000I635000J0D01*
G01*
X183732000Y-124690000D01*
G75*
G02*
X184367000Y-125325000I0J-635000D01*
G01*
X184367000Y-131675000D01*
G75*
G02*
X183732000Y-132310000I-635000J0D01*
G01*
X182208000Y-132310000D01*
G75*
G02*
X181573000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X179033000Y-131675000D02*
X179033000Y-125325000D01*
G75*
G02*
X179668000Y-124690000I635000J0D01*
G01*
X181192000Y-124690000D01*
G75*
G02*
X181827000Y-125325000I0J-635000D01*
G01*
X181827000Y-131675000D01*
G75*
G02*
X181192000Y-132310000I-635000J0D01*
G01*
X179668000Y-132310000D01*
G75*
G02*
X179033000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X176493000Y-131675000D02*
X176493000Y-125325000D01*
G75*
G02*
X177128000Y-124690000I635000J0D01*
G01*
X178652000Y-124690000D01*
G75*
G02*
X179287000Y-125325000I0J-635000D01*
G01*
X179287000Y-131675000D01*
G75*
G02*
X178652000Y-132310000I-635000J0D01*
G01*
X177128000Y-132310000D01*
G75*
G02*
X176493000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X173953000Y-131675000D02*
X173953000Y-125325000D01*
G75*
G02*
X174588000Y-124690000I635000J0D01*
G01*
X176112000Y-124690000D01*
G75*
G02*
X176747000Y-125325000I0J-635000D01*
G01*
X176747000Y-131675000D01*
G75*
G02*
X176112000Y-132310000I-635000J0D01*
G01*
X174588000Y-132310000D01*
G75*
G02*
X173953000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X171413000Y-131675000D02*
X171413000Y-125325000D01*
G75*
G02*
X172048000Y-124690000I635000J0D01*
G01*
X173572000Y-124690000D01*
G75*
G02*
X174207000Y-125325000I0J-635000D01*
G01*
X174207000Y-131675000D01*
G75*
G02*
X173572000Y-132310000I-635000J0D01*
G01*
X172048000Y-132310000D01*
G75*
G02*
X171413000Y-131675000I0J635000D01*
G01*
G37*
G36*
G01*
X168873000Y-131675000D02*
X168873000Y-125325000D01*
G75*
G02*
X169508000Y-124690000I635000J0D01*
G01*
X171032000Y-124690000D01*
G75*
G02*
X171667000Y-125325000I0J-635000D01*
G01*
X171667000Y-131675000D01*
G75*
G02*
X171032000Y-132310000I-635000J0D01*
G01*
X169508000Y-132310000D01*
G75*
G02*
X168873000Y-131675000I0J635000D01*
G01*
G37*
D14*
X237000000Y-114500000D03*
X227000000Y-114500000D03*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Paste,Top*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1*
G04 #@! TF.CreationDate,2021-08-07T15:14:50-07:00*
G04 #@! TF.ProjectId,apple2idiot_new,6170706c-6532-4696-9469-6f745f6e6577,1.1*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Other,User*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.1.10-88a1d61d58~88~ubuntu18.04.1) date 2021-08-07 15:14:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,13 @@
M48
; DRILL file {KiCad 5.1.10-88a1d61d58~88~ubuntu18.04.1} date Sat Aug 7 15:15:12 2021
; FORMAT={-:-/ absolute / inch / decimal}
; #@! TF.CreationDate,2021-08-07T15:15:12-07:00
; #@! TF.GenerationSoftware,Kicad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1
; #@! TF.FileFunction,NonPlated,1,2,NPTH
FMAT,2
INCH
%
G90
G05
T0
M30

View File

@ -0,0 +1,160 @@
M48
; DRILL file {KiCad 5.1.10-88a1d61d58~88~ubuntu18.04.1} date Sat Aug 7 15:15:12 2021
; FORMAT={-:-/ absolute / inch / decimal}
; #@! TF.CreationDate,2021-08-07T15:15:12-07:00
; #@! TF.GenerationSoftware,Kicad,Pcbnew,5.1.10-88a1d61d58~88~ubuntu18.04.1
; #@! TF.FileFunction,Plated,1,2,PTH
FMAT,2
INCH
T1C0.0157
T2C0.0315
T3C0.0394
T4C0.0409
%
G90
G05
T1
X5.0742Y-2.712
X5.4809Y-2.712
X5.748Y-2.9094
X5.8898Y-3.5354
X6.3661Y-2.689
X6.4055Y-3.3583
X6.5236Y-2.8622
X6.5709Y-4.2362
X6.752Y-2.6378
X7.0551Y-3.0433
X7.4803Y-2.8071
X7.5276Y-2.8937
X7.6063Y-3.0315
X7.748Y-2.2402
X7.8189Y-2.5709
X7.874Y-2.2402
X8.3543Y-3.2008
T2
X6.3228Y-3.7858
X6.3228Y-4.3858
X6.4228Y-3.7858
X6.4228Y-4.3858
X6.5228Y-3.7858
X6.5228Y-4.3858
X6.6228Y-3.7858
X6.6228Y-4.3858
X6.7228Y-3.7858
X6.7228Y-4.3858
X6.8228Y-3.7858
X6.8228Y-4.3858
X6.9228Y-3.7858
X6.9228Y-4.3858
X7.0228Y-3.7858
X7.0228Y-4.3858
X7.1228Y-3.7858
X7.1228Y-4.3858
X7.2228Y-3.7858
X7.2228Y-4.3858
X7.3228Y-3.7858
X7.3228Y-4.3858
X7.4228Y-3.7858
X7.4228Y-4.3858
X7.5228Y-3.7858
X7.5228Y-4.3858
X7.6228Y-3.7858
X7.6228Y-4.3858
X7.7228Y-3.7858
X7.7228Y-4.3858
X7.8228Y-3.7858
X7.8228Y-4.3858
X7.9228Y-3.7858
X7.9228Y-4.3858
X8.0228Y-3.7858
X8.0228Y-4.3858
X8.1228Y-3.7858
X8.1228Y-4.3858
X8.2228Y-3.7858
X8.2228Y-4.3858
X8.3228Y-3.7858
X8.3228Y-4.3858
X8.4228Y-3.7858
X8.4228Y-4.3858
X8.5228Y-3.7858
X8.5228Y-4.3858
X8.6228Y-3.7858
X8.6228Y-4.3858
T3
X3.3583Y-2.3583
X3.3583Y-2.4583
X3.4583Y-2.3583
X3.4583Y-2.4583
X3.7953Y-2.3504
X3.8953Y-2.3504
X3.9953Y-2.3504
X4.0953Y-2.3504
X4.5276Y-2.3583
X4.5276Y-2.4583
X4.6276Y-2.3583
X4.6276Y-2.4583
X5.1339Y-2.3606
X5.1339Y-2.4606
X5.2339Y-2.3606
X5.2339Y-2.4606
X5.3339Y-2.3606
X5.3339Y-2.4606
X5.4339Y-2.3606
X5.4339Y-2.4606
X5.8803Y-2.3583
X5.8803Y-2.4583
X5.8803Y-2.5583
X5.8803Y-2.6583
X5.8803Y-2.7583
X5.8803Y-2.8583
X5.8803Y-2.9583
X5.9803Y-2.3583
X5.9803Y-2.4583
X5.9803Y-2.5583
X5.9803Y-2.6583
X5.9803Y-2.7583
X5.9803Y-2.8583
X5.9803Y-2.9583
X8.937Y-4.5079
X9.3307Y-4.5079
T4
X7.4189Y-2.378
X7.4189Y-3.378
X7.5189Y-2.378
X7.5189Y-3.378
X7.6189Y-2.378
X7.6189Y-3.378
X7.7189Y-2.378
X7.7189Y-3.378
X7.8189Y-2.378
X7.8189Y-3.378
X7.9189Y-2.378
X7.9189Y-3.378
X8.0189Y-2.378
X8.0189Y-3.378
X8.1189Y-2.378
X8.1189Y-3.378
X8.2189Y-2.378
X8.2189Y-3.378
X8.3189Y-2.378
X8.3189Y-3.378
X8.4189Y-2.378
X8.4189Y-3.378
X8.5189Y-2.378
X8.5189Y-3.378
X8.6189Y-2.378
X8.6189Y-3.378
X8.7189Y-2.378
X8.7189Y-3.378
X8.8189Y-2.378
X8.8189Y-3.378
X8.9189Y-2.378
X8.9189Y-3.378
X9.0189Y-2.378
X9.0189Y-3.378
X9.1189Y-2.378
X9.1189Y-3.378
X9.2189Y-2.378
X9.2189Y-3.378
T0
M30

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
(sym_lib_table
(lib (name kicad-library)(type Legacy)(uri /home/equant/projects/apple_ii/other_peoples_stuff/rharke/kicad-library/kicad-library.lib)(options "")(descr ""))
)

0
card/report.txt Normal file
View File

BIN
card/silkscreen_manual.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 KiB

194
card/silkscreen_manual.svg Normal file
View File

@ -0,0 +1,194 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="220.79556in"
height="123.3563in"
viewBox="0 0 5608.2073 3133.2502"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="silkscreen_manual.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.021875"
inkscape:cx="16299.344"
inkscape:cy="10133.402"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
units="in"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-x="1680"
inkscape:window-y="37"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-2.1978726,2838.2562)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.17499995px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="3.4017859"
y="264.02158"
id="text884"><tspan
sodipodi:role="line"
id="tspan882"
x="3.4017859"
y="266.83072"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.17499995px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332" /></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:314.24227905px;line-height:0.5;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#00ffff;fill-opacity:1;stroke:none;stroke-width:26.18685341"
x="2.1978726"
y="-2754.4583"
id="text888"><tspan
sodipodi:role="line"
id="tspan886"
x="2.1978726"
y="-2754.4583"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341">-- J U M P E R B A N K S --</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-2593.7454"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan980" /><tspan
sodipodi:role="line"
x="2.1978726"
y="-2436.6243"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan1000">J2 determines which decoded address space will be used by the card.</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-2275.9114"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan896" /><tspan
sodipodi:role="line"
x="2.1978726"
y="-2118.7903"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan940"> DEVSEL | 0xC0N0 - 0xC0NF | 16 bytes</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-1958.0774"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan960"> IOSEL | 0xCN00 - 0xCNFF | 256 bytes</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-1797.3645"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan936"> (where N is the number of the card slot used) </tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-1636.6516"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan974" /><tspan
sodipodi:role="line"
x="2.1978726"
y="-1479.5304"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan930">J4 connects the BSYL and BSYR signals to IO34 and IO35 on the ESP.</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-1318.8175"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan958" /><tspan
sodipodi:role="line"
x="2.1978726"
y="-1161.6964"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan978">J5 connects the RAM chip's upper byte address lines (4-7) to the</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-1000.9835"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan946"> ESP. This is needed if IOSEL is used. If DEVSEL is used, you can</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-840.27063"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan950"> disconnect the jumpers on J5 and use the freed pins on the ESP</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-679.5578"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan952"> for general purpose I/O through J6 (pins 1,3,5,7).</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-518.84491"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan982" /><tspan
sodipodi:role="line"
x="2.1978726"
y="-361.72375"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan984">-- P I N H E A D E R B R E A K O U T S --</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="-201.01088"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan988" /><tspan
sodipodi:role="line"
x="2.1978726"
y="-43.889736"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan998">J3 (1)DEVSEL, (2)IOSEL, (3)BSYL, (4)BSYR</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="116.82314"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan992">J6 (1,3,5,7)A4R-A7R, (9)IO34, (11)IO35, (13)SENSOR_VN</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="277.53601"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan994"> (2)IO2, (4)IO0, (6)IO4, (8)RX, (10)TX, (12)N.C., (14)SENSOR_VP</tspan><tspan
sodipodi:role="line"
x="2.1978726"
y="438.2489"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan990" /><tspan
sodipodi:role="line"
x="2.1978726"
y="595.37006"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan954" /><tspan
sodipodi:role="line"
x="2.1978726"
y="752.49121"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:139.66322327px;line-height:0.5;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:26.18685341"
id="tspan956" /></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -18,11 +18,11 @@
<div class="container">
<main class="site-main">
<a class="site-title" href="#">apple2idiot</a>
<a class="site-title" href="/ram">apple2idiot</a>
<h2>IDT7132 RAM</h2>
<h4>Inline Form</h4>
<h4>Write Data</h4>
<form action="/write_byte" method="GET">
<label>Address: <input name="address" placeholder="0"></label>

View File

@ -26,3 +26,32 @@ bin(10)
```
## Jumper and Breakout pins
* Input (to ESP32) only
~IOSEL (from Apple2)
~BSYL (from Apple2 side of IDT7132)
~BSYR (from ESP32 side of IDT7132)
+ Apple II Pins to header
+ IOSEL
+ DEVSEL
+ IOSTROBE
+ IDT7132S Pins to header
+ BSYL
+ BSYR
+ ESP32 Pins to header
+ GPIO 0
+ GPIO 1 (TX)
+ GPIO 2
+ GPIO 3 (RX)
+ GPIO 4
+ GPIO 26
+ GPIO 27
+ GPIO 32
+ GPIO 33
+ GPIO 34 (input only) No pullup, needs resistor?
+ GPIO 35 (input only) No pullup, needs resistor?
+ SENSOR_VP (input only) No pullup, needs resistor?
+ SENSOR_VN (input only) No pullup, needs resistor?