diff --git a/firmware/modularkbd/Core/Src/main.c b/firmware/modularkbd/Core/Src/main.c index 92046843..6892bc44 100644 --- a/firmware/modularkbd/Core/Src/main.c +++ b/firmware/modularkbd/Core/Src/main.c @@ -24,6 +24,7 @@ #include "usart.h" #include "usb_device.h" #include "gpio.h" +#include /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ @@ -33,11 +34,10 @@ /* Private typedef -----------------------------------------------------------*/ /* USER CODE BEGIN PTD */ -// HID (Human Interface Device) report structure typedef struct { - uint8_t MODIFIER; // Modifier keys (e.g., Ctrl, Shift, Alt, GUI/Win) - uint8_t RESERVED; // Reserved for alignment, always set to 0 - uint8_t KEYPRESS[12]; // Array holding up to 12 keycodes being pressed + uint8_t MODIFIER; // Modifier keys (Ctrl, Shift, Alt, Win) + uint8_t RESERVED; // Always 0 + uint8_t KEYPRESS[12]; // Up to 12 keycodes } __attribute__((packed)) HIDReport; @@ -55,6 +55,42 @@ typedef struct { uint8_t KEYPRESS[12]; // Keypress data (similar to HIDReport, but for UART transmission) } __attribute__((packed)) UARTMessage; +#define PACKET_SIZE 12 +#define QUEUE_CAPACITY 32 + +typedef struct { + uint8_t data[QUEUE_CAPACITY][PACKET_SIZE]; + volatile uint8_t head; // accessed in main + volatile uint8_t tail; // accessed in ISR + volatile uint8_t count; // optional, only if needed +} PacketQueue; + +// Initialize +void pq_init(PacketQueue *q){ + q->head = 0; + q->tail = 0; + q->count = 0; +} + +// Called from ISR +bool pq_push(PacketQueue *q, const uint8_t packet[PACKET_SIZE]){ + uint8_t nextTail = (q->tail + 1) % QUEUE_CAPACITY; + if(nextTail == q->head) return false; // queue full + + memcpy(q->data[q->tail], packet, PACKET_SIZE); + q->tail = nextTail; + return true; +} + +// Called from main +bool pq_pop(PacketQueue *q, uint8_t out_packet[PACKET_SIZE]){ + if(q->head == q->tail) return false; // queue empty + + memcpy(out_packet, q->data[q->head], PACKET_SIZE); + q->head = (q->head + 1) % QUEUE_CAPACITY; + return true; +} + /* USER CODE END PTD */ /* Private define ------------------------------------------------------------*/ @@ -72,6 +108,7 @@ typedef struct { #define MODE_ACTIVE 2 #define MODE_DEBUG 3 #define UART_RX_BUFF_SIZE 64 +#define QUEUE_SIZ 8 /* USER CODE END PM */ /* Private variables ---------------------------------------------------------*/ @@ -117,6 +154,8 @@ uint16_t DEPTH = 0; uint16_t PORT_DEPTH[] = {0xFF, 0xFF, 0xFF, 0xFF}; UART_HandleTypeDef* PARENT; UART_HandleTypeDef* PORTS[] = {&huart5, &huart1, &huart2, &huart4}; +uint8_t KEYSTATE_CHANGED_FLAG = 0; +uint8_t KEYSTATE[ROW][COL]; //North East South West UARTMessage reportBuff; @@ -128,6 +167,15 @@ volatile int uartUpdateFlag = 0; // Encoder state (TIM3 in encoder mode on PA6/PA7) volatile int32_t LAST_ENCODER_COUNT = 0; +uint8_t UART_KEYSTATE[4][12]; + + +PacketQueue huart1q; +PacketQueue huart2q; +PacketQueue huart4q; +PacketQueue huart5q; + + /* USER CODE END PV */ /* Private function prototypes -----------------------------------------------*/ @@ -142,6 +190,7 @@ void encoderProcess(void); void resetReport(void); void sendMessage(void); void findBestParent(); +void mergeChild(); /* USER CODE END PFP */ /* Private user code ---------------------------------------------------------*/ @@ -194,9 +243,18 @@ int main(void) HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); + // Start TIM3 encoder (PA6/PA7) so we can read encoder delta HAL_TIM_Encoder_Start(&htim3, TIM_CHANNEL_ALL); LAST_ENCODER_COUNT = __HAL_TIM_GET_COUNTER(&htim3); + + //Prealloc Kestate matrix + memset(KEYSTATE, 0, sizeof(KEYSTATE)); + pq_init(&huart1q); + pq_init(&huart2q); + pq_init(&huart4q); + pq_init(&huart5q); + /* USER CODE END 2 */ /* Infinite loop */ @@ -205,14 +263,18 @@ int main(void) { switch (MODE){ case MODE_ACTIVE: + KEYSTATE_CHANGED_FLAG = 1; resetReport(); matrixScan(); - encoderProcess(); - UARTMessage UARTREPORT; - UARTREPORT.DEPTH = DEPTH; - UARTREPORT.TYPE = 0xEE; - memcpy(UARTREPORT.KEYPRESS, REPORT.KEYPRESS, sizeof(UARTREPORT.KEYPRESS)); - HAL_UART_Transmit_DMA(PARENT, (uint8_t*)&UARTREPORT, sizeof(UARTREPORT)); + mergeChild(); + //encoderProcess(); + if(KEYSTATE_CHANGED_FLAG == 1){ + UARTMessage UARTREPORT; + UARTREPORT.DEPTH = DEPTH; + UARTREPORT.TYPE = 0xEE; + memcpy(UARTREPORT.KEYPRESS, REPORT.KEYPRESS, sizeof(UARTREPORT.KEYPRESS)); + HAL_UART_Transmit_DMA(PARENT, (uint8_t*)&UARTREPORT, sizeof(UARTREPORT)); + } break; case MODE_INACTIVE: @@ -223,6 +285,8 @@ int main(void) }else{ //TODO: Look for a parent module... + + UARTMessage REQ; REQ.DEPTH = 0; REQ.TYPE = 0xFF; //Message code for request is 0xFF @@ -241,14 +305,8 @@ int main(void) case MODE_MAINBOARD: resetReport(); matrixScan();//Something related to this making the key stick. Likely due to race conditions - encoderProcess(); - if(uartUpdateFlag){ - for(int i = 0; i < 12; i++){ - REPORT.KEYPRESS[i] |= uartBuffer.KEYPRESS[i]; - } - uartUpdateFlag = 0; - memset(uartBuffer.KEYPRESS, 0, 12); - } + mergeChild(); + //encoderProcess(); USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*)&REPORT, sizeof(REPORT)); break; @@ -256,7 +314,7 @@ int main(void) break; } - HAL_Delay(100); + HAL_Delay(20); /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ @@ -264,6 +322,31 @@ int main(void) /* USER CODE END 3 */ } +void mergeChild(){ + uint8_t packet[12]; + if (pq_pop(&huart1q, packet)) { + memcpy(UART_KEYSTATE[1], packet, 12); + KEYSTATE_CHANGED_FLAG = 1; + } + if (pq_pop(&huart2q, packet)) { + memcpy(UART_KEYSTATE[2], packet, 12); + KEYSTATE_CHANGED_FLAG = 1; + } + if (pq_pop(&huart4q, packet)) { + memcpy(UART_KEYSTATE[3], packet, 12); + KEYSTATE_CHANGED_FLAG = 1; + } + if (pq_pop(&huart5q, packet)) { + memcpy(UART_KEYSTATE[0], packet, 12); + KEYSTATE_CHANGED_FLAG = 1; + } + for(int i = 0; i < 4; i++){ + for(int j = 0; j < 12; j++){ + REPORT.KEYPRESS[j] |= UART_KEYSTATE[i][j]; + } + } +} + /** * @brief System Clock Configuration * @retval None @@ -404,12 +487,22 @@ void handleUARTMessages(uint8_t *data, UART_HandleTypeDef *sender) { case 0xEE: //TODO: Append message to the thingy - if (MODE != MODE_INACTIVE) { - for (int i = 0; i < sizeof(REPORT.KEYPRESS); i++) { - uartBuffer.KEYPRESS[i] |= msg.KEYPRESS[i]; - } - uartUpdateFlag = 1; - } +// if (MODE != MODE_INACTIVE) { +// for (int i = 0; i < sizeof(REPORT.KEYPRESS); i++) { +// uartBuffer.KEYPRESS[i] |= msg.KEYPRESS[i]; +// } +// uartUpdateFlag = 1; +// } + if(sender == &huart5) { + pq_push(&huart5q, msg.KEYPRESS); + } else if(sender == &huart1) { + pq_push(&huart1q, msg.KEYPRESS); + } else if(sender == &huart2) { + pq_push(&huart2q, msg.KEYPRESS); + } else if(sender == &huart4) { + pq_push(&huart4q, msg.KEYPRESS); + } + break; default: @@ -428,18 +521,26 @@ void addUSBReport(uint8_t usageID){ } void matrixScan(void){ + for (uint8_t col = 0; col < COL; col++){ HAL_GPIO_WritePin(COLUMN_PINS[col].GPIOx, COLUMN_PINS[col].PIN, GPIO_PIN_SET); HAL_Delay(1); for(uint8_t row = 0; row < ROW; row++){ - if(HAL_GPIO_ReadPin(ROW_PINS[row].GPIOx, ROW_PINS[row].PIN)){ - addUSBReport(KEYCODES[row][col]); + uint8_t new_key = HAL_GPIO_ReadPin(ROW_PINS[row].GPIOx, ROW_PINS[row].PIN); + if(new_key != KEYSTATE[row][col]){ + KEYSTATE_CHANGED_FLAG = 1; + KEYSTATE[row][col] = new_key; + } + if(new_key){ + addUSBReport(KEYCODES[row][col]); } } HAL_GPIO_WritePin(COLUMN_PINS[col].GPIOx, COLUMN_PINS[col].PIN, GPIO_PIN_RESET); } + } + // Read TIM3 encoder counter, calculate delta and add corresponding keycodes void encoderProcess(void){ int32_t cnt = (int32_t)__HAL_TIM_GET_COUNTER(&htim3); @@ -466,8 +567,7 @@ void encoderProcess(void){ } void resetReport(void){ - REPORT.MODIFIER = 0; - memset(REPORT.KEYPRESS, 0, sizeof(REPORT.KEYPRESS)); + memset(REPORT.KEYPRESS, 0, sizeof(REPORT.KEYPRESS)); } /* USER CODE END 4 */ diff --git a/firmware/modularkbd/Debug/Core/Src/main.cyclo b/firmware/modularkbd/Debug/Core/Src/main.cyclo index 7d360e6e..ba38a53e 100644 --- a/firmware/modularkbd/Debug/Core/Src/main.cyclo +++ b/firmware/modularkbd/Debug/Core/Src/main.cyclo @@ -1,10 +1,15 @@ -../Core/Src/main.c:153:5:main 8 -../Core/Src/main.c:263:6:SystemClock_Config 3 -../Core/Src/main.c:307:6:HAL_UART_RxCpltCallback 5 -../Core/Src/main.c:326:6:HAL_UART_ErrorCallback 5 -../Core/Src/main.c:344:6:findBestParent 4 -../Core/Src/main.c:365:6:handleUARTMessages 12 -../Core/Src/main.c:414:6:addUSBReport 3 -../Core/Src/main.c:422:6:matrixScan 4 -../Core/Src/main.c:435:6:resetReport 1 -../Core/Src/main.c:446:6:Error_Handler 1 +../Core/Src/main.c:69:6:pq_init 1 +../Core/Src/main.c:76:6:pq_push 2 +../Core/Src/main.c:86:6:pq_pop 2 +../Core/Src/main.c:205:5:main 7 +../Core/Src/main.c:325:6:mergeChild 7 +../Core/Src/main.c:354:6:SystemClock_Config 3 +../Core/Src/main.c:398:6:HAL_UART_RxCpltCallback 5 +../Core/Src/main.c:417:6:HAL_UART_ErrorCallback 5 +../Core/Src/main.c:435:6:findBestParent 4 +../Core/Src/main.c:456:6:handleUARTMessages 14 +../Core/Src/main.c:515:6:addUSBReport 3 +../Core/Src/main.c:523:6:matrixScan 5 +../Core/Src/main.c:545:6:encoderProcess 9 +../Core/Src/main.c:569:6:resetReport 1 +../Core/Src/main.c:579:6:Error_Handler 1 diff --git a/firmware/modularkbd/Debug/Core/Src/main.o b/firmware/modularkbd/Debug/Core/Src/main.o index 7a478507..34f02027 100644 Binary files a/firmware/modularkbd/Debug/Core/Src/main.o and b/firmware/modularkbd/Debug/Core/Src/main.o differ diff --git a/firmware/modularkbd/Debug/Core/Src/main.su b/firmware/modularkbd/Debug/Core/Src/main.su index d7301226..7b391cbc 100644 --- a/firmware/modularkbd/Debug/Core/Src/main.su +++ b/firmware/modularkbd/Debug/Core/Src/main.su @@ -1,10 +1,15 @@ -../Core/Src/main.c:153:5:main 48 static -../Core/Src/main.c:263:6:SystemClock_Config 88 static -../Core/Src/main.c:307:6:HAL_UART_RxCpltCallback 16 static -../Core/Src/main.c:326:6:HAL_UART_ErrorCallback 16 static -../Core/Src/main.c:344:6:findBestParent 24 static -../Core/Src/main.c:365:6:handleUARTMessages 64 static -../Core/Src/main.c:414:6:addUSBReport 24 static -../Core/Src/main.c:422:6:matrixScan 16 static -../Core/Src/main.c:435:6:resetReport 8 static -../Core/Src/main.c:446:6:Error_Handler 4 static,ignoring_inline_asm +../Core/Src/main.c:69:6:pq_init 16 static +../Core/Src/main.c:76:6:pq_push 24 static +../Core/Src/main.c:86:6:pq_pop 16 static +../Core/Src/main.c:205:5:main 40 static +../Core/Src/main.c:325:6:mergeChild 40 static +../Core/Src/main.c:354:6:SystemClock_Config 88 static +../Core/Src/main.c:398:6:HAL_UART_RxCpltCallback 16 static +../Core/Src/main.c:417:6:HAL_UART_ErrorCallback 16 static +../Core/Src/main.c:435:6:findBestParent 24 static +../Core/Src/main.c:456:6:handleUARTMessages 56 static +../Core/Src/main.c:515:6:addUSBReport 24 static +../Core/Src/main.c:523:6:matrixScan 16 static +../Core/Src/main.c:545:6:encoderProcess 32 static +../Core/Src/main.c:569:6:resetReport 8 static +../Core/Src/main.c:579:6:Error_Handler 4 static,ignoring_inline_asm diff --git a/firmware/modularkbd/Debug/Core/Src/subdir.mk b/firmware/modularkbd/Debug/Core/Src/subdir.mk index 8e9c567e..dd64f462 100644 --- a/firmware/modularkbd/Debug/Core/Src/subdir.mk +++ b/firmware/modularkbd/Debug/Core/Src/subdir.mk @@ -7,6 +7,7 @@ C_SRCS += \ ../Core/Src/dma.c \ ../Core/Src/gpio.c \ +../Core/Src/hid_queue.c \ ../Core/Src/i2c.c \ ../Core/Src/main.c \ ../Core/Src/stm32f4xx_hal_msp.c \ @@ -20,6 +21,7 @@ C_SRCS += \ OBJS += \ ./Core/Src/dma.o \ ./Core/Src/gpio.o \ +./Core/Src/hid_queue.o \ ./Core/Src/i2c.o \ ./Core/Src/main.o \ ./Core/Src/stm32f4xx_hal_msp.o \ @@ -33,6 +35,7 @@ OBJS += \ C_DEPS += \ ./Core/Src/dma.d \ ./Core/Src/gpio.d \ +./Core/Src/hid_queue.d \ ./Core/Src/i2c.d \ ./Core/Src/main.d \ ./Core/Src/stm32f4xx_hal_msp.d \ @@ -51,7 +54,7 @@ Core/Src/%.o Core/Src/%.su Core/Src/%.cyclo: ../Core/Src/%.c Core/Src/subdir.mk clean: clean-Core-2f-Src clean-Core-2f-Src: - -$(RM) ./Core/Src/dma.cyclo ./Core/Src/dma.d ./Core/Src/dma.o ./Core/Src/dma.su ./Core/Src/gpio.cyclo ./Core/Src/gpio.d ./Core/Src/gpio.o ./Core/Src/gpio.su ./Core/Src/i2c.cyclo ./Core/Src/i2c.d ./Core/Src/i2c.o ./Core/Src/i2c.su ./Core/Src/main.cyclo ./Core/Src/main.d ./Core/Src/main.o ./Core/Src/main.su ./Core/Src/stm32f4xx_hal_msp.cyclo ./Core/Src/stm32f4xx_hal_msp.d ./Core/Src/stm32f4xx_hal_msp.o ./Core/Src/stm32f4xx_hal_msp.su ./Core/Src/stm32f4xx_it.cyclo ./Core/Src/stm32f4xx_it.d ./Core/Src/stm32f4xx_it.o ./Core/Src/stm32f4xx_it.su ./Core/Src/syscalls.cyclo ./Core/Src/syscalls.d ./Core/Src/syscalls.o ./Core/Src/syscalls.su ./Core/Src/sysmem.cyclo ./Core/Src/sysmem.d ./Core/Src/sysmem.o ./Core/Src/sysmem.su ./Core/Src/system_stm32f4xx.cyclo ./Core/Src/system_stm32f4xx.d ./Core/Src/system_stm32f4xx.o ./Core/Src/system_stm32f4xx.su ./Core/Src/tim.cyclo ./Core/Src/tim.d ./Core/Src/tim.o ./Core/Src/tim.su ./Core/Src/usart.cyclo ./Core/Src/usart.d ./Core/Src/usart.o ./Core/Src/usart.su + -$(RM) ./Core/Src/dma.cyclo ./Core/Src/dma.d ./Core/Src/dma.o ./Core/Src/dma.su ./Core/Src/gpio.cyclo ./Core/Src/gpio.d ./Core/Src/gpio.o ./Core/Src/gpio.su ./Core/Src/hid_queue.cyclo ./Core/Src/hid_queue.d ./Core/Src/hid_queue.o ./Core/Src/hid_queue.su ./Core/Src/i2c.cyclo ./Core/Src/i2c.d ./Core/Src/i2c.o ./Core/Src/i2c.su ./Core/Src/main.cyclo ./Core/Src/main.d ./Core/Src/main.o ./Core/Src/main.su ./Core/Src/stm32f4xx_hal_msp.cyclo ./Core/Src/stm32f4xx_hal_msp.d ./Core/Src/stm32f4xx_hal_msp.o ./Core/Src/stm32f4xx_hal_msp.su ./Core/Src/stm32f4xx_it.cyclo ./Core/Src/stm32f4xx_it.d ./Core/Src/stm32f4xx_it.o ./Core/Src/stm32f4xx_it.su ./Core/Src/syscalls.cyclo ./Core/Src/syscalls.d ./Core/Src/syscalls.o ./Core/Src/syscalls.su ./Core/Src/sysmem.cyclo ./Core/Src/sysmem.d ./Core/Src/sysmem.o ./Core/Src/sysmem.su ./Core/Src/system_stm32f4xx.cyclo ./Core/Src/system_stm32f4xx.d ./Core/Src/system_stm32f4xx.o ./Core/Src/system_stm32f4xx.su ./Core/Src/tim.cyclo ./Core/Src/tim.d ./Core/Src/tim.o ./Core/Src/tim.su ./Core/Src/usart.cyclo ./Core/Src/usart.d ./Core/Src/usart.o ./Core/Src/usart.su .PHONY: clean-Core-2f-Src diff --git a/firmware/modularkbd/Debug/modularkbd.elf b/firmware/modularkbd/Debug/modularkbd.elf index c37a23e7..da77fc7a 100755 Binary files a/firmware/modularkbd/Debug/modularkbd.elf and b/firmware/modularkbd/Debug/modularkbd.elf differ diff --git a/firmware/modularkbd/Debug/modularkbd.list b/firmware/modularkbd/Debug/modularkbd.list index d2602e9f..6165c222 100644 --- a/firmware/modularkbd/Debug/modularkbd.list +++ b/firmware/modularkbd/Debug/modularkbd.list @@ -5,47 +5,47 @@ Sections: Idx Name Size VMA LMA File off Algn 0 .isr_vector 000001c4 08000000 08000000 00001000 2**0 CONTENTS, ALLOC, LOAD, READONLY, DATA - 1 .text 0000a914 080001c4 080001c4 000011c4 2**2 + 1 .text 0000ad08 080001c4 080001c4 000011c4 2**2 CONTENTS, ALLOC, LOAD, READONLY, CODE - 2 .rodata 0000005c 0800aad8 0800aad8 0000bad8 2**2 + 2 .rodata 0000005c 0800aecc 0800aecc 0000becc 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 3 .ARM.extab 00000000 0800ab34 0800ab34 0000c1a0 2**0 + 3 .ARM.extab 00000000 0800af28 0800af28 0000c1a0 2**0 CONTENTS, READONLY - 4 .ARM 00000008 0800ab34 0800ab34 0000bb34 2**2 + 4 .ARM 00000008 0800af28 0800af28 0000bf28 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 5 .preinit_array 00000000 0800ab3c 0800ab3c 0000c1a0 2**0 + 5 .preinit_array 00000000 0800af30 0800af30 0000c1a0 2**0 CONTENTS, ALLOC, LOAD, DATA - 6 .init_array 00000004 0800ab3c 0800ab3c 0000bb3c 2**2 + 6 .init_array 00000004 0800af30 0800af30 0000bf30 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 7 .fini_array 00000004 0800ab40 0800ab40 0000bb40 2**2 + 7 .fini_array 00000004 0800af34 0800af34 0000bf34 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 8 .data 000001a0 20000000 0800ab44 0000c000 2**2 + 8 .data 000001a0 20000000 0800af38 0000c000 2**2 CONTENTS, ALLOC, LOAD, DATA - 9 .bss 00000f6c 200001a0 0800ace4 0000c1a0 2**2 + 9 .bss 000015bc 200001a0 0800b0d8 0000c1a0 2**2 ALLOC - 10 ._user_heap_stack 00000604 2000110c 0800ace4 0000d10c 2**0 + 10 ._user_heap_stack 00000604 2000175c 0800b0d8 0000c75c 2**0 ALLOC 11 .ARM.attributes 00000030 00000000 00000000 0000c1a0 2**0 CONTENTS, READONLY - 12 .debug_info 0001afd8 00000000 00000000 0000c1d0 2**0 + 12 .debug_info 0001b5ee 00000000 00000000 0000c1d0 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 13 .debug_abbrev 00004037 00000000 00000000 000271a8 2**0 + 13 .debug_abbrev 00004090 00000000 00000000 000277be 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 14 .debug_aranges 00001788 00000000 00000000 0002b1e0 2**3 + 14 .debug_aranges 000017b0 00000000 00000000 0002b850 2**3 CONTENTS, READONLY, DEBUGGING, OCTETS - 15 .debug_rnglists 00001246 00000000 00000000 0002c968 2**0 + 15 .debug_rnglists 00001266 00000000 00000000 0002d000 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 16 .debug_macro 00026060 00000000 00000000 0002dbae 2**0 + 16 .debug_macro 0002607b 00000000 00000000 0002e266 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 17 .debug_line 0001e6f9 00000000 00000000 00053c0e 2**0 + 17 .debug_line 0001e8b0 00000000 00000000 000542e1 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 18 .debug_str 000d7edb 00000000 00000000 00072307 2**0 + 18 .debug_str 000d8013 00000000 00000000 00072b91 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 19 .comment 00000043 00000000 00000000 0014a1e2 2**0 + 19 .comment 00000043 00000000 00000000 0014aba4 2**0 CONTENTS, READONLY - 20 .debug_frame 000062c0 00000000 00000000 0014a228 2**2 + 20 .debug_frame 000063a4 00000000 00000000 0014abe8 2**2 CONTENTS, READONLY, DEBUGGING, OCTETS - 21 .debug_line_str 00000062 00000000 00000000 001504e8 2**0 + 21 .debug_line_str 00000062 00000000 00000000 00150f8c 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS Disassembly of section .text: @@ -64,7 +64,7 @@ Disassembly of section .text: 80001da: bd10 pop {r4, pc} 80001dc: 200001a0 .word 0x200001a0 80001e0: 00000000 .word 0x00000000 - 80001e4: 0800aac0 .word 0x0800aac0 + 80001e4: 0800aeb4 .word 0x0800aeb4 080001e8 : 80001e8: b508 push {r3, lr} @@ -76,7 +76,7 @@ Disassembly of section .text: 80001f6: bd08 pop {r3, pc} 80001f8: 00000000 .word 0x00000000 80001fc: 200001a4 .word 0x200001a4 - 8000200: 0800aac0 .word 0x0800aac0 + 8000200: 0800aeb4 .word 0x0800aeb4 08000204 <__aeabi_uldivmod>: 8000204: b953 cbnz r3, 800021c <__aeabi_uldivmod+0x18> @@ -414,73 +414,73 @@ void MX_DMA_Init(void) 800056e: 2200 movs r2, #0 8000570: 2100 movs r1, #0 8000572: 200b movs r0, #11 - 8000574: f001 fc05 bl 8001d82 + 8000574: f001 fd3d bl 8001ff2 HAL_NVIC_EnableIRQ(DMA1_Stream0_IRQn); 8000578: 200b movs r0, #11 - 800057a: f001 fc1e bl 8001dba + 800057a: f001 fd56 bl 800202a /* DMA1_Stream2_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream2_IRQn, 0, 0); 800057e: 2200 movs r2, #0 8000580: 2100 movs r1, #0 8000582: 200d movs r0, #13 - 8000584: f001 fbfd bl 8001d82 + 8000584: f001 fd35 bl 8001ff2 HAL_NVIC_EnableIRQ(DMA1_Stream2_IRQn); 8000588: 200d movs r0, #13 - 800058a: f001 fc16 bl 8001dba + 800058a: f001 fd4e bl 800202a /* DMA1_Stream4_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream4_IRQn, 0, 0); 800058e: 2200 movs r2, #0 8000590: 2100 movs r1, #0 8000592: 200f movs r0, #15 - 8000594: f001 fbf5 bl 8001d82 + 8000594: f001 fd2d bl 8001ff2 HAL_NVIC_EnableIRQ(DMA1_Stream4_IRQn); 8000598: 200f movs r0, #15 - 800059a: f001 fc0e bl 8001dba + 800059a: f001 fd46 bl 800202a /* DMA1_Stream5_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream5_IRQn, 0, 0); 800059e: 2200 movs r2, #0 80005a0: 2100 movs r1, #0 80005a2: 2010 movs r0, #16 - 80005a4: f001 fbed bl 8001d82 + 80005a4: f001 fd25 bl 8001ff2 HAL_NVIC_EnableIRQ(DMA1_Stream5_IRQn); 80005a8: 2010 movs r0, #16 - 80005aa: f001 fc06 bl 8001dba + 80005aa: f001 fd3e bl 800202a /* DMA1_Stream6_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream6_IRQn, 0, 0); 80005ae: 2200 movs r2, #0 80005b0: 2100 movs r1, #0 80005b2: 2011 movs r0, #17 - 80005b4: f001 fbe5 bl 8001d82 + 80005b4: f001 fd1d bl 8001ff2 HAL_NVIC_EnableIRQ(DMA1_Stream6_IRQn); 80005b8: 2011 movs r0, #17 - 80005ba: f001 fbfe bl 8001dba + 80005ba: f001 fd36 bl 800202a /* DMA1_Stream7_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream7_IRQn, 0, 0); 80005be: 2200 movs r2, #0 80005c0: 2100 movs r1, #0 80005c2: 202f movs r0, #47 @ 0x2f - 80005c4: f001 fbdd bl 8001d82 + 80005c4: f001 fd15 bl 8001ff2 HAL_NVIC_EnableIRQ(DMA1_Stream7_IRQn); 80005c8: 202f movs r0, #47 @ 0x2f - 80005ca: f001 fbf6 bl 8001dba + 80005ca: f001 fd2e bl 800202a /* DMA2_Stream2_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA2_Stream2_IRQn, 0, 0); 80005ce: 2200 movs r2, #0 80005d0: 2100 movs r1, #0 80005d2: 203a movs r0, #58 @ 0x3a - 80005d4: f001 fbd5 bl 8001d82 + 80005d4: f001 fd0d bl 8001ff2 HAL_NVIC_EnableIRQ(DMA2_Stream2_IRQn); 80005d8: 203a movs r0, #58 @ 0x3a - 80005da: f001 fbee bl 8001dba + 80005da: f001 fd26 bl 800202a /* DMA2_Stream7_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA2_Stream7_IRQn, 0, 0); 80005de: 2200 movs r2, #0 80005e0: 2100 movs r1, #0 80005e2: 2046 movs r0, #70 @ 0x46 - 80005e4: f001 fbcd bl 8001d82 + 80005e4: f001 fd05 bl 8001ff2 HAL_NVIC_EnableIRQ(DMA2_Stream7_IRQn); 80005e8: 2046 movs r0, #70 @ 0x46 - 80005ea: f001 fbe6 bl 8001dba + 80005ea: f001 fd1e bl 800202a } 80005ee: bf00 nop @@ -582,14 +582,14 @@ void MX_GPIO_Init(void) 800069e: 2200 movs r2, #0 80006a0: f44f 7170 mov.w r1, #960 @ 0x3c0 80006a4: 4822 ldr r0, [pc, #136] @ (8000730 ) - 80006a6: f002 f951 bl 800294c + 80006a6: f002 fa89 bl 8002bbc /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOA, GPIO_PIN_8, GPIO_PIN_RESET); 80006aa: 2200 movs r2, #0 80006ac: f44f 7180 mov.w r1, #256 @ 0x100 80006b0: 4820 ldr r0, [pc, #128] @ (8000734 ) - 80006b2: f002 f94b bl 800294c + 80006b2: f002 fa83 bl 8002bbc /*Configure GPIO pins : PC4 PC5 */ GPIO_InitStruct.Pin = GPIO_PIN_4|GPIO_PIN_5; @@ -605,7 +605,7 @@ void MX_GPIO_Init(void) 80006c2: f107 0314 add.w r3, r7, #20 80006c6: 4619 mov r1, r3 80006c8: 4819 ldr r0, [pc, #100] @ (8000730 ) - 80006ca: f001 ff93 bl 80025f4 + 80006ca: f002 f8cb bl 8002864 /*Configure GPIO pins : PB0 PB1 PB2 PB10 */ GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_10; @@ -621,7 +621,7 @@ void MX_GPIO_Init(void) 80006dc: f107 0314 add.w r3, r7, #20 80006e0: 4619 mov r1, r3 80006e2: 4815 ldr r0, [pc, #84] @ (8000738 ) - 80006e4: f001 ff86 bl 80025f4 + 80006e4: f002 f8be bl 8002864 /*Configure GPIO pins : PC6 PC7 PC8 PC9 */ GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9; @@ -640,7 +640,7 @@ void MX_GPIO_Init(void) 80006fa: f107 0314 add.w r3, r7, #20 80006fe: 4619 mov r1, r3 8000700: 480b ldr r0, [pc, #44] @ (8000730 ) - 8000702: f001 ff77 bl 80025f4 + 8000702: f002 f8af bl 8002864 /*Configure GPIO pin : PA8 */ GPIO_InitStruct.Pin = GPIO_PIN_8; @@ -659,7 +659,7 @@ void MX_GPIO_Init(void) 8000718: f107 0314 add.w r3, r7, #20 800071c: 4619 mov r1, r3 800071e: 4805 ldr r0, [pc, #20] @ (8000734 ) - 8000720: f001 ff68 bl 80025f4 + 8000720: f002 f8a0 bl 8002864 } 8000724: bf00 nop @@ -723,13 +723,13 @@ void MX_I2C1_Init(void) 8000776: 621a str r2, [r3, #32] if (HAL_I2C_Init(&hi2c1) != HAL_OK) 8000778: 4804 ldr r0, [pc, #16] @ (800078c ) - 800077a: f002 f901 bl 8002980 + 800077a: f002 fa39 bl 8002bf0 800077e: 4603 mov r3, r0 8000780: 2b00 cmp r3, #0 8000782: d001 beq.n 8000788 { Error_Handler(); - 8000784: f000 fbba bl 8000efc + 8000784: f000 fcf2 bl 800116c } /* USER CODE BEGIN I2C1_Init 2 */ @@ -806,7 +806,7 @@ void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle) 80007ea: f107 0314 add.w r3, r7, #20 80007ee: 4619 mov r1, r3 80007f0: 480c ldr r0, [pc, #48] @ (8000824 ) - 80007f2: f001 feff bl 80025f4 + 80007f2: f002 f837 bl 8002864 /* I2C1 clock enable */ __HAL_RCC_I2C1_CLK_ENABLE(); @@ -836,27684 +836,28315 @@ void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle) 8000820: 40023800 .word 0x40023800 8000824: 40020400 .word 0x40020400 -08000828
: +08000828 : + volatile uint8_t tail; // accessed in ISR + volatile uint8_t count; // optional, only if needed +} PacketQueue; + +// Initialize +void pq_init(PacketQueue *q){ + 8000828: b480 push {r7} + 800082a: b083 sub sp, #12 + 800082c: af00 add r7, sp, #0 + 800082e: 6078 str r0, [r7, #4] + q->head = 0; + 8000830: 687b ldr r3, [r7, #4] + 8000832: 2200 movs r2, #0 + 8000834: f883 2180 strb.w r2, [r3, #384] @ 0x180 + q->tail = 0; + 8000838: 687b ldr r3, [r7, #4] + 800083a: 2200 movs r2, #0 + 800083c: f883 2181 strb.w r2, [r3, #385] @ 0x181 + q->count = 0; + 8000840: 687b ldr r3, [r7, #4] + 8000842: 2200 movs r2, #0 + 8000844: f883 2182 strb.w r2, [r3, #386] @ 0x182 +} + 8000848: bf00 nop + 800084a: 370c adds r7, #12 + 800084c: 46bd mov sp, r7 + 800084e: f85d 7b04 ldr.w r7, [sp], #4 + 8000852: 4770 bx lr + +08000854 : + +// Called from ISR +bool pq_push(PacketQueue *q, const uint8_t packet[PACKET_SIZE]){ + 8000854: b580 push {r7, lr} + 8000856: b084 sub sp, #16 + 8000858: af00 add r7, sp, #0 + 800085a: 6078 str r0, [r7, #4] + 800085c: 6039 str r1, [r7, #0] + uint8_t nextTail = (q->tail + 1) % QUEUE_CAPACITY; + 800085e: 687b ldr r3, [r7, #4] + 8000860: f893 3181 ldrb.w r3, [r3, #385] @ 0x181 + 8000864: b2db uxtb r3, r3 + 8000866: 3301 adds r3, #1 + 8000868: 425a negs r2, r3 + 800086a: f003 031f and.w r3, r3, #31 + 800086e: f002 021f and.w r2, r2, #31 + 8000872: bf58 it pl + 8000874: 4253 negpl r3, r2 + 8000876: 73fb strb r3, [r7, #15] + if(nextTail == q->head) return false; // queue full + 8000878: 687b ldr r3, [r7, #4] + 800087a: f893 3180 ldrb.w r3, [r3, #384] @ 0x180 + 800087e: b2db uxtb r3, r3 + 8000880: 7bfa ldrb r2, [r7, #15] + 8000882: 429a cmp r2, r3 + 8000884: d101 bne.n 800088a + 8000886: 2300 movs r3, #0 + 8000888: e014 b.n 80008b4 + + memcpy(q->data[q->tail], packet, PACKET_SIZE); + 800088a: 687b ldr r3, [r7, #4] + 800088c: f893 3181 ldrb.w r3, [r3, #385] @ 0x181 + 8000890: b2db uxtb r3, r3 + 8000892: 461a mov r2, r3 + 8000894: 4613 mov r3, r2 + 8000896: 005b lsls r3, r3, #1 + 8000898: 4413 add r3, r2 + 800089a: 009b lsls r3, r3, #2 + 800089c: 687a ldr r2, [r7, #4] + 800089e: 4413 add r3, r2 + 80008a0: 220c movs r2, #12 + 80008a2: 6839 ldr r1, [r7, #0] + 80008a4: 4618 mov r0, r3 + 80008a6: f00a faf7 bl 800ae98 + q->tail = nextTail; + 80008aa: 687b ldr r3, [r7, #4] + 80008ac: 7bfa ldrb r2, [r7, #15] + 80008ae: f883 2181 strb.w r2, [r3, #385] @ 0x181 + return true; + 80008b2: 2301 movs r3, #1 +} + 80008b4: 4618 mov r0, r3 + 80008b6: 3710 adds r7, #16 + 80008b8: 46bd mov sp, r7 + 80008ba: bd80 pop {r7, pc} + +080008bc : + +// Called from main +bool pq_pop(PacketQueue *q, uint8_t out_packet[PACKET_SIZE]){ + 80008bc: b580 push {r7, lr} + 80008be: b082 sub sp, #8 + 80008c0: af00 add r7, sp, #0 + 80008c2: 6078 str r0, [r7, #4] + 80008c4: 6039 str r1, [r7, #0] + if(q->head == q->tail) return false; // queue empty + 80008c6: 687b ldr r3, [r7, #4] + 80008c8: f893 3180 ldrb.w r3, [r3, #384] @ 0x180 + 80008cc: b2da uxtb r2, r3 + 80008ce: 687b ldr r3, [r7, #4] + 80008d0: f893 3181 ldrb.w r3, [r3, #385] @ 0x181 + 80008d4: b2db uxtb r3, r3 + 80008d6: 429a cmp r2, r3 + 80008d8: d101 bne.n 80008de + 80008da: 2300 movs r3, #0 + 80008dc: e020 b.n 8000920 + + memcpy(out_packet, q->data[q->head], PACKET_SIZE); + 80008de: 687b ldr r3, [r7, #4] + 80008e0: f893 3180 ldrb.w r3, [r3, #384] @ 0x180 + 80008e4: b2db uxtb r3, r3 + 80008e6: 461a mov r2, r3 + 80008e8: 4613 mov r3, r2 + 80008ea: 005b lsls r3, r3, #1 + 80008ec: 4413 add r3, r2 + 80008ee: 009b lsls r3, r3, #2 + 80008f0: 687a ldr r2, [r7, #4] + 80008f2: 4413 add r3, r2 + 80008f4: 220c movs r2, #12 + 80008f6: 4619 mov r1, r3 + 80008f8: 6838 ldr r0, [r7, #0] + 80008fa: f00a facd bl 800ae98 + q->head = (q->head + 1) % QUEUE_CAPACITY; + 80008fe: 687b ldr r3, [r7, #4] + 8000900: f893 3180 ldrb.w r3, [r3, #384] @ 0x180 + 8000904: b2db uxtb r3, r3 + 8000906: 3301 adds r3, #1 + 8000908: 425a negs r2, r3 + 800090a: f003 031f and.w r3, r3, #31 + 800090e: f002 021f and.w r2, r2, #31 + 8000912: bf58 it pl + 8000914: 4253 negpl r3, r2 + 8000916: b2da uxtb r2, r3 + 8000918: 687b ldr r3, [r7, #4] + 800091a: f883 2180 strb.w r2, [r3, #384] @ 0x180 + return true; + 800091e: 2301 movs r3, #1 +} + 8000920: 4618 mov r0, r3 + 8000922: 3708 adds r7, #8 + 8000924: 46bd mov sp, r7 + 8000926: bd80 pop {r7, pc} + +08000928
: /** * @brief The application entry point. * @retval int */ int main(void) { - 8000828: b580 push {r7, lr} - 800082a: b08a sub sp, #40 @ 0x28 - 800082c: af00 add r7, sp, #0 + 8000928: b580 push {r7, lr} + 800092a: b088 sub sp, #32 + 800092c: af00 add r7, sp, #0 /* USER CODE END 1 */ /* MCU Configuration--------------------------------------------------------*/ /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 800082e: f001 f937 bl 8001aa0 + 800092e: f001 f9ef bl 8001d10 /* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */ SystemClock_Config(); - 8000832: f000 f8dd bl 80009f0 + 8000932: f000 f96b bl 8000c0c /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ /* Initialize all configured peripherals */ MX_GPIO_Init(); - 8000836: f7ff fee1 bl 80005fc + 8000936: f7ff fe61 bl 80005fc MX_DMA_Init(); - 800083a: f7ff fe79 bl 8000530 + 800093a: f7ff fdf9 bl 8000530 MX_TIM2_Init(); - 800083e: f000 fc4f bl 80010e0 + 800093e: f000 fd07 bl 8001350 MX_TIM3_Init(); - 8000842: f000 fca5 bl 8001190 + 8000942: f000 fd5d bl 8001400 MX_UART4_Init(); - 8000846: f000 fd97 bl 8001378 + 8000946: f000 fe4f bl 80015e8 MX_UART5_Init(); - 800084a: f000 fdbf bl 80013cc + 800094a: f000 fe77 bl 800163c MX_USART1_UART_Init(); - 800084e: f000 fde7 bl 8001420 + 800094e: f000 fe9f bl 8001690 MX_USART2_UART_Init(); - 8000852: f000 fe0f bl 8001474 + 8000952: f000 fec7 bl 80016e4 MX_I2C1_Init(); - 8000856: f7ff ff71 bl 800073c + 8000956: f7ff fef1 bl 800073c MX_USB_DEVICE_Init(); - 800085a: f009 fc57 bl 800a10c + 800095a: f009 fdc3 bl 800a4e4 /* USER CODE BEGIN 2 */ //Enable UART RX DMA for all ports HAL_UART_Receive_DMA(&huart1, (uint8_t*)&RX1Msg, sizeof(UARTMessage)); - 800085e: 2210 movs r2, #16 - 8000860: 4953 ldr r1, [pc, #332] @ (80009b0 ) - 8000862: 4854 ldr r0, [pc, #336] @ (80009b4 ) - 8000864: f005 fa58 bl 8005d18 + 800095e: 2210 movs r2, #16 + 8000960: 4953 ldr r1, [pc, #332] @ (8000ab0 ) + 8000962: 4854 ldr r0, [pc, #336] @ (8000ab4 ) + 8000964: f005 fbc4 bl 80060f0 HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); - 8000868: 2210 movs r2, #16 - 800086a: 4953 ldr r1, [pc, #332] @ (80009b8 ) - 800086c: 4853 ldr r0, [pc, #332] @ (80009bc ) - 800086e: f005 fa53 bl 8005d18 + 8000968: 2210 movs r2, #16 + 800096a: 4953 ldr r1, [pc, #332] @ (8000ab8 ) + 800096c: 4853 ldr r0, [pc, #332] @ (8000abc ) + 800096e: f005 fbbf bl 80060f0 HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); - 8000872: 2210 movs r2, #16 - 8000874: 4952 ldr r1, [pc, #328] @ (80009c0 ) - 8000876: 4853 ldr r0, [pc, #332] @ (80009c4 ) - 8000878: f005 fa4e bl 8005d18 + 8000972: 2210 movs r2, #16 + 8000974: 4952 ldr r1, [pc, #328] @ (8000ac0 ) + 8000976: 4853 ldr r0, [pc, #332] @ (8000ac4 ) + 8000978: f005 fbba bl 80060f0 HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); - 800087c: 2210 movs r2, #16 - 800087e: 4952 ldr r1, [pc, #328] @ (80009c8 ) - 8000880: 4852 ldr r0, [pc, #328] @ (80009cc ) - 8000882: f005 fa49 bl 8005d18 + 800097c: 2210 movs r2, #16 + 800097e: 4952 ldr r1, [pc, #328] @ (8000ac8 ) + 8000980: 4852 ldr r0, [pc, #328] @ (8000acc ) + 8000982: f005 fbb5 bl 80060f0 + + // Start TIM3 encoder (PA6/PA7) so we can read encoder delta + HAL_TIM_Encoder_Start(&htim3, TIM_CHANNEL_ALL); + 8000986: 213c movs r1, #60 @ 0x3c + 8000988: 4851 ldr r0, [pc, #324] @ (8000ad0 ) + 800098a: f004 ff02 bl 8005792 + LAST_ENCODER_COUNT = __HAL_TIM_GET_COUNTER(&htim3); + 800098e: 4b50 ldr r3, [pc, #320] @ (8000ad0 ) + 8000990: 681b ldr r3, [r3, #0] + 8000992: 6a5b ldr r3, [r3, #36] @ 0x24 + 8000994: 461a mov r2, r3 + 8000996: 4b4f ldr r3, [pc, #316] @ (8000ad4 ) + 8000998: 601a str r2, [r3, #0] + + //Prealloc Kestate matrix + memset(KEYSTATE, 0, sizeof(KEYSTATE)); + 800099a: 221e movs r2, #30 + 800099c: 2100 movs r1, #0 + 800099e: 484e ldr r0, [pc, #312] @ (8000ad8 ) + 80009a0: f00a fa4e bl 800ae40 + pq_init(&huart1q); + 80009a4: 484d ldr r0, [pc, #308] @ (8000adc ) + 80009a6: f7ff ff3f bl 8000828 + pq_init(&huart2q); + 80009aa: 484d ldr r0, [pc, #308] @ (8000ae0 ) + 80009ac: f7ff ff3c bl 8000828 + pq_init(&huart4q); + 80009b0: 484c ldr r0, [pc, #304] @ (8000ae4 ) + 80009b2: f7ff ff39 bl 8000828 + pq_init(&huart5q); + 80009b6: 484c ldr r0, [pc, #304] @ (8000ae8 ) + 80009b8: f7ff ff36 bl 8000828 /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) { switch (MODE){ - 8000886: 4b52 ldr r3, [pc, #328] @ (80009d0 ) - 8000888: 781b ldrb r3, [r3, #0] - 800088a: b2db uxtb r3, r3 - 800088c: 2b02 cmp r3, #2 - 800088e: d007 beq.n 80008a0 - 8000890: 2b02 cmp r3, #2 - 8000892: f300 8087 bgt.w 80009a4 - 8000896: 2b00 cmp r3, #0 - 8000898: d01c beq.n 80008d4 - 800089a: 2b01 cmp r3, #1 - 800089c: d051 beq.n 8000942 - } + 80009bc: 4b4b ldr r3, [pc, #300] @ (8000aec ) + 80009be: 781b ldrb r3, [r3, #0] + 80009c0: b2db uxtb r3, r3 + 80009c2: 2b02 cmp r3, #2 + 80009c4: d006 beq.n 80009d4 + 80009c6: 2b02 cmp r3, #2 + 80009c8: dc6a bgt.n 8000aa0 + 80009ca: 2b00 cmp r3, #0 + 80009cc: d025 beq.n 8000a1a + 80009ce: 2b01 cmp r3, #1 + 80009d0: d05a beq.n 8000a88 + //encoderProcess(); USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*)&REPORT, sizeof(REPORT)); break; default: break; - 800089e: e081 b.n 80009a4 + 80009d2: e065 b.n 8000aa0 + KEYSTATE_CHANGED_FLAG = 1; + 80009d4: 4b46 ldr r3, [pc, #280] @ (8000af0 ) + 80009d6: 2201 movs r2, #1 + 80009d8: 701a strb r2, [r3, #0] resetReport(); - 80008a0: f000 fb1c bl 8000edc + 80009da: f000 fbbb bl 8001154 matrixScan(); - 80008a4: f000 fac0 bl 8000e28 - UARTREPORT.DEPTH = DEPTH; - 80008a8: 4b4a ldr r3, [pc, #296] @ (80009d4 ) - 80008aa: 881b ldrh r3, [r3, #0] - 80008ac: 82bb strh r3, [r7, #20] - UARTREPORT.TYPE = 0xEE; - 80008ae: 23ee movs r3, #238 @ 0xee - 80008b0: 82fb strh r3, [r7, #22] - memcpy(UARTREPORT.KEYPRESS, REPORT.KEYPRESS, sizeof(UARTREPORT.KEYPRESS)); - 80008b2: 4a49 ldr r2, [pc, #292] @ (80009d8 ) - 80008b4: f107 0318 add.w r3, r7, #24 - 80008b8: 3202 adds r2, #2 - 80008ba: 6810 ldr r0, [r2, #0] - 80008bc: 6851 ldr r1, [r2, #4] - 80008be: 6892 ldr r2, [r2, #8] - 80008c0: c307 stmia r3!, {r0, r1, r2} - HAL_UART_Transmit_DMA(PARENT, (uint8_t*)&UARTREPORT, sizeof(UARTREPORT)); - 80008c2: 4b46 ldr r3, [pc, #280] @ (80009dc ) - 80008c4: 681b ldr r3, [r3, #0] - 80008c6: f107 0114 add.w r1, r7, #20 - 80008ca: 2210 movs r2, #16 - 80008cc: 4618 mov r0, r3 - 80008ce: f005 f9a7 bl 8005c20 + 80009de: f000 fb41 bl 8001064 + mergeChild(); + 80009e2: f000 f88f bl 8000b04 + if(KEYSTATE_CHANGED_FLAG == 1){ + 80009e6: 4b42 ldr r3, [pc, #264] @ (8000af0 ) + 80009e8: 781b ldrb r3, [r3, #0] + 80009ea: 2b01 cmp r3, #1 + 80009ec: d15a bne.n 8000aa4 + UARTREPORT.DEPTH = DEPTH; + 80009ee: 4b41 ldr r3, [pc, #260] @ (8000af4 ) + 80009f0: 881b ldrh r3, [r3, #0] + 80009f2: 823b strh r3, [r7, #16] + UARTREPORT.TYPE = 0xEE; + 80009f4: 23ee movs r3, #238 @ 0xee + 80009f6: 827b strh r3, [r7, #18] + memcpy(UARTREPORT.KEYPRESS, REPORT.KEYPRESS, sizeof(UARTREPORT.KEYPRESS)); + 80009f8: 4a3f ldr r2, [pc, #252] @ (8000af8 ) + 80009fa: f107 0314 add.w r3, r7, #20 + 80009fe: 3202 adds r2, #2 + 8000a00: 6810 ldr r0, [r2, #0] + 8000a02: 6851 ldr r1, [r2, #4] + 8000a04: 6892 ldr r2, [r2, #8] + 8000a06: c307 stmia r3!, {r0, r1, r2} + HAL_UART_Transmit_DMA(PARENT, (uint8_t*)&UARTREPORT, sizeof(UARTREPORT)); + 8000a08: 4b3c ldr r3, [pc, #240] @ (8000afc ) + 8000a0a: 681b ldr r3, [r3, #0] + 8000a0c: f107 0110 add.w r1, r7, #16 + 8000a10: 2210 movs r2, #16 + 8000a12: 4618 mov r0, r3 + 8000a14: f005 faf0 bl 8005ff8 break; - 80008d2: e068 b.n 80009a6 + 8000a18: e044 b.n 8000aa4 if(hUsbDeviceFS.dev_state == USBD_STATE_CONFIGURED){ - 80008d4: 4b42 ldr r3, [pc, #264] @ (80009e0 ) - 80008d6: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80008da: b2db uxtb r3, r3 - 80008dc: 2b03 cmp r3, #3 - 80008de: d106 bne.n 80008ee + 8000a1a: 4b39 ldr r3, [pc, #228] @ (8000b00 ) + 8000a1c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8000a20: b2db uxtb r3, r3 + 8000a22: 2b03 cmp r3, #3 + 8000a24: d106 bne.n 8000a34 MODE = MODE_MAINBOARD; - 80008e0: 4b3b ldr r3, [pc, #236] @ (80009d0 ) - 80008e2: 2201 movs r2, #1 - 80008e4: 701a strb r2, [r3, #0] + 8000a26: 4b31 ldr r3, [pc, #196] @ (8000aec ) + 8000a28: 2201 movs r2, #1 + 8000a2a: 701a strb r2, [r3, #0] DEPTH = 0; - 80008e6: 4b3b ldr r3, [pc, #236] @ (80009d4 ) - 80008e8: 2200 movs r2, #0 - 80008ea: 801a strh r2, [r3, #0] + 8000a2c: 4b31 ldr r3, [pc, #196] @ (8000af4 ) + 8000a2e: 2200 movs r2, #0 + 8000a30: 801a strh r2, [r3, #0] break; - 80008ec: e05b b.n 80009a6 + 8000a32: e038 b.n 8000aa6 REQ.DEPTH = 0; - 80008ee: 2300 movs r3, #0 - 80008f0: 80bb strh r3, [r7, #4] + 8000a34: 2300 movs r3, #0 + 8000a36: 803b strh r3, [r7, #0] REQ.TYPE = 0xFF; //Message code for request is 0xFF - 80008f2: 23ff movs r3, #255 @ 0xff - 80008f4: 80fb strh r3, [r7, #6] + 8000a38: 23ff movs r3, #255 @ 0xff + 8000a3a: 807b strh r3, [r7, #2] memset(REQ.KEYPRESS, 0, sizeof(REQ.KEYPRESS)); - 80008f6: 1d3b adds r3, r7, #4 - 80008f8: 3304 adds r3, #4 - 80008fa: 220c movs r2, #12 - 80008fc: 2100 movs r1, #0 - 80008fe: 4618 mov r0, r3 - 8000900: f00a f8b2 bl 800aa68 + 8000a3c: 463b mov r3, r7 + 8000a3e: 3304 adds r3, #4 + 8000a40: 220c movs r2, #12 + 8000a42: 2100 movs r1, #0 + 8000a44: 4618 mov r0, r3 + 8000a46: f00a f9fb bl 800ae40 HAL_UART_Transmit_DMA(&huart1, (uint8_t*)&REQ, sizeof(REQ)); - 8000904: 1d3b adds r3, r7, #4 - 8000906: 2210 movs r2, #16 - 8000908: 4619 mov r1, r3 - 800090a: 482a ldr r0, [pc, #168] @ (80009b4 ) - 800090c: f005 f988 bl 8005c20 + 8000a4a: 463b mov r3, r7 + 8000a4c: 2210 movs r2, #16 + 8000a4e: 4619 mov r1, r3 + 8000a50: 4818 ldr r0, [pc, #96] @ (8000ab4 ) + 8000a52: f005 fad1 bl 8005ff8 HAL_UART_Transmit_DMA(&huart2, (uint8_t*)&REQ, sizeof(REQ)); - 8000910: 1d3b adds r3, r7, #4 - 8000912: 2210 movs r2, #16 - 8000914: 4619 mov r1, r3 - 8000916: 4829 ldr r0, [pc, #164] @ (80009bc ) - 8000918: f005 f982 bl 8005c20 + 8000a56: 463b mov r3, r7 + 8000a58: 2210 movs r2, #16 + 8000a5a: 4619 mov r1, r3 + 8000a5c: 4817 ldr r0, [pc, #92] @ (8000abc ) + 8000a5e: f005 facb bl 8005ff8 HAL_UART_Transmit_DMA(&huart4, (uint8_t*)&REQ, sizeof(REQ)); - 800091c: 1d3b adds r3, r7, #4 - 800091e: 2210 movs r2, #16 - 8000920: 4619 mov r1, r3 - 8000922: 4828 ldr r0, [pc, #160] @ (80009c4 ) - 8000924: f005 f97c bl 8005c20 + 8000a62: 463b mov r3, r7 + 8000a64: 2210 movs r2, #16 + 8000a66: 4619 mov r1, r3 + 8000a68: 4816 ldr r0, [pc, #88] @ (8000ac4 ) + 8000a6a: f005 fac5 bl 8005ff8 HAL_UART_Transmit_DMA(&huart5, (uint8_t*)&REQ, sizeof(REQ)); - 8000928: 1d3b adds r3, r7, #4 - 800092a: 2210 movs r2, #16 - 800092c: 4619 mov r1, r3 - 800092e: 4827 ldr r0, [pc, #156] @ (80009cc ) - 8000930: f005 f976 bl 8005c20 + 8000a6e: 463b mov r3, r7 + 8000a70: 2210 movs r2, #16 + 8000a72: 4619 mov r1, r3 + 8000a74: 4815 ldr r0, [pc, #84] @ (8000acc ) + 8000a76: f005 fabf bl 8005ff8 HAL_Delay(500); - 8000934: f44f 70fa mov.w r0, #500 @ 0x1f4 - 8000938: f001 f924 bl 8001b84 + 8000a7a: f44f 70fa mov.w r0, #500 @ 0x1f4 + 8000a7e: f001 f9b9 bl 8001df4 findBestParent(); //So true... - 800093c: f000 f96c bl 8000c18 + 8000a82: f000 f9d7 bl 8000e34 break; - 8000940: e031 b.n 80009a6 + 8000a86: e00e b.n 8000aa6 resetReport(); - 8000942: f000 facb bl 8000edc + 8000a88: f000 fb64 bl 8001154 matrixScan();//Something related to this making the key stick. Likely due to race conditions - 8000946: f000 fa6f bl 8000e28 - if(uartUpdateFlag){ - 800094a: 4b26 ldr r3, [pc, #152] @ (80009e4 ) - 800094c: 681b ldr r3, [r3, #0] - 800094e: 2b00 cmp r3, #0 - 8000950: d022 beq.n 8000998 - for(int i = 0; i < 12; i++){ - 8000952: 2300 movs r3, #0 - 8000954: 627b str r3, [r7, #36] @ 0x24 - 8000956: e014 b.n 8000982 - REPORT.KEYPRESS[i] |= uartBuffer.KEYPRESS[i]; - 8000958: 4a1f ldr r2, [pc, #124] @ (80009d8 ) - 800095a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800095c: 4413 add r3, r2 - 800095e: 3302 adds r3, #2 - 8000960: 781a ldrb r2, [r3, #0] - 8000962: 4921 ldr r1, [pc, #132] @ (80009e8 ) - 8000964: 6a7b ldr r3, [r7, #36] @ 0x24 - 8000966: 440b add r3, r1 - 8000968: 3304 adds r3, #4 - 800096a: 781b ldrb r3, [r3, #0] - 800096c: 4313 orrs r3, r2 - 800096e: b2d9 uxtb r1, r3 - 8000970: 4a19 ldr r2, [pc, #100] @ (80009d8 ) - 8000972: 6a7b ldr r3, [r7, #36] @ 0x24 - 8000974: 4413 add r3, r2 - 8000976: 3302 adds r3, #2 - 8000978: 460a mov r2, r1 - 800097a: 701a strb r2, [r3, #0] - for(int i = 0; i < 12; i++){ - 800097c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800097e: 3301 adds r3, #1 - 8000980: 627b str r3, [r7, #36] @ 0x24 - 8000982: 6a7b ldr r3, [r7, #36] @ 0x24 - 8000984: 2b0b cmp r3, #11 - 8000986: dde7 ble.n 8000958 - uartUpdateFlag = 0; - 8000988: 4b16 ldr r3, [pc, #88] @ (80009e4 ) - 800098a: 2200 movs r2, #0 - 800098c: 601a str r2, [r3, #0] - memset(uartBuffer.KEYPRESS, 0, 12); - 800098e: 220c movs r2, #12 - 8000990: 2100 movs r1, #0 - 8000992: 4816 ldr r0, [pc, #88] @ (80009ec ) - 8000994: f00a f868 bl 800aa68 + 8000a8c: f000 faea bl 8001064 + mergeChild(); + 8000a90: f000 f838 bl 8000b04 USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*)&REPORT, sizeof(REPORT)); - 8000998: 220e movs r2, #14 - 800099a: 490f ldr r1, [pc, #60] @ (80009d8 ) - 800099c: 4810 ldr r0, [pc, #64] @ (80009e0 ) - 800099e: f007 ffe9 bl 8008974 + 8000a94: 220e movs r2, #14 + 8000a96: 4918 ldr r1, [pc, #96] @ (8000af8 ) + 8000a98: 4819 ldr r0, [pc, #100] @ (8000b00 ) + 8000a9a: f008 f957 bl 8008d4c break; - 80009a2: e000 b.n 80009a6 + 8000a9e: e002 b.n 8000aa6 break; - 80009a4: bf00 nop + 8000aa0: bf00 nop + 8000aa2: e000 b.n 8000aa6 + break; + 8000aa4: bf00 nop } - HAL_Delay(100); - 80009a6: 2064 movs r0, #100 @ 0x64 - 80009a8: f001 f8ec bl 8001b84 + HAL_Delay(20); + 8000aa6: 2014 movs r0, #20 + 8000aa8: f001 f9a4 bl 8001df4 switch (MODE){ - 80009ac: e76b b.n 8000886 - 80009ae: bf00 nop - 80009b0: 20000230 .word 0x20000230 - 80009b4: 200003a0 .word 0x200003a0 - 80009b8: 20000240 .word 0x20000240 - 80009bc: 200003e8 .word 0x200003e8 - 80009c0: 20000250 .word 0x20000250 - 80009c4: 20000310 .word 0x20000310 - 80009c8: 20000220 .word 0x20000220 - 80009cc: 20000358 .word 0x20000358 - 80009d0: 20000268 .word 0x20000268 - 80009d4: 20000260 .word 0x20000260 - 80009d8: 20000210 .word 0x20000210 - 80009dc: 20000264 .word 0x20000264 - 80009e0: 20000738 .word 0x20000738 - 80009e4: 2000027c .word 0x2000027c - 80009e8: 2000026c .word 0x2000026c - 80009ec: 20000270 .word 0x20000270 + 8000aac: e786 b.n 80009bc + 8000aae: bf00 nop + 8000ab0: 20000230 .word 0x20000230 + 8000ab4: 200009f0 .word 0x200009f0 + 8000ab8: 20000240 .word 0x20000240 + 8000abc: 20000a38 .word 0x20000a38 + 8000ac0: 20000250 .word 0x20000250 + 8000ac4: 20000960 .word 0x20000960 + 8000ac8: 20000220 .word 0x20000220 + 8000acc: 200009a8 .word 0x200009a8 + 8000ad0: 20000918 .word 0x20000918 + 8000ad4: 2000028c .word 0x2000028c + 8000ad8: 2000026c .word 0x2000026c + 8000adc: 200002c0 .word 0x200002c0 + 8000ae0: 20000444 .word 0x20000444 + 8000ae4: 200005c8 .word 0x200005c8 + 8000ae8: 2000074c .word 0x2000074c + 8000aec: 2000028a .word 0x2000028a + 8000af0: 20000268 .word 0x20000268 + 8000af4: 20000260 .word 0x20000260 + 8000af8: 20000210 .word 0x20000210 + 8000afc: 20000264 .word 0x20000264 + 8000b00: 20000d88 .word 0x20000d88 -080009f0 : +08000b04 : + /* USER CODE BEGIN 3 */ + } + /* USER CODE END 3 */ +} + +void mergeChild(){ + 8000b04: b590 push {r4, r7, lr} + 8000b06: b087 sub sp, #28 + 8000b08: af00 add r7, sp, #0 + uint8_t packet[12]; + if (pq_pop(&huart1q, packet)) { + 8000b0a: 1d3b adds r3, r7, #4 + 8000b0c: 4619 mov r1, r3 + 8000b0e: 4838 ldr r0, [pc, #224] @ (8000bf0 ) + 8000b10: f7ff fed4 bl 80008bc + 8000b14: 4603 mov r3, r0 + 8000b16: 2b00 cmp r3, #0 + 8000b18: d008 beq.n 8000b2c + memcpy(UART_KEYSTATE[1], packet, 12); + 8000b1a: 4b36 ldr r3, [pc, #216] @ (8000bf4 ) + 8000b1c: 330c adds r3, #12 + 8000b1e: 1d3a adds r2, r7, #4 + 8000b20: ca07 ldmia r2, {r0, r1, r2} + 8000b22: e883 0007 stmia.w r3, {r0, r1, r2} + KEYSTATE_CHANGED_FLAG = 1; + 8000b26: 4b34 ldr r3, [pc, #208] @ (8000bf8 ) + 8000b28: 2201 movs r2, #1 + 8000b2a: 701a strb r2, [r3, #0] + } + if (pq_pop(&huart2q, packet)) { + 8000b2c: 1d3b adds r3, r7, #4 + 8000b2e: 4619 mov r1, r3 + 8000b30: 4832 ldr r0, [pc, #200] @ (8000bfc ) + 8000b32: f7ff fec3 bl 80008bc + 8000b36: 4603 mov r3, r0 + 8000b38: 2b00 cmp r3, #0 + 8000b3a: d008 beq.n 8000b4e + memcpy(UART_KEYSTATE[2], packet, 12); + 8000b3c: 4b2d ldr r3, [pc, #180] @ (8000bf4 ) + 8000b3e: 3318 adds r3, #24 + 8000b40: 1d3a adds r2, r7, #4 + 8000b42: ca07 ldmia r2, {r0, r1, r2} + 8000b44: e883 0007 stmia.w r3, {r0, r1, r2} + KEYSTATE_CHANGED_FLAG = 1; + 8000b48: 4b2b ldr r3, [pc, #172] @ (8000bf8 ) + 8000b4a: 2201 movs r2, #1 + 8000b4c: 701a strb r2, [r3, #0] + } + if (pq_pop(&huart4q, packet)) { + 8000b4e: 1d3b adds r3, r7, #4 + 8000b50: 4619 mov r1, r3 + 8000b52: 482b ldr r0, [pc, #172] @ (8000c00 ) + 8000b54: f7ff feb2 bl 80008bc + 8000b58: 4603 mov r3, r0 + 8000b5a: 2b00 cmp r3, #0 + 8000b5c: d008 beq.n 8000b70 + memcpy(UART_KEYSTATE[3], packet, 12); + 8000b5e: 4b25 ldr r3, [pc, #148] @ (8000bf4 ) + 8000b60: 3324 adds r3, #36 @ 0x24 + 8000b62: 1d3a adds r2, r7, #4 + 8000b64: ca07 ldmia r2, {r0, r1, r2} + 8000b66: e883 0007 stmia.w r3, {r0, r1, r2} + KEYSTATE_CHANGED_FLAG = 1; + 8000b6a: 4b23 ldr r3, [pc, #140] @ (8000bf8 ) + 8000b6c: 2201 movs r2, #1 + 8000b6e: 701a strb r2, [r3, #0] + } + if (pq_pop(&huart5q, packet)) { + 8000b70: 1d3b adds r3, r7, #4 + 8000b72: 4619 mov r1, r3 + 8000b74: 4823 ldr r0, [pc, #140] @ (8000c04 ) + 8000b76: f7ff fea1 bl 80008bc + 8000b7a: 4603 mov r3, r0 + 8000b7c: 2b00 cmp r3, #0 + 8000b7e: d009 beq.n 8000b94 + memcpy(UART_KEYSTATE[0], packet, 12); + 8000b80: 4b1c ldr r3, [pc, #112] @ (8000bf4 ) + 8000b82: 461c mov r4, r3 + 8000b84: 1d3b adds r3, r7, #4 + 8000b86: e893 0007 ldmia.w r3, {r0, r1, r2} + 8000b8a: e884 0007 stmia.w r4, {r0, r1, r2} + KEYSTATE_CHANGED_FLAG = 1; + 8000b8e: 4b1a ldr r3, [pc, #104] @ (8000bf8 ) + 8000b90: 2201 movs r2, #1 + 8000b92: 701a strb r2, [r3, #0] + } + for(int i = 0; i < 4; i++){ + 8000b94: 2300 movs r3, #0 + 8000b96: 617b str r3, [r7, #20] + 8000b98: e022 b.n 8000be0 + for(int j = 0; j < 12; j++){ + 8000b9a: 2300 movs r3, #0 + 8000b9c: 613b str r3, [r7, #16] + 8000b9e: e019 b.n 8000bd4 + REPORT.KEYPRESS[j] |= UART_KEYSTATE[i][j]; + 8000ba0: 4a19 ldr r2, [pc, #100] @ (8000c08 ) + 8000ba2: 693b ldr r3, [r7, #16] + 8000ba4: 4413 add r3, r2 + 8000ba6: 3302 adds r3, #2 + 8000ba8: 7819 ldrb r1, [r3, #0] + 8000baa: 4812 ldr r0, [pc, #72] @ (8000bf4 ) + 8000bac: 697a ldr r2, [r7, #20] + 8000bae: 4613 mov r3, r2 + 8000bb0: 005b lsls r3, r3, #1 + 8000bb2: 4413 add r3, r2 + 8000bb4: 009b lsls r3, r3, #2 + 8000bb6: 18c2 adds r2, r0, r3 + 8000bb8: 693b ldr r3, [r7, #16] + 8000bba: 4413 add r3, r2 + 8000bbc: 781b ldrb r3, [r3, #0] + 8000bbe: 430b orrs r3, r1 + 8000bc0: b2d9 uxtb r1, r3 + 8000bc2: 4a11 ldr r2, [pc, #68] @ (8000c08 ) + 8000bc4: 693b ldr r3, [r7, #16] + 8000bc6: 4413 add r3, r2 + 8000bc8: 3302 adds r3, #2 + 8000bca: 460a mov r2, r1 + 8000bcc: 701a strb r2, [r3, #0] + for(int j = 0; j < 12; j++){ + 8000bce: 693b ldr r3, [r7, #16] + 8000bd0: 3301 adds r3, #1 + 8000bd2: 613b str r3, [r7, #16] + 8000bd4: 693b ldr r3, [r7, #16] + 8000bd6: 2b0b cmp r3, #11 + 8000bd8: dde2 ble.n 8000ba0 + for(int i = 0; i < 4; i++){ + 8000bda: 697b ldr r3, [r7, #20] + 8000bdc: 3301 adds r3, #1 + 8000bde: 617b str r3, [r7, #20] + 8000be0: 697b ldr r3, [r7, #20] + 8000be2: 2b03 cmp r3, #3 + 8000be4: ddd9 ble.n 8000b9a + } + } +} + 8000be6: bf00 nop + 8000be8: bf00 nop + 8000bea: 371c adds r7, #28 + 8000bec: 46bd mov sp, r7 + 8000bee: bd90 pop {r4, r7, pc} + 8000bf0: 200002c0 .word 0x200002c0 + 8000bf4: 20000290 .word 0x20000290 + 8000bf8: 20000268 .word 0x20000268 + 8000bfc: 20000444 .word 0x20000444 + 8000c00: 200005c8 .word 0x200005c8 + 8000c04: 2000074c .word 0x2000074c + 8000c08: 20000210 .word 0x20000210 + +08000c0c : /** * @brief System Clock Configuration * @retval None */ void SystemClock_Config(void) { - 80009f0: b580 push {r7, lr} - 80009f2: b094 sub sp, #80 @ 0x50 - 80009f4: af00 add r7, sp, #0 + 8000c0c: b580 push {r7, lr} + 8000c0e: b094 sub sp, #80 @ 0x50 + 8000c10: af00 add r7, sp, #0 RCC_OscInitTypeDef RCC_OscInitStruct = {0}; - 80009f6: f107 031c add.w r3, r7, #28 - 80009fa: 2234 movs r2, #52 @ 0x34 - 80009fc: 2100 movs r1, #0 - 80009fe: 4618 mov r0, r3 - 8000a00: f00a f832 bl 800aa68 + 8000c12: f107 031c add.w r3, r7, #28 + 8000c16: 2234 movs r2, #52 @ 0x34 + 8000c18: 2100 movs r1, #0 + 8000c1a: 4618 mov r0, r3 + 8000c1c: f00a f910 bl 800ae40 RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; - 8000a04: f107 0308 add.w r3, r7, #8 - 8000a08: 2200 movs r2, #0 - 8000a0a: 601a str r2, [r3, #0] - 8000a0c: 605a str r2, [r3, #4] - 8000a0e: 609a str r2, [r3, #8] - 8000a10: 60da str r2, [r3, #12] - 8000a12: 611a str r2, [r3, #16] + 8000c20: f107 0308 add.w r3, r7, #8 + 8000c24: 2200 movs r2, #0 + 8000c26: 601a str r2, [r3, #0] + 8000c28: 605a str r2, [r3, #4] + 8000c2a: 609a str r2, [r3, #8] + 8000c2c: 60da str r2, [r3, #12] + 8000c2e: 611a str r2, [r3, #16] /** Configure the main internal regulator out put voltage */ __HAL_RCC_PWR_CLK_ENABLE(); - 8000a14: 2300 movs r3, #0 - 8000a16: 607b str r3, [r7, #4] - 8000a18: 4b29 ldr r3, [pc, #164] @ (8000ac0 ) - 8000a1a: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000a1c: 4a28 ldr r2, [pc, #160] @ (8000ac0 ) - 8000a1e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8000a22: 6413 str r3, [r2, #64] @ 0x40 - 8000a24: 4b26 ldr r3, [pc, #152] @ (8000ac0 ) - 8000a26: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000a28: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 8000a2c: 607b str r3, [r7, #4] - 8000a2e: 687b ldr r3, [r7, #4] + 8000c30: 2300 movs r3, #0 + 8000c32: 607b str r3, [r7, #4] + 8000c34: 4b29 ldr r3, [pc, #164] @ (8000cdc ) + 8000c36: 6c1b ldr r3, [r3, #64] @ 0x40 + 8000c38: 4a28 ldr r2, [pc, #160] @ (8000cdc ) + 8000c3a: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8000c3e: 6413 str r3, [r2, #64] @ 0x40 + 8000c40: 4b26 ldr r3, [pc, #152] @ (8000cdc ) + 8000c42: 6c1b ldr r3, [r3, #64] @ 0x40 + 8000c44: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 8000c48: 607b str r3, [r7, #4] + 8000c4a: 687b ldr r3, [r7, #4] __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE3); - 8000a30: 2300 movs r3, #0 - 8000a32: 603b str r3, [r7, #0] - 8000a34: 4b23 ldr r3, [pc, #140] @ (8000ac4 ) - 8000a36: 681b ldr r3, [r3, #0] - 8000a38: f423 4340 bic.w r3, r3, #49152 @ 0xc000 - 8000a3c: 4a21 ldr r2, [pc, #132] @ (8000ac4 ) - 8000a3e: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 8000a42: 6013 str r3, [r2, #0] - 8000a44: 4b1f ldr r3, [pc, #124] @ (8000ac4 ) - 8000a46: 681b ldr r3, [r3, #0] - 8000a48: f403 4340 and.w r3, r3, #49152 @ 0xc000 - 8000a4c: 603b str r3, [r7, #0] - 8000a4e: 683b ldr r3, [r7, #0] + 8000c4c: 2300 movs r3, #0 + 8000c4e: 603b str r3, [r7, #0] + 8000c50: 4b23 ldr r3, [pc, #140] @ (8000ce0 ) + 8000c52: 681b ldr r3, [r3, #0] + 8000c54: f423 4340 bic.w r3, r3, #49152 @ 0xc000 + 8000c58: 4a21 ldr r2, [pc, #132] @ (8000ce0 ) + 8000c5a: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 8000c5e: 6013 str r3, [r2, #0] + 8000c60: 4b1f ldr r3, [pc, #124] @ (8000ce0 ) + 8000c62: 681b ldr r3, [r3, #0] + 8000c64: f403 4340 and.w r3, r3, #49152 @ 0xc000 + 8000c68: 603b str r3, [r7, #0] + 8000c6a: 683b ldr r3, [r7, #0] /** Initializes the RCC Oscillators according to the specified parameters * in the RCC_OscInitTypeDef structure. */ RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; - 8000a50: 2301 movs r3, #1 - 8000a52: 61fb str r3, [r7, #28] + 8000c6c: 2301 movs r3, #1 + 8000c6e: 61fb str r3, [r7, #28] RCC_OscInitStruct.HSEState = RCC_HSE_ON; - 8000a54: f44f 3380 mov.w r3, #65536 @ 0x10000 - 8000a58: 623b str r3, [r7, #32] + 8000c70: f44f 3380 mov.w r3, #65536 @ 0x10000 + 8000c74: 623b str r3, [r7, #32] RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; - 8000a5a: 2302 movs r3, #2 - 8000a5c: 637b str r3, [r7, #52] @ 0x34 + 8000c76: 2302 movs r3, #2 + 8000c78: 637b str r3, [r7, #52] @ 0x34 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; - 8000a5e: f44f 0380 mov.w r3, #4194304 @ 0x400000 - 8000a62: 63bb str r3, [r7, #56] @ 0x38 + 8000c7a: f44f 0380 mov.w r3, #4194304 @ 0x400000 + 8000c7e: 63bb str r3, [r7, #56] @ 0x38 RCC_OscInitStruct.PLL.PLLM = 4; - 8000a64: 2304 movs r3, #4 - 8000a66: 63fb str r3, [r7, #60] @ 0x3c + 8000c80: 2304 movs r3, #4 + 8000c82: 63fb str r3, [r7, #60] @ 0x3c RCC_OscInitStruct.PLL.PLLN = 96; - 8000a68: 2360 movs r3, #96 @ 0x60 - 8000a6a: 643b str r3, [r7, #64] @ 0x40 + 8000c84: 2360 movs r3, #96 @ 0x60 + 8000c86: 643b str r3, [r7, #64] @ 0x40 RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; - 8000a6c: 2302 movs r3, #2 - 8000a6e: 647b str r3, [r7, #68] @ 0x44 + 8000c88: 2302 movs r3, #2 + 8000c8a: 647b str r3, [r7, #68] @ 0x44 RCC_OscInitStruct.PLL.PLLQ = 4; - 8000a70: 2304 movs r3, #4 - 8000a72: 64bb str r3, [r7, #72] @ 0x48 + 8000c8c: 2304 movs r3, #4 + 8000c8e: 64bb str r3, [r7, #72] @ 0x48 RCC_OscInitStruct.PLL.PLLR = 2; - 8000a74: 2302 movs r3, #2 - 8000a76: 64fb str r3, [r7, #76] @ 0x4c + 8000c90: 2302 movs r3, #2 + 8000c92: 64fb str r3, [r7, #76] @ 0x4c if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - 8000a78: f107 031c add.w r3, r7, #28 - 8000a7c: 4618 mov r0, r3 - 8000a7e: f004 f9bd bl 8004dfc - 8000a82: 4603 mov r3, r0 - 8000a84: 2b00 cmp r3, #0 - 8000a86: d001 beq.n 8000a8c + 8000c94: f107 031c add.w r3, r7, #28 + 8000c98: 4618 mov r0, r3 + 8000c9a: f004 f9e7 bl 800506c + 8000c9e: 4603 mov r3, r0 + 8000ca0: 2b00 cmp r3, #0 + 8000ca2: d001 beq.n 8000ca8 { Error_Handler(); - 8000a88: f000 fa38 bl 8000efc + 8000ca4: f000 fa62 bl 800116c } /** Initializes the CPU, AHB and APB buses clocks */ RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - 8000a8c: 230f movs r3, #15 - 8000a8e: 60bb str r3, [r7, #8] + 8000ca8: 230f movs r3, #15 + 8000caa: 60bb str r3, [r7, #8] |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; - 8000a90: 2302 movs r3, #2 - 8000a92: 60fb str r3, [r7, #12] + 8000cac: 2302 movs r3, #2 + 8000cae: 60fb str r3, [r7, #12] RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV2; - 8000a94: 2380 movs r3, #128 @ 0x80 - 8000a96: 613b str r3, [r7, #16] + 8000cb0: 2380 movs r3, #128 @ 0x80 + 8000cb2: 613b str r3, [r7, #16] RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; - 8000a98: f44f 5380 mov.w r3, #4096 @ 0x1000 - 8000a9c: 617b str r3, [r7, #20] + 8000cb4: f44f 5380 mov.w r3, #4096 @ 0x1000 + 8000cb8: 617b str r3, [r7, #20] RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - 8000a9e: 2300 movs r3, #0 - 8000aa0: 61bb str r3, [r7, #24] + 8000cba: 2300 movs r3, #0 + 8000cbc: 61bb str r3, [r7, #24] if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_1) != HAL_OK) - 8000aa2: f107 0308 add.w r3, r7, #8 - 8000aa6: 2101 movs r1, #1 - 8000aa8: 4618 mov r0, r3 - 8000aaa: f003 fb33 bl 8004114 - 8000aae: 4603 mov r3, r0 - 8000ab0: 2b00 cmp r3, #0 - 8000ab2: d001 beq.n 8000ab8 + 8000cbe: f107 0308 add.w r3, r7, #8 + 8000cc2: 2101 movs r1, #1 + 8000cc4: 4618 mov r0, r3 + 8000cc6: f003 fb5d bl 8004384 + 8000cca: 4603 mov r3, r0 + 8000ccc: 2b00 cmp r3, #0 + 8000cce: d001 beq.n 8000cd4 { Error_Handler(); - 8000ab4: f000 fa22 bl 8000efc + 8000cd0: f000 fa4c bl 800116c } } - 8000ab8: bf00 nop - 8000aba: 3750 adds r7, #80 @ 0x50 - 8000abc: 46bd mov sp, r7 - 8000abe: bd80 pop {r7, pc} - 8000ac0: 40023800 .word 0x40023800 - 8000ac4: 40007000 .word 0x40007000 + 8000cd4: bf00 nop + 8000cd6: 3750 adds r7, #80 @ 0x50 + 8000cd8: 46bd mov sp, r7 + 8000cda: bd80 pop {r7, pc} + 8000cdc: 40023800 .word 0x40023800 + 8000ce0: 40007000 .word 0x40007000 -08000ac8 : +08000ce4 : /* USER CODE BEGIN 4 */ // UART Message Requests Goes Here void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { - 8000ac8: b580 push {r7, lr} - 8000aca: b082 sub sp, #8 - 8000acc: af00 add r7, sp, #0 - 8000ace: 6078 str r0, [r7, #4] + 8000ce4: b580 push {r7, lr} + 8000ce6: b082 sub sp, #8 + 8000ce8: af00 add r7, sp, #0 + 8000cea: 6078 str r0, [r7, #4] if (huart->Instance == USART1) { - 8000ad0: 687b ldr r3, [r7, #4] - 8000ad2: 681b ldr r3, [r3, #0] - 8000ad4: 4a1e ldr r2, [pc, #120] @ (8000b50 ) - 8000ad6: 4293 cmp r3, r2 - 8000ad8: d109 bne.n 8000aee + 8000cec: 687b ldr r3, [r7, #4] + 8000cee: 681b ldr r3, [r3, #0] + 8000cf0: 4a1e ldr r2, [pc, #120] @ (8000d6c ) + 8000cf2: 4293 cmp r3, r2 + 8000cf4: d109 bne.n 8000d0a handleUARTMessages((uint8_t*)&RX1Msg, &huart1); - 8000ada: 491e ldr r1, [pc, #120] @ (8000b54 ) - 8000adc: 481e ldr r0, [pc, #120] @ (8000b58 ) - 8000ade: f000 f8dd bl 8000c9c + 8000cf6: 491e ldr r1, [pc, #120] @ (8000d70 ) + 8000cf8: 481e ldr r0, [pc, #120] @ (8000d74 ) + 8000cfa: f000 f8dd bl 8000eb8 HAL_UART_Receive_DMA(&huart1, (uint8_t*)&RX1Msg, sizeof(UARTMessage)); - 8000ae2: 2210 movs r2, #16 - 8000ae4: 491c ldr r1, [pc, #112] @ (8000b58 ) - 8000ae6: 481b ldr r0, [pc, #108] @ (8000b54 ) - 8000ae8: f005 f916 bl 8005d18 + 8000cfe: 2210 movs r2, #16 + 8000d00: 491c ldr r1, [pc, #112] @ (8000d74 ) + 8000d02: 481b ldr r0, [pc, #108] @ (8000d70 ) + 8000d04: f005 f9f4 bl 80060f0 } else if (huart->Instance == UART5) { handleUARTMessages((uint8_t*)&RX5Msg, &huart5); HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); } } - 8000aec: e02b b.n 8000b46 + 8000d08: e02b b.n 8000d62 else if (huart->Instance == USART2) { - 8000aee: 687b ldr r3, [r7, #4] - 8000af0: 681b ldr r3, [r3, #0] - 8000af2: 4a1a ldr r2, [pc, #104] @ (8000b5c ) - 8000af4: 4293 cmp r3, r2 - 8000af6: d109 bne.n 8000b0c + 8000d0a: 687b ldr r3, [r7, #4] + 8000d0c: 681b ldr r3, [r3, #0] + 8000d0e: 4a1a ldr r2, [pc, #104] @ (8000d78 ) + 8000d10: 4293 cmp r3, r2 + 8000d12: d109 bne.n 8000d28 handleUARTMessages((uint8_t*)&RX2Msg, &huart2); - 8000af8: 4919 ldr r1, [pc, #100] @ (8000b60 ) - 8000afa: 481a ldr r0, [pc, #104] @ (8000b64 ) - 8000afc: f000 f8ce bl 8000c9c + 8000d14: 4919 ldr r1, [pc, #100] @ (8000d7c ) + 8000d16: 481a ldr r0, [pc, #104] @ (8000d80 ) + 8000d18: f000 f8ce bl 8000eb8 HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); - 8000b00: 2210 movs r2, #16 - 8000b02: 4918 ldr r1, [pc, #96] @ (8000b64 ) - 8000b04: 4816 ldr r0, [pc, #88] @ (8000b60 ) - 8000b06: f005 f907 bl 8005d18 + 8000d1c: 2210 movs r2, #16 + 8000d1e: 4918 ldr r1, [pc, #96] @ (8000d80 ) + 8000d20: 4816 ldr r0, [pc, #88] @ (8000d7c ) + 8000d22: f005 f9e5 bl 80060f0 } - 8000b0a: e01c b.n 8000b46 + 8000d26: e01c b.n 8000d62 else if (huart->Instance == UART4) { - 8000b0c: 687b ldr r3, [r7, #4] - 8000b0e: 681b ldr r3, [r3, #0] - 8000b10: 4a15 ldr r2, [pc, #84] @ (8000b68 ) - 8000b12: 4293 cmp r3, r2 - 8000b14: d109 bne.n 8000b2a + 8000d28: 687b ldr r3, [r7, #4] + 8000d2a: 681b ldr r3, [r3, #0] + 8000d2c: 4a15 ldr r2, [pc, #84] @ (8000d84 ) + 8000d2e: 4293 cmp r3, r2 + 8000d30: d109 bne.n 8000d46 handleUARTMessages((uint8_t*)&RX4Msg, &huart4); - 8000b16: 4915 ldr r1, [pc, #84] @ (8000b6c ) - 8000b18: 4815 ldr r0, [pc, #84] @ (8000b70 ) - 8000b1a: f000 f8bf bl 8000c9c + 8000d32: 4915 ldr r1, [pc, #84] @ (8000d88 ) + 8000d34: 4815 ldr r0, [pc, #84] @ (8000d8c ) + 8000d36: f000 f8bf bl 8000eb8 HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); - 8000b1e: 2210 movs r2, #16 - 8000b20: 4913 ldr r1, [pc, #76] @ (8000b70 ) - 8000b22: 4812 ldr r0, [pc, #72] @ (8000b6c ) - 8000b24: f005 f8f8 bl 8005d18 + 8000d3a: 2210 movs r2, #16 + 8000d3c: 4913 ldr r1, [pc, #76] @ (8000d8c ) + 8000d3e: 4812 ldr r0, [pc, #72] @ (8000d88 ) + 8000d40: f005 f9d6 bl 80060f0 } - 8000b28: e00d b.n 8000b46 + 8000d44: e00d b.n 8000d62 else if (huart->Instance == UART5) { - 8000b2a: 687b ldr r3, [r7, #4] - 8000b2c: 681b ldr r3, [r3, #0] - 8000b2e: 4a11 ldr r2, [pc, #68] @ (8000b74 ) - 8000b30: 4293 cmp r3, r2 - 8000b32: d108 bne.n 8000b46 + 8000d46: 687b ldr r3, [r7, #4] + 8000d48: 681b ldr r3, [r3, #0] + 8000d4a: 4a11 ldr r2, [pc, #68] @ (8000d90 ) + 8000d4c: 4293 cmp r3, r2 + 8000d4e: d108 bne.n 8000d62 handleUARTMessages((uint8_t*)&RX5Msg, &huart5); - 8000b34: 4910 ldr r1, [pc, #64] @ (8000b78 ) - 8000b36: 4811 ldr r0, [pc, #68] @ (8000b7c ) - 8000b38: f000 f8b0 bl 8000c9c + 8000d50: 4910 ldr r1, [pc, #64] @ (8000d94 ) + 8000d52: 4811 ldr r0, [pc, #68] @ (8000d98 ) + 8000d54: f000 f8b0 bl 8000eb8 HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); - 8000b3c: 2210 movs r2, #16 - 8000b3e: 490f ldr r1, [pc, #60] @ (8000b7c ) - 8000b40: 480d ldr r0, [pc, #52] @ (8000b78 ) - 8000b42: f005 f8e9 bl 8005d18 + 8000d58: 2210 movs r2, #16 + 8000d5a: 490f ldr r1, [pc, #60] @ (8000d98 ) + 8000d5c: 480d ldr r0, [pc, #52] @ (8000d94 ) + 8000d5e: f005 f9c7 bl 80060f0 } - 8000b46: bf00 nop - 8000b48: 3708 adds r7, #8 - 8000b4a: 46bd mov sp, r7 - 8000b4c: bd80 pop {r7, pc} - 8000b4e: bf00 nop - 8000b50: 40011000 .word 0x40011000 - 8000b54: 200003a0 .word 0x200003a0 - 8000b58: 20000230 .word 0x20000230 - 8000b5c: 40004400 .word 0x40004400 - 8000b60: 200003e8 .word 0x200003e8 - 8000b64: 20000240 .word 0x20000240 - 8000b68: 40004c00 .word 0x40004c00 - 8000b6c: 20000310 .word 0x20000310 - 8000b70: 20000250 .word 0x20000250 - 8000b74: 40005000 .word 0x40005000 - 8000b78: 20000358 .word 0x20000358 - 8000b7c: 20000220 .word 0x20000220 + 8000d62: bf00 nop + 8000d64: 3708 adds r7, #8 + 8000d66: 46bd mov sp, r7 + 8000d68: bd80 pop {r7, pc} + 8000d6a: bf00 nop + 8000d6c: 40011000 .word 0x40011000 + 8000d70: 200009f0 .word 0x200009f0 + 8000d74: 20000230 .word 0x20000230 + 8000d78: 40004400 .word 0x40004400 + 8000d7c: 20000a38 .word 0x20000a38 + 8000d80: 20000240 .word 0x20000240 + 8000d84: 40004c00 .word 0x40004c00 + 8000d88: 20000960 .word 0x20000960 + 8000d8c: 20000250 .word 0x20000250 + 8000d90: 40005000 .word 0x40005000 + 8000d94: 200009a8 .word 0x200009a8 + 8000d98: 20000220 .word 0x20000220 -08000b80 : +08000d9c : void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart) { - 8000b80: b580 push {r7, lr} - 8000b82: b082 sub sp, #8 - 8000b84: af00 add r7, sp, #0 - 8000b86: 6078 str r0, [r7, #4] + 8000d9c: b580 push {r7, lr} + 8000d9e: b082 sub sp, #8 + 8000da0: af00 add r7, sp, #0 + 8000da2: 6078 str r0, [r7, #4] // Restart DMA on error if (huart->Instance == USART1) { - 8000b88: 687b ldr r3, [r7, #4] - 8000b8a: 681b ldr r3, [r3, #0] - 8000b8c: 4a16 ldr r2, [pc, #88] @ (8000be8 ) - 8000b8e: 4293 cmp r3, r2 - 8000b90: d105 bne.n 8000b9e + 8000da4: 687b ldr r3, [r7, #4] + 8000da6: 681b ldr r3, [r3, #0] + 8000da8: 4a16 ldr r2, [pc, #88] @ (8000e04 ) + 8000daa: 4293 cmp r3, r2 + 8000dac: d105 bne.n 8000dba HAL_UART_Receive_DMA(&huart1, (uint8_t*)&RX1Msg, sizeof(UARTMessage)); - 8000b92: 2210 movs r2, #16 - 8000b94: 4915 ldr r1, [pc, #84] @ (8000bec ) - 8000b96: 4816 ldr r0, [pc, #88] @ (8000bf0 ) - 8000b98: f005 f8be bl 8005d18 + 8000dae: 2210 movs r2, #16 + 8000db0: 4915 ldr r1, [pc, #84] @ (8000e08 ) + 8000db2: 4816 ldr r0, [pc, #88] @ (8000e0c ) + 8000db4: f005 f99c bl 80060f0 HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); } else if (huart->Instance == UART5) { HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); } } - 8000b9c: e01f b.n 8000bde + 8000db8: e01f b.n 8000dfa else if (huart->Instance == USART2) { - 8000b9e: 687b ldr r3, [r7, #4] - 8000ba0: 681b ldr r3, [r3, #0] - 8000ba2: 4a14 ldr r2, [pc, #80] @ (8000bf4 ) - 8000ba4: 4293 cmp r3, r2 - 8000ba6: d105 bne.n 8000bb4 + 8000dba: 687b ldr r3, [r7, #4] + 8000dbc: 681b ldr r3, [r3, #0] + 8000dbe: 4a14 ldr r2, [pc, #80] @ (8000e10 ) + 8000dc0: 4293 cmp r3, r2 + 8000dc2: d105 bne.n 8000dd0 HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); - 8000ba8: 2210 movs r2, #16 - 8000baa: 4913 ldr r1, [pc, #76] @ (8000bf8 ) - 8000bac: 4813 ldr r0, [pc, #76] @ (8000bfc ) - 8000bae: f005 f8b3 bl 8005d18 + 8000dc4: 2210 movs r2, #16 + 8000dc6: 4913 ldr r1, [pc, #76] @ (8000e14 ) + 8000dc8: 4813 ldr r0, [pc, #76] @ (8000e18 ) + 8000dca: f005 f991 bl 80060f0 } - 8000bb2: e014 b.n 8000bde + 8000dce: e014 b.n 8000dfa else if (huart->Instance == UART4) { - 8000bb4: 687b ldr r3, [r7, #4] - 8000bb6: 681b ldr r3, [r3, #0] - 8000bb8: 4a11 ldr r2, [pc, #68] @ (8000c00 ) - 8000bba: 4293 cmp r3, r2 - 8000bbc: d105 bne.n 8000bca + 8000dd0: 687b ldr r3, [r7, #4] + 8000dd2: 681b ldr r3, [r3, #0] + 8000dd4: 4a11 ldr r2, [pc, #68] @ (8000e1c ) + 8000dd6: 4293 cmp r3, r2 + 8000dd8: d105 bne.n 8000de6 HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); - 8000bbe: 2210 movs r2, #16 - 8000bc0: 4910 ldr r1, [pc, #64] @ (8000c04 ) - 8000bc2: 4811 ldr r0, [pc, #68] @ (8000c08 ) - 8000bc4: f005 f8a8 bl 8005d18 + 8000dda: 2210 movs r2, #16 + 8000ddc: 4910 ldr r1, [pc, #64] @ (8000e20 ) + 8000dde: 4811 ldr r0, [pc, #68] @ (8000e24 ) + 8000de0: f005 f986 bl 80060f0 } - 8000bc8: e009 b.n 8000bde + 8000de4: e009 b.n 8000dfa else if (huart->Instance == UART5) { - 8000bca: 687b ldr r3, [r7, #4] - 8000bcc: 681b ldr r3, [r3, #0] - 8000bce: 4a0f ldr r2, [pc, #60] @ (8000c0c ) - 8000bd0: 4293 cmp r3, r2 - 8000bd2: d104 bne.n 8000bde + 8000de6: 687b ldr r3, [r7, #4] + 8000de8: 681b ldr r3, [r3, #0] + 8000dea: 4a0f ldr r2, [pc, #60] @ (8000e28 ) + 8000dec: 4293 cmp r3, r2 + 8000dee: d104 bne.n 8000dfa HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); - 8000bd4: 2210 movs r2, #16 - 8000bd6: 490e ldr r1, [pc, #56] @ (8000c10 ) - 8000bd8: 480e ldr r0, [pc, #56] @ (8000c14 ) - 8000bda: f005 f89d bl 8005d18 + 8000df0: 2210 movs r2, #16 + 8000df2: 490e ldr r1, [pc, #56] @ (8000e2c ) + 8000df4: 480e ldr r0, [pc, #56] @ (8000e30 ) + 8000df6: f005 f97b bl 80060f0 } - 8000bde: bf00 nop - 8000be0: 3708 adds r7, #8 - 8000be2: 46bd mov sp, r7 - 8000be4: bd80 pop {r7, pc} - 8000be6: bf00 nop - 8000be8: 40011000 .word 0x40011000 - 8000bec: 20000230 .word 0x20000230 - 8000bf0: 200003a0 .word 0x200003a0 - 8000bf4: 40004400 .word 0x40004400 - 8000bf8: 20000240 .word 0x20000240 - 8000bfc: 200003e8 .word 0x200003e8 - 8000c00: 40004c00 .word 0x40004c00 - 8000c04: 20000250 .word 0x20000250 - 8000c08: 20000310 .word 0x20000310 - 8000c0c: 40005000 .word 0x40005000 - 8000c10: 20000220 .word 0x20000220 - 8000c14: 20000358 .word 0x20000358 + 8000dfa: bf00 nop + 8000dfc: 3708 adds r7, #8 + 8000dfe: 46bd mov sp, r7 + 8000e00: bd80 pop {r7, pc} + 8000e02: bf00 nop + 8000e04: 40011000 .word 0x40011000 + 8000e08: 20000230 .word 0x20000230 + 8000e0c: 200009f0 .word 0x200009f0 + 8000e10: 40004400 .word 0x40004400 + 8000e14: 20000240 .word 0x20000240 + 8000e18: 20000a38 .word 0x20000a38 + 8000e1c: 40004c00 .word 0x40004c00 + 8000e20: 20000250 .word 0x20000250 + 8000e24: 20000960 .word 0x20000960 + 8000e28: 40005000 .word 0x40005000 + 8000e2c: 20000220 .word 0x20000220 + 8000e30: 200009a8 .word 0x200009a8 -08000c18 : +08000e34 : void findBestParent(){ - 8000c18: b580 push {r7, lr} - 8000c1a: b084 sub sp, #16 - 8000c1c: af00 add r7, sp, #0 + 8000e34: b580 push {r7, lr} + 8000e36: b084 sub sp, #16 + 8000e38: af00 add r7, sp, #0 //Find least depth parent uint16_t least_val = 0xFF; - 8000c1e: 23ff movs r3, #255 @ 0xff - 8000c20: 81fb strh r3, [r7, #14] + 8000e3a: 23ff movs r3, #255 @ 0xff + 8000e3c: 81fb strh r3, [r7, #14] UART_HandleTypeDef* least_port = NULL; - 8000c22: 2300 movs r3, #0 - 8000c24: 60bb str r3, [r7, #8] + 8000e3e: 2300 movs r3, #0 + 8000e40: 60bb str r3, [r7, #8] for(uint8_t i = 0; i < 4; i++){ - 8000c26: 2300 movs r3, #0 - 8000c28: 71fb strb r3, [r7, #7] - 8000c2a: e013 b.n 8000c54 + 8000e42: 2300 movs r3, #0 + 8000e44: 71fb strb r3, [r7, #7] + 8000e46: e013 b.n 8000e70 if(PORT_DEPTH[i]) - 8000c30: f832 3013 ldrh.w r3, [r2, r3, lsl #1] - 8000c34: 89fa ldrh r2, [r7, #14] - 8000c36: 429a cmp r2, r3 - 8000c38: d909 bls.n 8000c4e + 8000e48: 79fb ldrb r3, [r7, #7] + 8000e4a: 4a16 ldr r2, [pc, #88] @ (8000ea4 ) + 8000e4c: f832 3013 ldrh.w r3, [r2, r3, lsl #1] + 8000e50: 89fa ldrh r2, [r7, #14] + 8000e52: 429a cmp r2, r3 + 8000e54: d909 bls.n 8000e6a least_port = PORTS[i]; - 8000c3a: 79fb ldrb r3, [r7, #7] - 8000c3c: 4a13 ldr r2, [pc, #76] @ (8000c8c ) - 8000c3e: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8000c42: 60bb str r3, [r7, #8] + 8000e56: 79fb ldrb r3, [r7, #7] + 8000e58: 4a13 ldr r2, [pc, #76] @ (8000ea8 ) + 8000e5a: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8000e5e: 60bb str r3, [r7, #8] least_val = PORT_DEPTH[i]; - 8000c44: 79fb ldrb r3, [r7, #7] - 8000c46: 4a10 ldr r2, [pc, #64] @ (8000c88 ) - 8000c48: f832 3013 ldrh.w r3, [r2, r3, lsl #1] - 8000c4c: 81fb strh r3, [r7, #14] + 8000e60: 79fb ldrb r3, [r7, #7] + 8000e62: 4a10 ldr r2, [pc, #64] @ (8000ea4 ) + 8000e64: f832 3013 ldrh.w r3, [r2, r3, lsl #1] + 8000e68: 81fb strh r3, [r7, #14] for(uint8_t i = 0; i < 4; i++){ - 8000c4e: 79fb ldrb r3, [r7, #7] - 8000c50: 3301 adds r3, #1 - 8000c52: 71fb strb r3, [r7, #7] - 8000c54: 79fb ldrb r3, [r7, #7] - 8000c56: 2b03 cmp r3, #3 - 8000c58: d9e8 bls.n 8000c2c + 8000e6a: 79fb ldrb r3, [r7, #7] + 8000e6c: 3301 adds r3, #1 + 8000e6e: 71fb strb r3, [r7, #7] + 8000e70: 79fb ldrb r3, [r7, #7] + 8000e72: 2b03 cmp r3, #3 + 8000e74: d9e8 bls.n 8000e48 } } //Assign if valid if(least_val < 0xFF){ - 8000c5a: 89fb ldrh r3, [r7, #14] - 8000c5c: 2bfe cmp r3, #254 @ 0xfe - 8000c5e: d80e bhi.n 8000c7e + 8000e76: 89fb ldrh r3, [r7, #14] + 8000e78: 2bfe cmp r3, #254 @ 0xfe + 8000e7a: d80e bhi.n 8000e9a PARENT = least_port; - 8000c60: 4a0b ldr r2, [pc, #44] @ (8000c90 ) - 8000c62: 68bb ldr r3, [r7, #8] - 8000c64: 6013 str r3, [r2, #0] + 8000e7c: 4a0b ldr r2, [pc, #44] @ (8000eac ) + 8000e7e: 68bb ldr r3, [r7, #8] + 8000e80: 6013 str r3, [r2, #0] DEPTH = least_val + 1; - 8000c66: 89fb ldrh r3, [r7, #14] - 8000c68: 3301 adds r3, #1 - 8000c6a: b29a uxth r2, r3 - 8000c6c: 4b09 ldr r3, [pc, #36] @ (8000c94 ) - 8000c6e: 801a strh r2, [r3, #0] + 8000e82: 89fb ldrh r3, [r7, #14] + 8000e84: 3301 adds r3, #1 + 8000e86: b29a uxth r2, r3 + 8000e88: 4b09 ldr r3, [pc, #36] @ (8000eb0 ) + 8000e8a: 801a strh r2, [r3, #0] MODE = MODE_ACTIVE; - 8000c70: 4b09 ldr r3, [pc, #36] @ (8000c98 ) - 8000c72: 2202 movs r2, #2 - 8000c74: 701a strb r2, [r3, #0] + 8000e8c: 4b09 ldr r3, [pc, #36] @ (8000eb4 ) + 8000e8e: 2202 movs r2, #2 + 8000e90: 701a strb r2, [r3, #0] HAL_Delay(500); - 8000c76: f44f 70fa mov.w r0, #500 @ 0x1f4 - 8000c7a: f000 ff83 bl 8001b84 + 8000e92: f44f 70fa mov.w r0, #500 @ 0x1f4 + 8000e96: f000 ffad bl 8001df4 } } - 8000c7e: bf00 nop - 8000c80: 3710 adds r7, #16 - 8000c82: 46bd mov sp, r7 - 8000c84: bd80 pop {r7, pc} - 8000c86: bf00 nop - 8000c88: 20000078 .word 0x20000078 - 8000c8c: 20000080 .word 0x20000080 - 8000c90: 20000264 .word 0x20000264 - 8000c94: 20000260 .word 0x20000260 - 8000c98: 20000268 .word 0x20000268 + 8000e9a: bf00 nop + 8000e9c: 3710 adds r7, #16 + 8000e9e: 46bd mov sp, r7 + 8000ea0: bd80 pop {r7, pc} + 8000ea2: bf00 nop + 8000ea4: 20000078 .word 0x20000078 + 8000ea8: 20000080 .word 0x20000080 + 8000eac: 20000264 .word 0x20000264 + 8000eb0: 20000260 .word 0x20000260 + 8000eb4: 2000028a .word 0x2000028a -08000c9c : +08000eb8 : // Called when UART RX interrupt completes void handleUARTMessages(uint8_t *data, UART_HandleTypeDef *sender) { - 8000c9c: b590 push {r4, r7, lr} - 8000c9e: b08d sub sp, #52 @ 0x34 - 8000ca0: af00 add r7, sp, #0 - 8000ca2: 6078 str r0, [r7, #4] - 8000ca4: 6039 str r1, [r7, #0] + 8000eb8: b590 push {r4, r7, lr} + 8000eba: b08b sub sp, #44 @ 0x2c + 8000ebc: af00 add r7, sp, #0 + 8000ebe: 6078 str r0, [r7, #4] + 8000ec0: 6039 str r1, [r7, #0] UARTMessage msg; UARTMessage reply; // Parse incoming message into struct memcpy(&msg, data, sizeof(UARTMessage)); - 8000ca6: 687b ldr r3, [r7, #4] - 8000ca8: f107 041c add.w r4, r7, #28 - 8000cac: 6818 ldr r0, [r3, #0] - 8000cae: 6859 ldr r1, [r3, #4] - 8000cb0: 689a ldr r2, [r3, #8] - 8000cb2: 68db ldr r3, [r3, #12] - 8000cb4: c40f stmia r4!, {r0, r1, r2, r3} + 8000ec2: 687b ldr r3, [r7, #4] + 8000ec4: f107 0418 add.w r4, r7, #24 + 8000ec8: 6818 ldr r0, [r3, #0] + 8000eca: 6859 ldr r1, [r3, #4] + 8000ecc: 689a ldr r2, [r3, #8] + 8000ece: 68db ldr r3, [r3, #12] + 8000ed0: c40f stmia r4!, {r0, r1, r2, r3} switch(msg.TYPE) { - 8000cb6: 8bfb ldrh r3, [r7, #30] - 8000cb8: 2bff cmp r3, #255 @ 0xff - 8000cba: d026 beq.n 8000d0a - 8000cbc: 2bff cmp r3, #255 @ 0xff - 8000cbe: dc62 bgt.n 8000d86 - 8000cc0: 2baa cmp r3, #170 @ 0xaa - 8000cc2: d002 beq.n 8000cca - 8000cc4: 2bee cmp r3, #238 @ 0xee - 8000cc6: d03a beq.n 8000d3e - uartUpdateFlag = 1; - } + 8000ed2: 8b7b ldrh r3, [r7, #26] + 8000ed4: 2bff cmp r3, #255 @ 0xff + 8000ed6: d026 beq.n 8000f26 + 8000ed8: 2bff cmp r3, #255 @ 0xff + 8000eda: dc6e bgt.n 8000fba + 8000edc: 2baa cmp r3, #170 @ 0xaa + 8000ede: d002 beq.n 8000ee6 + 8000ee0: 2bee cmp r3, #238 @ 0xee + 8000ee2: d03a beq.n 8000f5a + } + break; default: break; - 8000cc8: e05d b.n 8000d86 + 8000ee4: e069 b.n 8000fba if(sender == &huart5) { - 8000cca: 683b ldr r3, [r7, #0] - 8000ccc: 4a33 ldr r2, [pc, #204] @ (8000d9c ) - 8000cce: 4293 cmp r3, r2 - 8000cd0: d103 bne.n 8000cda + 8000ee6: 683b ldr r3, [r7, #0] + 8000ee8: 4a39 ldr r2, [pc, #228] @ (8000fd0 ) + 8000eea: 4293 cmp r3, r2 + 8000eec: d103 bne.n 8000ef6 PORT_DEPTH[0] = msg.DEPTH; - 8000cd2: 8bba ldrh r2, [r7, #28] - 8000cd4: 4b32 ldr r3, [pc, #200] @ (8000da0 ) - 8000cd6: 801a strh r2, [r3, #0] + 8000eee: 8b3a ldrh r2, [r7, #24] + 8000ef0: 4b38 ldr r3, [pc, #224] @ (8000fd4 ) + 8000ef2: 801a strh r2, [r3, #0] break; - 8000cd8: e057 b.n 8000d8a + 8000ef4: e063 b.n 8000fbe } else if(sender == &huart1) { - 8000cda: 683b ldr r3, [r7, #0] - 8000cdc: 4a31 ldr r2, [pc, #196] @ (8000da4 ) - 8000cde: 4293 cmp r3, r2 - 8000ce0: d103 bne.n 8000cea + 8000ef6: 683b ldr r3, [r7, #0] + 8000ef8: 4a37 ldr r2, [pc, #220] @ (8000fd8 ) + 8000efa: 4293 cmp r3, r2 + 8000efc: d103 bne.n 8000f06 PORT_DEPTH[1] = msg.DEPTH; - 8000ce2: 8bba ldrh r2, [r7, #28] - 8000ce4: 4b2e ldr r3, [pc, #184] @ (8000da0 ) - 8000ce6: 805a strh r2, [r3, #2] + 8000efe: 8b3a ldrh r2, [r7, #24] + 8000f00: 4b34 ldr r3, [pc, #208] @ (8000fd4 ) + 8000f02: 805a strh r2, [r3, #2] break; - 8000ce8: e04f b.n 8000d8a + 8000f04: e05b b.n 8000fbe } else if(sender == &huart2) { - 8000cea: 683b ldr r3, [r7, #0] - 8000cec: 4a2e ldr r2, [pc, #184] @ (8000da8 ) - 8000cee: 4293 cmp r3, r2 - 8000cf0: d103 bne.n 8000cfa + 8000f06: 683b ldr r3, [r7, #0] + 8000f08: 4a34 ldr r2, [pc, #208] @ (8000fdc ) + 8000f0a: 4293 cmp r3, r2 + 8000f0c: d103 bne.n 8000f16 PORT_DEPTH[2] = msg.DEPTH; - 8000cf2: 8bba ldrh r2, [r7, #28] - 8000cf4: 4b2a ldr r3, [pc, #168] @ (8000da0 ) - 8000cf6: 809a strh r2, [r3, #4] + 8000f0e: 8b3a ldrh r2, [r7, #24] + 8000f10: 4b30 ldr r3, [pc, #192] @ (8000fd4 ) + 8000f12: 809a strh r2, [r3, #4] break; - 8000cf8: e047 b.n 8000d8a + 8000f14: e053 b.n 8000fbe } else if(sender == &huart4) { - 8000cfa: 683b ldr r3, [r7, #0] - 8000cfc: 4a2b ldr r2, [pc, #172] @ (8000dac ) - 8000cfe: 4293 cmp r3, r2 - 8000d00: d143 bne.n 8000d8a + 8000f16: 683b ldr r3, [r7, #0] + 8000f18: 4a31 ldr r2, [pc, #196] @ (8000fe0 ) + 8000f1a: 4293 cmp r3, r2 + 8000f1c: d14f bne.n 8000fbe PORT_DEPTH[3] = msg.DEPTH; - 8000d02: 8bba ldrh r2, [r7, #28] - 8000d04: 4b26 ldr r3, [pc, #152] @ (8000da0 ) - 8000d06: 80da strh r2, [r3, #6] + 8000f1e: 8b3a ldrh r2, [r7, #24] + 8000f20: 4b2c ldr r3, [pc, #176] @ (8000fd4 ) + 8000f22: 80da strh r2, [r3, #6] break; - 8000d08: e03f b.n 8000d8a + 8000f24: e04b b.n 8000fbe if(MODE!=MODE_INACTIVE){ - 8000d0a: 4b29 ldr r3, [pc, #164] @ (8000db0 ) - 8000d0c: 781b ldrb r3, [r3, #0] - 8000d0e: b2db uxtb r3, r3 - 8000d10: 2b00 cmp r3, #0 - 8000d12: d03c beq.n 8000d8e + 8000f26: 4b2f ldr r3, [pc, #188] @ (8000fe4 ) + 8000f28: 781b ldrb r3, [r3, #0] + 8000f2a: b2db uxtb r3, r3 + 8000f2c: 2b00 cmp r3, #0 + 8000f2e: d048 beq.n 8000fc2 reply.TYPE = 0xAA; - 8000d14: 23aa movs r3, #170 @ 0xaa - 8000d16: 81fb strh r3, [r7, #14] + 8000f30: 23aa movs r3, #170 @ 0xaa + 8000f32: 817b strh r3, [r7, #10] reply.DEPTH = DEPTH; // use your local DEPTH - 8000d18: 4b26 ldr r3, [pc, #152] @ (8000db4 ) - 8000d1a: 881b ldrh r3, [r3, #0] - 8000d1c: 81bb strh r3, [r7, #12] + 8000f34: 4b2c ldr r3, [pc, #176] @ (8000fe8 ) + 8000f36: 881b ldrh r3, [r3, #0] + 8000f38: 813b strh r3, [r7, #8] memset(reply.KEYPRESS, 0, sizeof(reply.KEYPRESS)); - 8000d1e: f107 030c add.w r3, r7, #12 - 8000d22: 3304 adds r3, #4 - 8000d24: 220c movs r2, #12 - 8000d26: 2100 movs r1, #0 - 8000d28: 4618 mov r0, r3 - 8000d2a: f009 fe9d bl 800aa68 + 8000f3a: f107 0308 add.w r3, r7, #8 + 8000f3e: 3304 adds r3, #4 + 8000f40: 220c movs r2, #12 + 8000f42: 2100 movs r1, #0 + 8000f44: 4618 mov r0, r3 + 8000f46: f009 ff7b bl 800ae40 HAL_UART_Transmit_DMA(sender, (uint8_t*)&reply, sizeof(reply)); - 8000d2e: f107 030c add.w r3, r7, #12 - 8000d32: 2210 movs r2, #16 - 8000d34: 4619 mov r1, r3 - 8000d36: 6838 ldr r0, [r7, #0] - 8000d38: f004 ff72 bl 8005c20 + 8000f4a: f107 0308 add.w r3, r7, #8 + 8000f4e: 2210 movs r2, #16 + 8000f50: 4619 mov r1, r3 + 8000f52: 6838 ldr r0, [r7, #0] + 8000f54: f005 f850 bl 8005ff8 break; - 8000d3c: e027 b.n 8000d8e - if (MODE != MODE_INACTIVE) { - 8000d3e: 4b1c ldr r3, [pc, #112] @ (8000db0 ) - 8000d40: 781b ldrb r3, [r3, #0] - 8000d42: b2db uxtb r3, r3 - 8000d44: 2b00 cmp r3, #0 - 8000d46: d024 beq.n 8000d92 - for (int i = 0; i < sizeof(REPORT.KEYPRESS); i++) { - 8000d48: 2300 movs r3, #0 - 8000d4a: 62fb str r3, [r7, #44] @ 0x2c - 8000d4c: e014 b.n 8000d78 - uartBuffer.KEYPRESS[i] |= msg.KEYPRESS[i]; - 8000d4e: 4a1a ldr r2, [pc, #104] @ (8000db8 ) - 8000d50: 6afb ldr r3, [r7, #44] @ 0x2c - 8000d52: 4413 add r3, r2 - 8000d54: 3304 adds r3, #4 - 8000d56: 781a ldrb r2, [r3, #0] - 8000d58: f107 0120 add.w r1, r7, #32 - 8000d5c: 6afb ldr r3, [r7, #44] @ 0x2c - 8000d5e: 440b add r3, r1 - 8000d60: 781b ldrb r3, [r3, #0] - 8000d62: 4313 orrs r3, r2 - 8000d64: b2d9 uxtb r1, r3 - 8000d66: 4a14 ldr r2, [pc, #80] @ (8000db8 ) - 8000d68: 6afb ldr r3, [r7, #44] @ 0x2c - 8000d6a: 4413 add r3, r2 - 8000d6c: 3304 adds r3, #4 - 8000d6e: 460a mov r2, r1 - 8000d70: 701a strb r2, [r3, #0] - for (int i = 0; i < sizeof(REPORT.KEYPRESS); i++) { - 8000d72: 6afb ldr r3, [r7, #44] @ 0x2c - 8000d74: 3301 adds r3, #1 - 8000d76: 62fb str r3, [r7, #44] @ 0x2c - 8000d78: 6afb ldr r3, [r7, #44] @ 0x2c - 8000d7a: 2b0b cmp r3, #11 - 8000d7c: d9e7 bls.n 8000d4e - uartUpdateFlag = 1; - 8000d7e: 4b0f ldr r3, [pc, #60] @ (8000dbc ) - 8000d80: 2201 movs r2, #1 - 8000d82: 601a str r2, [r3, #0] + 8000f58: e033 b.n 8000fc2 + if(sender == &huart5) { + 8000f5a: 683b ldr r3, [r7, #0] + 8000f5c: 4a1c ldr r2, [pc, #112] @ (8000fd0 ) + 8000f5e: 4293 cmp r3, r2 + 8000f60: d107 bne.n 8000f72 + pq_push(&huart5q, msg.KEYPRESS); + 8000f62: f107 0318 add.w r3, r7, #24 + 8000f66: 3304 adds r3, #4 + 8000f68: 4619 mov r1, r3 + 8000f6a: 4820 ldr r0, [pc, #128] @ (8000fec ) + 8000f6c: f7ff fc72 bl 8000854 break; - 8000d84: e005 b.n 8000d92 + 8000f70: e029 b.n 8000fc6 + } else if(sender == &huart1) { + 8000f72: 683b ldr r3, [r7, #0] + 8000f74: 4a18 ldr r2, [pc, #96] @ (8000fd8 ) + 8000f76: 4293 cmp r3, r2 + 8000f78: d107 bne.n 8000f8a + pq_push(&huart1q, msg.KEYPRESS); + 8000f7a: f107 0318 add.w r3, r7, #24 + 8000f7e: 3304 adds r3, #4 + 8000f80: 4619 mov r1, r3 + 8000f82: 481b ldr r0, [pc, #108] @ (8000ff0 ) + 8000f84: f7ff fc66 bl 8000854 break; - 8000d86: bf00 nop - 8000d88: e004 b.n 8000d94 + 8000f88: e01d b.n 8000fc6 + } else if(sender == &huart2) { + 8000f8a: 683b ldr r3, [r7, #0] + 8000f8c: 4a13 ldr r2, [pc, #76] @ (8000fdc ) + 8000f8e: 4293 cmp r3, r2 + 8000f90: d107 bne.n 8000fa2 + pq_push(&huart2q, msg.KEYPRESS); + 8000f92: f107 0318 add.w r3, r7, #24 + 8000f96: 3304 adds r3, #4 + 8000f98: 4619 mov r1, r3 + 8000f9a: 4816 ldr r0, [pc, #88] @ (8000ff4 ) + 8000f9c: f7ff fc5a bl 8000854 + break; + 8000fa0: e011 b.n 8000fc6 + } else if(sender == &huart4) { + 8000fa2: 683b ldr r3, [r7, #0] + 8000fa4: 4a0e ldr r2, [pc, #56] @ (8000fe0 ) + 8000fa6: 4293 cmp r3, r2 + 8000fa8: d10d bne.n 8000fc6 + pq_push(&huart4q, msg.KEYPRESS); + 8000faa: f107 0318 add.w r3, r7, #24 + 8000fae: 3304 adds r3, #4 + 8000fb0: 4619 mov r1, r3 + 8000fb2: 4811 ldr r0, [pc, #68] @ (8000ff8 ) + 8000fb4: f7ff fc4e bl 8000854 + break; + 8000fb8: e005 b.n 8000fc6 + break; + 8000fba: bf00 nop + 8000fbc: e004 b.n 8000fc8 break; - 8000d8a: bf00 nop - 8000d8c: e002 b.n 8000d94 + 8000fbe: bf00 nop + 8000fc0: e002 b.n 8000fc8 break; - 8000d8e: bf00 nop - 8000d90: e000 b.n 8000d94 + 8000fc2: bf00 nop + 8000fc4: e000 b.n 8000fc8 break; - 8000d92: bf00 nop + 8000fc6: bf00 nop } } - 8000d94: bf00 nop - 8000d96: 3734 adds r7, #52 @ 0x34 - 8000d98: 46bd mov sp, r7 - 8000d9a: bd90 pop {r4, r7, pc} - 8000d9c: 20000358 .word 0x20000358 - 8000da0: 20000078 .word 0x20000078 - 8000da4: 200003a0 .word 0x200003a0 - 8000da8: 200003e8 .word 0x200003e8 - 8000dac: 20000310 .word 0x20000310 - 8000db0: 20000268 .word 0x20000268 - 8000db4: 20000260 .word 0x20000260 - 8000db8: 2000026c .word 0x2000026c - 8000dbc: 2000027c .word 0x2000027c + 8000fc8: bf00 nop + 8000fca: 372c adds r7, #44 @ 0x2c + 8000fcc: 46bd mov sp, r7 + 8000fce: bd90 pop {r4, r7, pc} + 8000fd0: 200009a8 .word 0x200009a8 + 8000fd4: 20000078 .word 0x20000078 + 8000fd8: 200009f0 .word 0x200009f0 + 8000fdc: 20000a38 .word 0x20000a38 + 8000fe0: 20000960 .word 0x20000960 + 8000fe4: 2000028a .word 0x2000028a + 8000fe8: 20000260 .word 0x20000260 + 8000fec: 2000074c .word 0x2000074c + 8000ff0: 200002c0 .word 0x200002c0 + 8000ff4: 20000444 .word 0x20000444 + 8000ff8: 200005c8 .word 0x200005c8 -08000dc0 : +08000ffc : void addUSBReport(uint8_t usageID){ - 8000dc0: b480 push {r7} - 8000dc2: b085 sub sp, #20 - 8000dc4: af00 add r7, sp, #0 - 8000dc6: 4603 mov r3, r0 - 8000dc8: 71fb strb r3, [r7, #7] + 8000ffc: b480 push {r7} + 8000ffe: b085 sub sp, #20 + 8001000: af00 add r7, sp, #0 + 8001002: 4603 mov r3, r0 + 8001004: 71fb strb r3, [r7, #7] if(usageID < 0x04 || usageID > 0x73) return; //Usage ID is out of bounds - 8000dca: 79fb ldrb r3, [r7, #7] - 8000dcc: 2b03 cmp r3, #3 - 8000dce: d922 bls.n 8000e16 - 8000dd0: 79fb ldrb r3, [r7, #7] - 8000dd2: 2b73 cmp r3, #115 @ 0x73 - 8000dd4: d81f bhi.n 8000e16 + 8001006: 79fb ldrb r3, [r7, #7] + 8001008: 2b03 cmp r3, #3 + 800100a: d922 bls.n 8001052 + 800100c: 79fb ldrb r3, [r7, #7] + 800100e: 2b73 cmp r3, #115 @ 0x73 + 8001010: d81f bhi.n 8001052 uint16_t bit_index = usageID - 0x04; //Offset, UsageID starts with 0x04. Gives us the actual value of the bit - 8000dd6: 79fb ldrb r3, [r7, #7] - 8000dd8: b29b uxth r3, r3 - 8000dda: 3b04 subs r3, #4 - 8000ddc: 81fb strh r3, [r7, #14] + 8001012: 79fb ldrb r3, [r7, #7] + 8001014: b29b uxth r3, r3 + 8001016: 3b04 subs r3, #4 + 8001018: 81fb strh r3, [r7, #14] uint8_t byte_index = bit_index/8; //Calculates which byte in the REPORT array - 8000dde: 89fb ldrh r3, [r7, #14] - 8000de0: 08db lsrs r3, r3, #3 - 8000de2: b29b uxth r3, r3 - 8000de4: 737b strb r3, [r7, #13] + 800101a: 89fb ldrh r3, [r7, #14] + 800101c: 08db lsrs r3, r3, #3 + 800101e: b29b uxth r3, r3 + 8001020: 737b strb r3, [r7, #13] uint8_t bit_offset = bit_index%8; //Calculates which bits in the REPORT[byte_index] should be set/unset - 8000de6: 89fb ldrh r3, [r7, #14] - 8000de8: b2db uxtb r3, r3 - 8000dea: f003 0307 and.w r3, r3, #7 - 8000dee: 733b strb r3, [r7, #12] + 8001022: 89fb ldrh r3, [r7, #14] + 8001024: b2db uxtb r3, r3 + 8001026: f003 0307 and.w r3, r3, #7 + 800102a: 733b strb r3, [r7, #12] REPORT.KEYPRESS[byte_index] |= (1 << bit_offset); - 8000df0: 7b7b ldrb r3, [r7, #13] - 8000df2: 4a0c ldr r2, [pc, #48] @ (8000e24 ) - 8000df4: 4413 add r3, r2 - 8000df6: 789b ldrb r3, [r3, #2] - 8000df8: b25a sxtb r2, r3 - 8000dfa: 7b3b ldrb r3, [r7, #12] - 8000dfc: 2101 movs r1, #1 - 8000dfe: fa01 f303 lsl.w r3, r1, r3 - 8000e02: b25b sxtb r3, r3 - 8000e04: 4313 orrs r3, r2 - 8000e06: b25a sxtb r2, r3 - 8000e08: 7b7b ldrb r3, [r7, #13] - 8000e0a: b2d1 uxtb r1, r2 - 8000e0c: 4a05 ldr r2, [pc, #20] @ (8000e24 ) - 8000e0e: 4413 add r3, r2 - 8000e10: 460a mov r2, r1 - 8000e12: 709a strb r2, [r3, #2] - 8000e14: e000 b.n 8000e18 + 800102c: 7b7b ldrb r3, [r7, #13] + 800102e: 4a0c ldr r2, [pc, #48] @ (8001060 ) + 8001030: 4413 add r3, r2 + 8001032: 789b ldrb r3, [r3, #2] + 8001034: b25a sxtb r2, r3 + 8001036: 7b3b ldrb r3, [r7, #12] + 8001038: 2101 movs r1, #1 + 800103a: fa01 f303 lsl.w r3, r1, r3 + 800103e: b25b sxtb r3, r3 + 8001040: 4313 orrs r3, r2 + 8001042: b25a sxtb r2, r3 + 8001044: 7b7b ldrb r3, [r7, #13] + 8001046: b2d1 uxtb r1, r2 + 8001048: 4a05 ldr r2, [pc, #20] @ (8001060 ) + 800104a: 4413 add r3, r2 + 800104c: 460a mov r2, r1 + 800104e: 709a strb r2, [r3, #2] + 8001050: e000 b.n 8001054 if(usageID < 0x04 || usageID > 0x73) return; //Usage ID is out of bounds - 8000e16: bf00 nop + 8001052: bf00 nop } - 8000e18: 3714 adds r7, #20 - 8000e1a: 46bd mov sp, r7 - 8000e1c: f85d 7b04 ldr.w r7, [sp], #4 - 8000e20: 4770 bx lr - 8000e22: bf00 nop - 8000e24: 20000210 .word 0x20000210 + 8001054: 3714 adds r7, #20 + 8001056: 46bd mov sp, r7 + 8001058: f85d 7b04 ldr.w r7, [sp], #4 + 800105c: 4770 bx lr + 800105e: bf00 nop + 8001060: 20000210 .word 0x20000210 -08000e28 : +08001064 : void matrixScan(void){ - 8000e28: b580 push {r7, lr} - 8000e2a: b082 sub sp, #8 - 8000e2c: af00 add r7, sp, #0 + 8001064: b580 push {r7, lr} + 8001066: b082 sub sp, #8 + 8001068: af00 add r7, sp, #0 + for (uint8_t col = 0; col < COL; col++){ - 8000e2e: 2300 movs r3, #0 - 8000e30: 71fb strb r3, [r7, #7] - 8000e32: e044 b.n 8000ebe + 800106a: 2300 movs r3, #0 + 800106c: 71fb strb r3, [r7, #7] + 800106e: e05f b.n 8001130 HAL_GPIO_WritePin(COLUMN_PINS[col].GPIOx, COLUMN_PINS[col].PIN, GPIO_PIN_SET); - 8000e34: 79fb ldrb r3, [r7, #7] - 8000e36: 4a26 ldr r2, [pc, #152] @ (8000ed0 ) - 8000e38: f852 0033 ldr.w r0, [r2, r3, lsl #3] - 8000e3c: 79fb ldrb r3, [r7, #7] - 8000e3e: 4a24 ldr r2, [pc, #144] @ (8000ed0 ) - 8000e40: 00db lsls r3, r3, #3 - 8000e42: 4413 add r3, r2 - 8000e44: 889b ldrh r3, [r3, #4] - 8000e46: 2201 movs r2, #1 - 8000e48: 4619 mov r1, r3 - 8000e4a: f001 fd7f bl 800294c + 8001070: 79fb ldrb r3, [r7, #7] + 8001072: 4a33 ldr r2, [pc, #204] @ (8001140 ) + 8001074: f852 0033 ldr.w r0, [r2, r3, lsl #3] + 8001078: 79fb ldrb r3, [r7, #7] + 800107a: 4a31 ldr r2, [pc, #196] @ (8001140 ) + 800107c: 00db lsls r3, r3, #3 + 800107e: 4413 add r3, r2 + 8001080: 889b ldrh r3, [r3, #4] + 8001082: 2201 movs r2, #1 + 8001084: 4619 mov r1, r3 + 8001086: f001 fd99 bl 8002bbc HAL_Delay(1); - 8000e4e: 2001 movs r0, #1 - 8000e50: f000 fe98 bl 8001b84 + 800108a: 2001 movs r0, #1 + 800108c: f000 feb2 bl 8001df4 for(uint8_t row = 0; row < ROW; row++){ - 8000e54: 2300 movs r3, #0 - 8000e56: 71bb strb r3, [r7, #6] - 8000e58: e01e b.n 8000e98 - if(HAL_GPIO_ReadPin(ROW_PINS[row].GPIOx, ROW_PINS[row].PIN)){ - 8000e5a: 79bb ldrb r3, [r7, #6] - 8000e5c: 4a1d ldr r2, [pc, #116] @ (8000ed4 ) - 8000e5e: f852 2033 ldr.w r2, [r2, r3, lsl #3] - 8000e62: 79bb ldrb r3, [r7, #6] - 8000e64: 491b ldr r1, [pc, #108] @ (8000ed4 ) - 8000e66: 00db lsls r3, r3, #3 - 8000e68: 440b add r3, r1 - 8000e6a: 889b ldrh r3, [r3, #4] - 8000e6c: 4619 mov r1, r3 - 8000e6e: 4610 mov r0, r2 - 8000e70: f001 fd54 bl 800291c - 8000e74: 4603 mov r3, r0 - 8000e76: 2b00 cmp r3, #0 - 8000e78: d00b beq.n 8000e92 - addUSBReport(KEYCODES[row][col]); - 8000e7a: 79ba ldrb r2, [r7, #6] - 8000e7c: 79f9 ldrb r1, [r7, #7] - 8000e7e: 4816 ldr r0, [pc, #88] @ (8000ed8 ) - 8000e80: 4613 mov r3, r2 - 8000e82: 009b lsls r3, r3, #2 - 8000e84: 4413 add r3, r2 - 8000e86: 4403 add r3, r0 - 8000e88: 440b add r3, r1 - 8000e8a: 781b ldrb r3, [r3, #0] - 8000e8c: 4618 mov r0, r3 - 8000e8e: f7ff ff97 bl 8000dc0 + 8001090: 2300 movs r3, #0 + 8001092: 71bb strb r3, [r7, #6] + 8001094: e039 b.n 800110a + uint8_t new_key = HAL_GPIO_ReadPin(ROW_PINS[row].GPIOx, ROW_PINS[row].PIN); + 8001096: 79bb ldrb r3, [r7, #6] + 8001098: 4a2a ldr r2, [pc, #168] @ (8001144 ) + 800109a: f852 2033 ldr.w r2, [r2, r3, lsl #3] + 800109e: 79bb ldrb r3, [r7, #6] + 80010a0: 4928 ldr r1, [pc, #160] @ (8001144 ) + 80010a2: 00db lsls r3, r3, #3 + 80010a4: 440b add r3, r1 + 80010a6: 889b ldrh r3, [r3, #4] + 80010a8: 4619 mov r1, r3 + 80010aa: 4610 mov r0, r2 + 80010ac: f001 fd6e bl 8002b8c + 80010b0: 4603 mov r3, r0 + 80010b2: 717b strb r3, [r7, #5] + if(new_key != KEYSTATE[row][col]){ + 80010b4: 79ba ldrb r2, [r7, #6] + 80010b6: 79f9 ldrb r1, [r7, #7] + 80010b8: 4823 ldr r0, [pc, #140] @ (8001148 ) + 80010ba: 4613 mov r3, r2 + 80010bc: 009b lsls r3, r3, #2 + 80010be: 4413 add r3, r2 + 80010c0: 4403 add r3, r0 + 80010c2: 440b add r3, r1 + 80010c4: 781b ldrb r3, [r3, #0] + 80010c6: 797a ldrb r2, [r7, #5] + 80010c8: 429a cmp r2, r3 + 80010ca: d00c beq.n 80010e6 + KEYSTATE_CHANGED_FLAG = 1; + 80010cc: 4b1f ldr r3, [pc, #124] @ (800114c ) + 80010ce: 2201 movs r2, #1 + 80010d0: 701a strb r2, [r3, #0] + KEYSTATE[row][col] = new_key; + 80010d2: 79ba ldrb r2, [r7, #6] + 80010d4: 79f9 ldrb r1, [r7, #7] + 80010d6: 481c ldr r0, [pc, #112] @ (8001148 ) + 80010d8: 4613 mov r3, r2 + 80010da: 009b lsls r3, r3, #2 + 80010dc: 4413 add r3, r2 + 80010de: 4403 add r3, r0 + 80010e0: 440b add r3, r1 + 80010e2: 797a ldrb r2, [r7, #5] + 80010e4: 701a strb r2, [r3, #0] + } + if(new_key){ + 80010e6: 797b ldrb r3, [r7, #5] + 80010e8: 2b00 cmp r3, #0 + 80010ea: d00b beq.n 8001104 + addUSBReport(KEYCODES[row][col]); + 80010ec: 79ba ldrb r2, [r7, #6] + 80010ee: 79f9 ldrb r1, [r7, #7] + 80010f0: 4817 ldr r0, [pc, #92] @ (8001150 ) + 80010f2: 4613 mov r3, r2 + 80010f4: 009b lsls r3, r3, #2 + 80010f6: 4413 add r3, r2 + 80010f8: 4403 add r3, r0 + 80010fa: 440b add r3, r1 + 80010fc: 781b ldrb r3, [r3, #0] + 80010fe: 4618 mov r0, r3 + 8001100: f7ff ff7c bl 8000ffc for(uint8_t row = 0; row < ROW; row++){ - 8000e92: 79bb ldrb r3, [r7, #6] - 8000e94: 3301 adds r3, #1 - 8000e96: 71bb strb r3, [r7, #6] - 8000e98: 79bb ldrb r3, [r7, #6] - 8000e9a: 2b05 cmp r3, #5 - 8000e9c: d9dd bls.n 8000e5a + 8001104: 79bb ldrb r3, [r7, #6] + 8001106: 3301 adds r3, #1 + 8001108: 71bb strb r3, [r7, #6] + 800110a: 79bb ldrb r3, [r7, #6] + 800110c: 2b05 cmp r3, #5 + 800110e: d9c2 bls.n 8001096 } } HAL_GPIO_WritePin(COLUMN_PINS[col].GPIOx, COLUMN_PINS[col].PIN, GPIO_PIN_RESET); - 8000e9e: 79fb ldrb r3, [r7, #7] - 8000ea0: 4a0b ldr r2, [pc, #44] @ (8000ed0 ) - 8000ea2: f852 0033 ldr.w r0, [r2, r3, lsl #3] - 8000ea6: 79fb ldrb r3, [r7, #7] - 8000ea8: 4a09 ldr r2, [pc, #36] @ (8000ed0 ) - 8000eaa: 00db lsls r3, r3, #3 - 8000eac: 4413 add r3, r2 - 8000eae: 889b ldrh r3, [r3, #4] - 8000eb0: 2200 movs r2, #0 - 8000eb2: 4619 mov r1, r3 - 8000eb4: f001 fd4a bl 800294c + 8001110: 79fb ldrb r3, [r7, #7] + 8001112: 4a0b ldr r2, [pc, #44] @ (8001140 ) + 8001114: f852 0033 ldr.w r0, [r2, r3, lsl #3] + 8001118: 79fb ldrb r3, [r7, #7] + 800111a: 4a09 ldr r2, [pc, #36] @ (8001140 ) + 800111c: 00db lsls r3, r3, #3 + 800111e: 4413 add r3, r2 + 8001120: 889b ldrh r3, [r3, #4] + 8001122: 2200 movs r2, #0 + 8001124: 4619 mov r1, r3 + 8001126: f001 fd49 bl 8002bbc for (uint8_t col = 0; col < COL; col++){ - 8000eb8: 79fb ldrb r3, [r7, #7] - 8000eba: 3301 adds r3, #1 - 8000ebc: 71fb strb r3, [r7, #7] - 8000ebe: 79fb ldrb r3, [r7, #7] - 8000ec0: 2b04 cmp r3, #4 - 8000ec2: d9b7 bls.n 8000e34 + 800112a: 79fb ldrb r3, [r7, #7] + 800112c: 3301 adds r3, #1 + 800112e: 71fb strb r3, [r7, #7] + 8001130: 79fb ldrb r3, [r7, #7] + 8001132: 2b04 cmp r3, #4 + 8001134: d99c bls.n 8001070 } -} - 8000ec4: bf00 nop - 8000ec6: bf00 nop - 8000ec8: 3708 adds r7, #8 - 8000eca: 46bd mov sp, r7 - 8000ecc: bd80 pop {r7, pc} - 8000ece: bf00 nop - 8000ed0: 20000030 .word 0x20000030 - 8000ed4: 20000000 .word 0x20000000 - 8000ed8: 20000058 .word 0x20000058 -08000edc : +} + 8001136: bf00 nop + 8001138: bf00 nop + 800113a: 3708 adds r7, #8 + 800113c: 46bd mov sp, r7 + 800113e: bd80 pop {r7, pc} + 8001140: 20000030 .word 0x20000030 + 8001144: 20000000 .word 0x20000000 + 8001148: 2000026c .word 0x2000026c + 800114c: 20000268 .word 0x20000268 + 8001150: 20000058 .word 0x20000058 + +08001154 : + } + } + LAST_ENCODER_COUNT = cnt; +} void resetReport(void){ - 8000edc: b580 push {r7, lr} - 8000ede: af00 add r7, sp, #0 - REPORT.MODIFIER = 0; - 8000ee0: 4b04 ldr r3, [pc, #16] @ (8000ef4 ) - 8000ee2: 2200 movs r2, #0 - 8000ee4: 701a strb r2, [r3, #0] - memset(REPORT.KEYPRESS, 0, sizeof(REPORT.KEYPRESS)); - 8000ee6: 220c movs r2, #12 - 8000ee8: 2100 movs r1, #0 - 8000eea: 4803 ldr r0, [pc, #12] @ (8000ef8 ) - 8000eec: f009 fdbc bl 800aa68 + 8001154: b580 push {r7, lr} + 8001156: af00 add r7, sp, #0 + memset(REPORT.KEYPRESS, 0, sizeof(REPORT.KEYPRESS)); + 8001158: 220c movs r2, #12 + 800115a: 2100 movs r1, #0 + 800115c: 4802 ldr r0, [pc, #8] @ (8001168 ) + 800115e: f009 fe6f bl 800ae40 } - 8000ef0: bf00 nop - 8000ef2: bd80 pop {r7, pc} - 8000ef4: 20000210 .word 0x20000210 - 8000ef8: 20000212 .word 0x20000212 + 8001162: bf00 nop + 8001164: bd80 pop {r7, pc} + 8001166: bf00 nop + 8001168: 20000212 .word 0x20000212 -08000efc : +0800116c : /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { - 8000efc: b480 push {r7} - 8000efe: af00 add r7, sp, #0 + 800116c: b480 push {r7} + 800116e: af00 add r7, sp, #0 \details Disables IRQ interrupts by setting special-purpose register PRIMASK. Can only be executed in Privileged modes. */ __STATIC_FORCEINLINE void __disable_irq(void) { __ASM volatile ("cpsid i" : : : "memory"); - 8000f00: b672 cpsid i + 8001170: b672 cpsid i } - 8000f02: bf00 nop + 8001172: bf00 nop /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ __disable_irq(); while (1) - 8000f04: bf00 nop - 8000f06: e7fd b.n 8000f04 + 8001174: bf00 nop + 8001176: e7fd b.n 8001174 -08000f08 : +08001178 : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 8000f08: b480 push {r7} - 8000f0a: b083 sub sp, #12 - 8000f0c: af00 add r7, sp, #0 + 8001178: b480 push {r7} + 800117a: b083 sub sp, #12 + 800117c: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 8000f0e: 2300 movs r3, #0 - 8000f10: 607b str r3, [r7, #4] - 8000f12: 4b10 ldr r3, [pc, #64] @ (8000f54 ) - 8000f14: 6c5b ldr r3, [r3, #68] @ 0x44 - 8000f16: 4a0f ldr r2, [pc, #60] @ (8000f54 ) - 8000f18: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 8000f1c: 6453 str r3, [r2, #68] @ 0x44 - 8000f1e: 4b0d ldr r3, [pc, #52] @ (8000f54 ) - 8000f20: 6c5b ldr r3, [r3, #68] @ 0x44 - 8000f22: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 8000f26: 607b str r3, [r7, #4] - 8000f28: 687b ldr r3, [r7, #4] + 800117e: 2300 movs r3, #0 + 8001180: 607b str r3, [r7, #4] + 8001182: 4b10 ldr r3, [pc, #64] @ (80011c4 ) + 8001184: 6c5b ldr r3, [r3, #68] @ 0x44 + 8001186: 4a0f ldr r2, [pc, #60] @ (80011c4 ) + 8001188: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 800118c: 6453 str r3, [r2, #68] @ 0x44 + 800118e: 4b0d ldr r3, [pc, #52] @ (80011c4 ) + 8001190: 6c5b ldr r3, [r3, #68] @ 0x44 + 8001192: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 8001196: 607b str r3, [r7, #4] + 8001198: 687b ldr r3, [r7, #4] __HAL_RCC_PWR_CLK_ENABLE(); - 8000f2a: 2300 movs r3, #0 - 8000f2c: 603b str r3, [r7, #0] - 8000f2e: 4b09 ldr r3, [pc, #36] @ (8000f54 ) - 8000f30: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000f32: 4a08 ldr r2, [pc, #32] @ (8000f54 ) - 8000f34: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8000f38: 6413 str r3, [r2, #64] @ 0x40 - 8000f3a: 4b06 ldr r3, [pc, #24] @ (8000f54 ) - 8000f3c: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000f3e: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 8000f42: 603b str r3, [r7, #0] - 8000f44: 683b ldr r3, [r7, #0] + 800119a: 2300 movs r3, #0 + 800119c: 603b str r3, [r7, #0] + 800119e: 4b09 ldr r3, [pc, #36] @ (80011c4 ) + 80011a0: 6c1b ldr r3, [r3, #64] @ 0x40 + 80011a2: 4a08 ldr r2, [pc, #32] @ (80011c4 ) + 80011a4: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80011a8: 6413 str r3, [r2, #64] @ 0x40 + 80011aa: 4b06 ldr r3, [pc, #24] @ (80011c4 ) + 80011ac: 6c1b ldr r3, [r3, #64] @ 0x40 + 80011ae: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 80011b2: 603b str r3, [r7, #0] + 80011b4: 683b ldr r3, [r7, #0] /* System interrupt init*/ /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 8000f46: bf00 nop - 8000f48: 370c adds r7, #12 - 8000f4a: 46bd mov sp, r7 - 8000f4c: f85d 7b04 ldr.w r7, [sp], #4 - 8000f50: 4770 bx lr - 8000f52: bf00 nop - 8000f54: 40023800 .word 0x40023800 + 80011b6: bf00 nop + 80011b8: 370c adds r7, #12 + 80011ba: 46bd mov sp, r7 + 80011bc: f85d 7b04 ldr.w r7, [sp], #4 + 80011c0: 4770 bx lr + 80011c2: bf00 nop + 80011c4: 40023800 .word 0x40023800 -08000f58 : +080011c8 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 8000f58: b480 push {r7} - 8000f5a: af00 add r7, sp, #0 + 80011c8: b480 push {r7} + 80011ca: af00 add r7, sp, #0 /* USER CODE BEGIN NonMaskableInt_IRQn 0 */ /* USER CODE END NonMaskableInt_IRQn 0 */ /* USER CODE BEGIN NonMaskableInt_IRQn 1 */ while (1) - 8000f5c: bf00 nop - 8000f5e: e7fd b.n 8000f5c + 80011cc: bf00 nop + 80011ce: e7fd b.n 80011cc -08000f60 : +080011d0 : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 8000f60: b480 push {r7} - 8000f62: af00 add r7, sp, #0 + 80011d0: b480 push {r7} + 80011d2: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 8000f64: bf00 nop - 8000f66: e7fd b.n 8000f64 + 80011d4: bf00 nop + 80011d6: e7fd b.n 80011d4 -08000f68 : +080011d8 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 8000f68: b480 push {r7} - 8000f6a: af00 add r7, sp, #0 + 80011d8: b480 push {r7} + 80011da: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 8000f6c: bf00 nop - 8000f6e: e7fd b.n 8000f6c + 80011dc: bf00 nop + 80011de: e7fd b.n 80011dc -08000f70 : +080011e0 : /** * @brief This function handles Pre-fetch fault, memory access fault. */ void BusFault_Handler(void) { - 8000f70: b480 push {r7} - 8000f72: af00 add r7, sp, #0 + 80011e0: b480 push {r7} + 80011e2: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 8000f74: bf00 nop - 8000f76: e7fd b.n 8000f74 + 80011e4: bf00 nop + 80011e6: e7fd b.n 80011e4 -08000f78 : +080011e8 : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 8000f78: b480 push {r7} - 8000f7a: af00 add r7, sp, #0 + 80011e8: b480 push {r7} + 80011ea: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 8000f7c: bf00 nop - 8000f7e: e7fd b.n 8000f7c + 80011ec: bf00 nop + 80011ee: e7fd b.n 80011ec -08000f80 : +080011f0 : /** * @brief This function handles System service call via SWI instruction. */ void SVC_Handler(void) { - 8000f80: b480 push {r7} - 8000f82: af00 add r7, sp, #0 + 80011f0: b480 push {r7} + 80011f2: af00 add r7, sp, #0 /* USER CODE END SVCall_IRQn 0 */ /* USER CODE BEGIN SVCall_IRQn 1 */ /* USER CODE END SVCall_IRQn 1 */ } - 8000f84: bf00 nop - 8000f86: 46bd mov sp, r7 - 8000f88: f85d 7b04 ldr.w r7, [sp], #4 - 8000f8c: 4770 bx lr + 80011f4: bf00 nop + 80011f6: 46bd mov sp, r7 + 80011f8: f85d 7b04 ldr.w r7, [sp], #4 + 80011fc: 4770 bx lr -08000f8e : +080011fe : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 8000f8e: b480 push {r7} - 8000f90: af00 add r7, sp, #0 + 80011fe: b480 push {r7} + 8001200: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 8000f92: bf00 nop - 8000f94: 46bd mov sp, r7 - 8000f96: f85d 7b04 ldr.w r7, [sp], #4 - 8000f9a: 4770 bx lr + 8001202: bf00 nop + 8001204: 46bd mov sp, r7 + 8001206: f85d 7b04 ldr.w r7, [sp], #4 + 800120a: 4770 bx lr -08000f9c : +0800120c : /** * @brief This function handles Pendable request for system service. */ void PendSV_Handler(void) { - 8000f9c: b480 push {r7} - 8000f9e: af00 add r7, sp, #0 + 800120c: b480 push {r7} + 800120e: af00 add r7, sp, #0 /* USER CODE END PendSV_IRQn 0 */ /* USER CODE BEGIN PendSV_IRQn 1 */ /* USER CODE END PendSV_IRQn 1 */ } - 8000fa0: bf00 nop - 8000fa2: 46bd mov sp, r7 - 8000fa4: f85d 7b04 ldr.w r7, [sp], #4 - 8000fa8: 4770 bx lr + 8001210: bf00 nop + 8001212: 46bd mov sp, r7 + 8001214: f85d 7b04 ldr.w r7, [sp], #4 + 8001218: 4770 bx lr -08000faa : +0800121a : /** * @brief This function handles System tick timer. */ void SysTick_Handler(void) { - 8000faa: b580 push {r7, lr} - 8000fac: af00 add r7, sp, #0 + 800121a: b580 push {r7, lr} + 800121c: af00 add r7, sp, #0 /* USER CODE BEGIN SysTick_IRQn 0 */ /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); - 8000fae: f000 fdc9 bl 8001b44 + 800121e: f000 fdc9 bl 8001db4 /* USER CODE BEGIN SysTick_IRQn 1 */ /* USER CODE END SysTick_IRQn 1 */ } - 8000fb2: bf00 nop - 8000fb4: bd80 pop {r7, pc} + 8001222: bf00 nop + 8001224: bd80 pop {r7, pc} ... -08000fb8 : +08001228 : /** * @brief This function handles DMA1 stream0 global interrupt. */ void DMA1_Stream0_IRQHandler(void) { - 8000fb8: b580 push {r7, lr} - 8000fba: af00 add r7, sp, #0 + 8001228: b580 push {r7, lr} + 800122a: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream0_IRQn 0 */ /* USER CODE END DMA1_Stream0_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart5_rx); - 8000fbc: 4802 ldr r0, [pc, #8] @ (8000fc8 ) - 8000fbe: f001 f8af bl 8002120 + 800122c: 4802 ldr r0, [pc, #8] @ (8001238 ) + 800122e: f001 f8af bl 8002390 /* USER CODE BEGIN DMA1_Stream0_IRQn 1 */ /* USER CODE END DMA1_Stream0_IRQn 1 */ } - 8000fc2: bf00 nop - 8000fc4: bd80 pop {r7, pc} - 8000fc6: bf00 nop - 8000fc8: 200004f0 .word 0x200004f0 + 8001232: bf00 nop + 8001234: bd80 pop {r7, pc} + 8001236: bf00 nop + 8001238: 20000b40 .word 0x20000b40 -08000fcc : +0800123c : /** * @brief This function handles DMA1 stream2 global interrupt. */ void DMA1_Stream2_IRQHandler(void) { - 8000fcc: b580 push {r7, lr} - 8000fce: af00 add r7, sp, #0 + 800123c: b580 push {r7, lr} + 800123e: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream2_IRQn 0 */ /* USER CODE END DMA1_Stream2_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart4_rx); - 8000fd0: 4802 ldr r0, [pc, #8] @ (8000fdc ) - 8000fd2: f001 f8a5 bl 8002120 + 8001240: 4802 ldr r0, [pc, #8] @ (800124c ) + 8001242: f001 f8a5 bl 8002390 /* USER CODE BEGIN DMA1_Stream2_IRQn 1 */ /* USER CODE END DMA1_Stream2_IRQn 1 */ } - 8000fd6: bf00 nop - 8000fd8: bd80 pop {r7, pc} - 8000fda: bf00 nop - 8000fdc: 20000430 .word 0x20000430 + 8001246: bf00 nop + 8001248: bd80 pop {r7, pc} + 800124a: bf00 nop + 800124c: 20000a80 .word 0x20000a80 -08000fe0 : +08001250 : /** * @brief This function handles DMA1 stream4 global interrupt. */ void DMA1_Stream4_IRQHandler(void) { - 8000fe0: b580 push {r7, lr} - 8000fe2: af00 add r7, sp, #0 + 8001250: b580 push {r7, lr} + 8001252: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream4_IRQn 0 */ /* USER CODE END DMA1_Stream4_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart4_tx); - 8000fe4: 4802 ldr r0, [pc, #8] @ (8000ff0 ) - 8000fe6: f001 f89b bl 8002120 + 8001254: 4802 ldr r0, [pc, #8] @ (8001260 ) + 8001256: f001 f89b bl 8002390 /* USER CODE BEGIN DMA1_Stream4_IRQn 1 */ /* USER CODE END DMA1_Stream4_IRQn 1 */ } - 8000fea: bf00 nop - 8000fec: bd80 pop {r7, pc} - 8000fee: bf00 nop - 8000ff0: 20000490 .word 0x20000490 + 800125a: bf00 nop + 800125c: bd80 pop {r7, pc} + 800125e: bf00 nop + 8001260: 20000ae0 .word 0x20000ae0 -08000ff4 : +08001264 : /** * @brief This function handles DMA1 stream5 global interrupt. */ void DMA1_Stream5_IRQHandler(void) { - 8000ff4: b580 push {r7, lr} - 8000ff6: af00 add r7, sp, #0 + 8001264: b580 push {r7, lr} + 8001266: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream5_IRQn 0 */ /* USER CODE END DMA1_Stream5_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart2_rx); - 8000ff8: 4802 ldr r0, [pc, #8] @ (8001004 ) - 8000ffa: f001 f891 bl 8002120 + 8001268: 4802 ldr r0, [pc, #8] @ (8001274 ) + 800126a: f001 f891 bl 8002390 /* USER CODE BEGIN DMA1_Stream5_IRQn 1 */ /* USER CODE END DMA1_Stream5_IRQn 1 */ } - 8000ffe: bf00 nop - 8001000: bd80 pop {r7, pc} - 8001002: bf00 nop - 8001004: 20000670 .word 0x20000670 + 800126e: bf00 nop + 8001270: bd80 pop {r7, pc} + 8001272: bf00 nop + 8001274: 20000cc0 .word 0x20000cc0 -08001008 : +08001278 : /** * @brief This function handles DMA1 stream6 global interrupt. */ void DMA1_Stream6_IRQHandler(void) { - 8001008: b580 push {r7, lr} - 800100a: af00 add r7, sp, #0 + 8001278: b580 push {r7, lr} + 800127a: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream6_IRQn 0 */ /* USER CODE END DMA1_Stream6_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart2_tx); - 800100c: 4802 ldr r0, [pc, #8] @ (8001018 ) - 800100e: f001 f887 bl 8002120 + 800127c: 4802 ldr r0, [pc, #8] @ (8001288 ) + 800127e: f001 f887 bl 8002390 /* USER CODE BEGIN DMA1_Stream6_IRQn 1 */ /* USER CODE END DMA1_Stream6_IRQn 1 */ } - 8001012: bf00 nop - 8001014: bd80 pop {r7, pc} - 8001016: bf00 nop - 8001018: 200006d0 .word 0x200006d0 + 8001282: bf00 nop + 8001284: bd80 pop {r7, pc} + 8001286: bf00 nop + 8001288: 20000d20 .word 0x20000d20 -0800101c : +0800128c : /** * @brief This function handles USART1 global interrupt. */ void USART1_IRQHandler(void) { - 800101c: b580 push {r7, lr} - 800101e: af00 add r7, sp, #0 + 800128c: b580 push {r7, lr} + 800128e: af00 add r7, sp, #0 /* USER CODE BEGIN USART1_IRQn 0 */ /* USER CODE END USART1_IRQn 0 */ HAL_UART_IRQHandler(&huart1); - 8001020: 4802 ldr r0, [pc, #8] @ (800102c ) - 8001022: f004 fe9f bl 8005d64 + 8001290: 4802 ldr r0, [pc, #8] @ (800129c ) + 8001292: f004 ff53 bl 800613c /* USER CODE BEGIN USART1_IRQn 1 */ /* USER CODE END USART1_IRQn 1 */ } - 8001026: bf00 nop - 8001028: bd80 pop {r7, pc} - 800102a: bf00 nop - 800102c: 200003a0 .word 0x200003a0 + 8001296: bf00 nop + 8001298: bd80 pop {r7, pc} + 800129a: bf00 nop + 800129c: 200009f0 .word 0x200009f0 -08001030 : +080012a0 : /** * @brief This function handles USART2 global interrupt. */ void USART2_IRQHandler(void) { - 8001030: b580 push {r7, lr} - 8001032: af00 add r7, sp, #0 + 80012a0: b580 push {r7, lr} + 80012a2: af00 add r7, sp, #0 /* USER CODE BEGIN USART2_IRQn 0 */ /* USER CODE END USART2_IRQn 0 */ HAL_UART_IRQHandler(&huart2); - 8001034: 4802 ldr r0, [pc, #8] @ (8001040 ) - 8001036: f004 fe95 bl 8005d64 + 80012a4: 4802 ldr r0, [pc, #8] @ (80012b0 ) + 80012a6: f004 ff49 bl 800613c /* USER CODE BEGIN USART2_IRQn 1 */ /* USER CODE END USART2_IRQn 1 */ } - 800103a: bf00 nop - 800103c: bd80 pop {r7, pc} - 800103e: bf00 nop - 8001040: 200003e8 .word 0x200003e8 + 80012aa: bf00 nop + 80012ac: bd80 pop {r7, pc} + 80012ae: bf00 nop + 80012b0: 20000a38 .word 0x20000a38 -08001044 : +080012b4 : /** * @brief This function handles DMA1 stream7 global interrupt. */ void DMA1_Stream7_IRQHandler(void) { - 8001044: b580 push {r7, lr} - 8001046: af00 add r7, sp, #0 + 80012b4: b580 push {r7, lr} + 80012b6: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream7_IRQn 0 */ /* USER CODE END DMA1_Stream7_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart5_tx); - 8001048: 4802 ldr r0, [pc, #8] @ (8001054 ) - 800104a: f001 f869 bl 8002120 + 80012b8: 4802 ldr r0, [pc, #8] @ (80012c4 ) + 80012ba: f001 f869 bl 8002390 /* USER CODE BEGIN DMA1_Stream7_IRQn 1 */ /* USER CODE END DMA1_Stream7_IRQn 1 */ } - 800104e: bf00 nop - 8001050: bd80 pop {r7, pc} - 8001052: bf00 nop - 8001054: 20000550 .word 0x20000550 + 80012be: bf00 nop + 80012c0: bd80 pop {r7, pc} + 80012c2: bf00 nop + 80012c4: 20000ba0 .word 0x20000ba0 -08001058 : +080012c8 : /** * @brief This function handles UART4 global interrupt. */ void UART4_IRQHandler(void) { - 8001058: b580 push {r7, lr} - 800105a: af00 add r7, sp, #0 + 80012c8: b580 push {r7, lr} + 80012ca: af00 add r7, sp, #0 /* USER CODE BEGIN UART4_IRQn 0 */ /* USER CODE END UART4_IRQn 0 */ HAL_UART_IRQHandler(&huart4); - 800105c: 4802 ldr r0, [pc, #8] @ (8001068 ) - 800105e: f004 fe81 bl 8005d64 + 80012cc: 4802 ldr r0, [pc, #8] @ (80012d8 ) + 80012ce: f004 ff35 bl 800613c /* USER CODE BEGIN UART4_IRQn 1 */ /* USER CODE END UART4_IRQn 1 */ } - 8001062: bf00 nop - 8001064: bd80 pop {r7, pc} - 8001066: bf00 nop - 8001068: 20000310 .word 0x20000310 + 80012d2: bf00 nop + 80012d4: bd80 pop {r7, pc} + 80012d6: bf00 nop + 80012d8: 20000960 .word 0x20000960 -0800106c : +080012dc : /** * @brief This function handles UART5 global interrupt. */ void UART5_IRQHandler(void) { - 800106c: b580 push {r7, lr} - 800106e: af00 add r7, sp, #0 + 80012dc: b580 push {r7, lr} + 80012de: af00 add r7, sp, #0 /* USER CODE BEGIN UART5_IRQn 0 */ /* USER CODE END UART5_IRQn 0 */ HAL_UART_IRQHandler(&huart5); - 8001070: 4802 ldr r0, [pc, #8] @ (800107c ) - 8001072: f004 fe77 bl 8005d64 + 80012e0: 4802 ldr r0, [pc, #8] @ (80012ec ) + 80012e2: f004 ff2b bl 800613c /* USER CODE BEGIN UART5_IRQn 1 */ /* USER CODE END UART5_IRQn 1 */ } - 8001076: bf00 nop - 8001078: bd80 pop {r7, pc} - 800107a: bf00 nop - 800107c: 20000358 .word 0x20000358 + 80012e6: bf00 nop + 80012e8: bd80 pop {r7, pc} + 80012ea: bf00 nop + 80012ec: 200009a8 .word 0x200009a8 -08001080 : +080012f0 : /** * @brief This function handles DMA2 stream2 global interrupt. */ void DMA2_Stream2_IRQHandler(void) { - 8001080: b580 push {r7, lr} - 8001082: af00 add r7, sp, #0 + 80012f0: b580 push {r7, lr} + 80012f2: af00 add r7, sp, #0 /* USER CODE BEGIN DMA2_Stream2_IRQn 0 */ /* USER CODE END DMA2_Stream2_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart1_rx); - 8001084: 4802 ldr r0, [pc, #8] @ (8001090 ) - 8001086: f001 f84b bl 8002120 + 80012f4: 4802 ldr r0, [pc, #8] @ (8001300 ) + 80012f6: f001 f84b bl 8002390 /* USER CODE BEGIN DMA2_Stream2_IRQn 1 */ /* USER CODE END DMA2_Stream2_IRQn 1 */ } - 800108a: bf00 nop - 800108c: bd80 pop {r7, pc} - 800108e: bf00 nop - 8001090: 200005b0 .word 0x200005b0 + 80012fa: bf00 nop + 80012fc: bd80 pop {r7, pc} + 80012fe: bf00 nop + 8001300: 20000c00 .word 0x20000c00 -08001094 : +08001304 : /** * @brief This function handles USB On The Go FS global interrupt. */ void OTG_FS_IRQHandler(void) { - 8001094: b580 push {r7, lr} - 8001096: af00 add r7, sp, #0 + 8001304: b580 push {r7, lr} + 8001306: af00 add r7, sp, #0 /* USER CODE BEGIN OTG_FS_IRQn 0 */ /* USER CODE END OTG_FS_IRQn 0 */ HAL_PCD_IRQHandler(&hpcd_USB_OTG_FS); - 8001098: 4802 ldr r0, [pc, #8] @ (80010a4 ) - 800109a: f001 ff00 bl 8002e9e + 8001308: 4802 ldr r0, [pc, #8] @ (8001314 ) + 800130a: f001 ff00 bl 800310e /* USER CODE BEGIN OTG_FS_IRQn 1 */ /* USER CODE END OTG_FS_IRQn 1 */ } - 800109e: bf00 nop - 80010a0: bd80 pop {r7, pc} - 80010a2: bf00 nop - 80010a4: 20000c14 .word 0x20000c14 + 800130e: bf00 nop + 8001310: bd80 pop {r7, pc} + 8001312: bf00 nop + 8001314: 20001264 .word 0x20001264 -080010a8 : +08001318 : /** * @brief This function handles DMA2 stream7 global interrupt. */ void DMA2_Stream7_IRQHandler(void) { - 80010a8: b580 push {r7, lr} - 80010aa: af00 add r7, sp, #0 + 8001318: b580 push {r7, lr} + 800131a: af00 add r7, sp, #0 /* USER CODE BEGIN DMA2_Stream7_IRQn 0 */ /* USER CODE END DMA2_Stream7_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart1_tx); - 80010ac: 4802 ldr r0, [pc, #8] @ (80010b8 ) - 80010ae: f001 f837 bl 8002120 + 800131c: 4802 ldr r0, [pc, #8] @ (8001328 ) + 800131e: f001 f837 bl 8002390 /* USER CODE BEGIN DMA2_Stream7_IRQn 1 */ /* USER CODE END DMA2_Stream7_IRQn 1 */ } - 80010b2: bf00 nop - 80010b4: bd80 pop {r7, pc} - 80010b6: bf00 nop - 80010b8: 20000610 .word 0x20000610 + 8001322: bf00 nop + 8001324: bd80 pop {r7, pc} + 8001326: bf00 nop + 8001328: 20000c60 .word 0x20000c60 -080010bc : +0800132c : * configuration. * @param None * @retval None */ void SystemInit(void) { - 80010bc: b480 push {r7} - 80010be: af00 add r7, sp, #0 + 800132c: b480 push {r7} + 800132e: af00 add r7, sp, #0 /* FPU settings ------------------------------------------------------------*/ #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */ - 80010c0: 4b06 ldr r3, [pc, #24] @ (80010dc ) - 80010c2: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 - 80010c6: 4a05 ldr r2, [pc, #20] @ (80010dc ) - 80010c8: f443 0370 orr.w r3, r3, #15728640 @ 0xf00000 - 80010cc: f8c2 3088 str.w r3, [r2, #136] @ 0x88 + 8001330: 4b06 ldr r3, [pc, #24] @ (800134c ) + 8001332: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 + 8001336: 4a05 ldr r2, [pc, #20] @ (800134c ) + 8001338: f443 0370 orr.w r3, r3, #15728640 @ 0xf00000 + 800133c: f8c2 3088 str.w r3, [r2, #136] @ 0x88 /* Configure the Vector Table location -------------------------------------*/ #if defined(USER_VECT_TAB_ADDRESS) SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */ #endif /* USER_VECT_TAB_ADDRESS */ } - 80010d0: bf00 nop - 80010d2: 46bd mov sp, r7 - 80010d4: f85d 7b04 ldr.w r7, [sp], #4 - 80010d8: 4770 bx lr - 80010da: bf00 nop - 80010dc: e000ed00 .word 0xe000ed00 + 8001340: bf00 nop + 8001342: 46bd mov sp, r7 + 8001344: f85d 7b04 ldr.w r7, [sp], #4 + 8001348: 4770 bx lr + 800134a: bf00 nop + 800134c: e000ed00 .word 0xe000ed00 -080010e0 : +08001350 : TIM_HandleTypeDef htim2; TIM_HandleTypeDef htim3; /* TIM2 init function */ void MX_TIM2_Init(void) { - 80010e0: b580 push {r7, lr} - 80010e2: b08a sub sp, #40 @ 0x28 - 80010e4: af00 add r7, sp, #0 + 8001350: b580 push {r7, lr} + 8001352: b08a sub sp, #40 @ 0x28 + 8001354: af00 add r7, sp, #0 /* USER CODE BEGIN TIM2_Init 0 */ /* USER CODE END TIM2_Init 0 */ TIM_MasterConfigTypeDef sMasterConfig = {0}; - 80010e6: f107 0320 add.w r3, r7, #32 - 80010ea: 2200 movs r2, #0 - 80010ec: 601a str r2, [r3, #0] - 80010ee: 605a str r2, [r3, #4] + 8001356: f107 0320 add.w r3, r7, #32 + 800135a: 2200 movs r2, #0 + 800135c: 601a str r2, [r3, #0] + 800135e: 605a str r2, [r3, #4] TIM_OC_InitTypeDef sConfigOC = {0}; - 80010f0: 1d3b adds r3, r7, #4 - 80010f2: 2200 movs r2, #0 - 80010f4: 601a str r2, [r3, #0] - 80010f6: 605a str r2, [r3, #4] - 80010f8: 609a str r2, [r3, #8] - 80010fa: 60da str r2, [r3, #12] - 80010fc: 611a str r2, [r3, #16] - 80010fe: 615a str r2, [r3, #20] - 8001100: 619a str r2, [r3, #24] + 8001360: 1d3b adds r3, r7, #4 + 8001362: 2200 movs r2, #0 + 8001364: 601a str r2, [r3, #0] + 8001366: 605a str r2, [r3, #4] + 8001368: 609a str r2, [r3, #8] + 800136a: 60da str r2, [r3, #12] + 800136c: 611a str r2, [r3, #16] + 800136e: 615a str r2, [r3, #20] + 8001370: 619a str r2, [r3, #24] /* USER CODE BEGIN TIM2_Init 1 */ /* USER CODE END TIM2_Init 1 */ htim2.Instance = TIM2; - 8001102: 4b22 ldr r3, [pc, #136] @ (800118c ) - 8001104: f04f 4280 mov.w r2, #1073741824 @ 0x40000000 - 8001108: 601a str r2, [r3, #0] + 8001372: 4b22 ldr r3, [pc, #136] @ (80013fc ) + 8001374: f04f 4280 mov.w r2, #1073741824 @ 0x40000000 + 8001378: 601a str r2, [r3, #0] htim2.Init.Prescaler = 0; - 800110a: 4b20 ldr r3, [pc, #128] @ (800118c ) - 800110c: 2200 movs r2, #0 - 800110e: 605a str r2, [r3, #4] + 800137a: 4b20 ldr r3, [pc, #128] @ (80013fc ) + 800137c: 2200 movs r2, #0 + 800137e: 605a str r2, [r3, #4] htim2.Init.CounterMode = TIM_COUNTERMODE_UP; - 8001110: 4b1e ldr r3, [pc, #120] @ (800118c ) - 8001112: 2200 movs r2, #0 - 8001114: 609a str r2, [r3, #8] + 8001380: 4b1e ldr r3, [pc, #120] @ (80013fc ) + 8001382: 2200 movs r2, #0 + 8001384: 609a str r2, [r3, #8] htim2.Init.Period = 4294967295; - 8001116: 4b1d ldr r3, [pc, #116] @ (800118c ) - 8001118: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff - 800111c: 60da str r2, [r3, #12] + 8001386: 4b1d ldr r3, [pc, #116] @ (80013fc ) + 8001388: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff + 800138c: 60da str r2, [r3, #12] htim2.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - 800111e: 4b1b ldr r3, [pc, #108] @ (800118c ) - 8001120: 2200 movs r2, #0 - 8001122: 611a str r2, [r3, #16] + 800138e: 4b1b ldr r3, [pc, #108] @ (80013fc ) + 8001390: 2200 movs r2, #0 + 8001392: 611a str r2, [r3, #16] htim2.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 8001124: 4b19 ldr r3, [pc, #100] @ (800118c ) - 8001126: 2200 movs r2, #0 - 8001128: 619a str r2, [r3, #24] + 8001394: 4b19 ldr r3, [pc, #100] @ (80013fc ) + 8001396: 2200 movs r2, #0 + 8001398: 619a str r2, [r3, #24] if (HAL_TIM_OC_Init(&htim2) != HAL_OK) - 800112a: 4818 ldr r0, [pc, #96] @ (800118c ) - 800112c: f004 f904 bl 8005338 - 8001130: 4603 mov r3, r0 - 8001132: 2b00 cmp r3, #0 - 8001134: d001 beq.n 800113a + 800139a: 4818 ldr r0, [pc, #96] @ (80013fc ) + 800139c: f004 f904 bl 80055a8 + 80013a0: 4603 mov r3, r0 + 80013a2: 2b00 cmp r3, #0 + 80013a4: d001 beq.n 80013aa { Error_Handler(); - 8001136: f7ff fee1 bl 8000efc + 80013a6: f7ff fee1 bl 800116c } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 800113a: 2300 movs r3, #0 - 800113c: 623b str r3, [r7, #32] + 80013aa: 2300 movs r3, #0 + 80013ac: 623b str r3, [r7, #32] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 800113e: 2300 movs r3, #0 - 8001140: 627b str r3, [r7, #36] @ 0x24 + 80013ae: 2300 movs r3, #0 + 80013b0: 627b str r3, [r7, #36] @ 0x24 if (HAL_TIMEx_MasterConfigSynchronization(&htim2, &sMasterConfig) != HAL_OK) - 8001142: f107 0320 add.w r3, r7, #32 - 8001146: 4619 mov r1, r3 - 8001148: 4810 ldr r0, [pc, #64] @ (800118c ) - 800114a: f004 fc9d bl 8005a88 - 800114e: 4603 mov r3, r0 - 8001150: 2b00 cmp r3, #0 - 8001152: d001 beq.n 8001158 + 80013b2: f107 0320 add.w r3, r7, #32 + 80013b6: 4619 mov r1, r3 + 80013b8: 4810 ldr r0, [pc, #64] @ (80013fc ) + 80013ba: f004 fd51 bl 8005e60 + 80013be: 4603 mov r3, r0 + 80013c0: 2b00 cmp r3, #0 + 80013c2: d001 beq.n 80013c8 { Error_Handler(); - 8001154: f7ff fed2 bl 8000efc + 80013c4: f7ff fed2 bl 800116c } sConfigOC.OCMode = TIM_OCMODE_FORCED_ACTIVE; - 8001158: 2350 movs r3, #80 @ 0x50 - 800115a: 607b str r3, [r7, #4] + 80013c8: 2350 movs r3, #80 @ 0x50 + 80013ca: 607b str r3, [r7, #4] sConfigOC.Pulse = 0; - 800115c: 2300 movs r3, #0 - 800115e: 60bb str r3, [r7, #8] + 80013cc: 2300 movs r3, #0 + 80013ce: 60bb str r3, [r7, #8] sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; - 8001160: 2300 movs r3, #0 - 8001162: 60fb str r3, [r7, #12] + 80013d0: 2300 movs r3, #0 + 80013d2: 60fb str r3, [r7, #12] sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; - 8001164: 2300 movs r3, #0 - 8001166: 617b str r3, [r7, #20] + 80013d4: 2300 movs r3, #0 + 80013d6: 617b str r3, [r7, #20] if (HAL_TIM_OC_ConfigChannel(&htim2, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) - 8001168: 1d3b adds r3, r7, #4 - 800116a: 2200 movs r2, #0 - 800116c: 4619 mov r1, r3 - 800116e: 4807 ldr r0, [pc, #28] @ (800118c ) - 8001170: f004 f9d8 bl 8005524 - 8001174: 4603 mov r3, r0 - 8001176: 2b00 cmp r3, #0 - 8001178: d001 beq.n 800117e + 80013d8: 1d3b adds r3, r7, #4 + 80013da: 2200 movs r2, #0 + 80013dc: 4619 mov r1, r3 + 80013de: 4807 ldr r0, [pc, #28] @ (80013fc ) + 80013e0: f004 fa66 bl 80058b0 + 80013e4: 4603 mov r3, r0 + 80013e6: 2b00 cmp r3, #0 + 80013e8: d001 beq.n 80013ee { Error_Handler(); - 800117a: f7ff febf bl 8000efc + 80013ea: f7ff febf bl 800116c } /* USER CODE BEGIN TIM2_Init 2 */ /* USER CODE END TIM2_Init 2 */ HAL_TIM_MspPostInit(&htim2); - 800117e: 4803 ldr r0, [pc, #12] @ (800118c ) - 8001180: f000 f8c2 bl 8001308 + 80013ee: 4803 ldr r0, [pc, #12] @ (80013fc ) + 80013f0: f000 f8c2 bl 8001578 } - 8001184: bf00 nop - 8001186: 3728 adds r7, #40 @ 0x28 - 8001188: 46bd mov sp, r7 - 800118a: bd80 pop {r7, pc} - 800118c: 20000280 .word 0x20000280 + 80013f4: bf00 nop + 80013f6: 3728 adds r7, #40 @ 0x28 + 80013f8: 46bd mov sp, r7 + 80013fa: bd80 pop {r7, pc} + 80013fc: 200008d0 .word 0x200008d0 -08001190 : +08001400 : /* TIM3 init function */ void MX_TIM3_Init(void) { - 8001190: b580 push {r7, lr} - 8001192: b08c sub sp, #48 @ 0x30 - 8001194: af00 add r7, sp, #0 + 8001400: b580 push {r7, lr} + 8001402: b08c sub sp, #48 @ 0x30 + 8001404: af00 add r7, sp, #0 /* USER CODE BEGIN TIM3_Init 0 */ /* USER CODE END TIM3_Init 0 */ TIM_Encoder_InitTypeDef sConfig = {0}; - 8001196: f107 030c add.w r3, r7, #12 - 800119a: 2224 movs r2, #36 @ 0x24 - 800119c: 2100 movs r1, #0 - 800119e: 4618 mov r0, r3 - 80011a0: f009 fc62 bl 800aa68 + 8001406: f107 030c add.w r3, r7, #12 + 800140a: 2224 movs r2, #36 @ 0x24 + 800140c: 2100 movs r1, #0 + 800140e: 4618 mov r0, r3 + 8001410: f009 fd16 bl 800ae40 TIM_MasterConfigTypeDef sMasterConfig = {0}; - 80011a4: 1d3b adds r3, r7, #4 - 80011a6: 2200 movs r2, #0 - 80011a8: 601a str r2, [r3, #0] - 80011aa: 605a str r2, [r3, #4] + 8001414: 1d3b adds r3, r7, #4 + 8001416: 2200 movs r2, #0 + 8001418: 601a str r2, [r3, #0] + 800141a: 605a str r2, [r3, #4] /* USER CODE BEGIN TIM3_Init 1 */ /* USER CODE END TIM3_Init 1 */ htim3.Instance = TIM3; - 80011ac: 4b20 ldr r3, [pc, #128] @ (8001230 ) - 80011ae: 4a21 ldr r2, [pc, #132] @ (8001234 ) - 80011b0: 601a str r2, [r3, #0] + 800141c: 4b20 ldr r3, [pc, #128] @ (80014a0 ) + 800141e: 4a21 ldr r2, [pc, #132] @ (80014a4 ) + 8001420: 601a str r2, [r3, #0] htim3.Init.Prescaler = 0; - 80011b2: 4b1f ldr r3, [pc, #124] @ (8001230 ) - 80011b4: 2200 movs r2, #0 - 80011b6: 605a str r2, [r3, #4] + 8001422: 4b1f ldr r3, [pc, #124] @ (80014a0 ) + 8001424: 2200 movs r2, #0 + 8001426: 605a str r2, [r3, #4] htim3.Init.CounterMode = TIM_COUNTERMODE_UP; - 80011b8: 4b1d ldr r3, [pc, #116] @ (8001230 ) - 80011ba: 2200 movs r2, #0 - 80011bc: 609a str r2, [r3, #8] + 8001428: 4b1d ldr r3, [pc, #116] @ (80014a0 ) + 800142a: 2200 movs r2, #0 + 800142c: 609a str r2, [r3, #8] htim3.Init.Period = 65535; - 80011be: 4b1c ldr r3, [pc, #112] @ (8001230 ) - 80011c0: f64f 72ff movw r2, #65535 @ 0xffff - 80011c4: 60da str r2, [r3, #12] + 800142e: 4b1c ldr r3, [pc, #112] @ (80014a0 ) + 8001430: f64f 72ff movw r2, #65535 @ 0xffff + 8001434: 60da str r2, [r3, #12] htim3.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - 80011c6: 4b1a ldr r3, [pc, #104] @ (8001230 ) - 80011c8: 2200 movs r2, #0 - 80011ca: 611a str r2, [r3, #16] + 8001436: 4b1a ldr r3, [pc, #104] @ (80014a0 ) + 8001438: 2200 movs r2, #0 + 800143a: 611a str r2, [r3, #16] htim3.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 80011cc: 4b18 ldr r3, [pc, #96] @ (8001230 ) - 80011ce: 2200 movs r2, #0 - 80011d0: 619a str r2, [r3, #24] + 800143c: 4b18 ldr r3, [pc, #96] @ (80014a0 ) + 800143e: 2200 movs r2, #0 + 8001440: 619a str r2, [r3, #24] sConfig.EncoderMode = TIM_ENCODERMODE_TI1; - 80011d2: 2301 movs r3, #1 - 80011d4: 60fb str r3, [r7, #12] + 8001442: 2301 movs r3, #1 + 8001444: 60fb str r3, [r7, #12] sConfig.IC1Polarity = TIM_ICPOLARITY_RISING; - 80011d6: 2300 movs r3, #0 - 80011d8: 613b str r3, [r7, #16] + 8001446: 2300 movs r3, #0 + 8001448: 613b str r3, [r7, #16] sConfig.IC1Selection = TIM_ICSELECTION_DIRECTTI; - 80011da: 2301 movs r3, #1 - 80011dc: 617b str r3, [r7, #20] + 800144a: 2301 movs r3, #1 + 800144c: 617b str r3, [r7, #20] sConfig.IC1Prescaler = TIM_ICPSC_DIV1; - 80011de: 2300 movs r3, #0 - 80011e0: 61bb str r3, [r7, #24] + 800144e: 2300 movs r3, #0 + 8001450: 61bb str r3, [r7, #24] sConfig.IC1Filter = 0; - 80011e2: 2300 movs r3, #0 - 80011e4: 61fb str r3, [r7, #28] + 8001452: 2300 movs r3, #0 + 8001454: 61fb str r3, [r7, #28] sConfig.IC2Polarity = TIM_ICPOLARITY_RISING; - 80011e6: 2300 movs r3, #0 - 80011e8: 623b str r3, [r7, #32] + 8001456: 2300 movs r3, #0 + 8001458: 623b str r3, [r7, #32] sConfig.IC2Selection = TIM_ICSELECTION_DIRECTTI; - 80011ea: 2301 movs r3, #1 - 80011ec: 627b str r3, [r7, #36] @ 0x24 + 800145a: 2301 movs r3, #1 + 800145c: 627b str r3, [r7, #36] @ 0x24 sConfig.IC2Prescaler = TIM_ICPSC_DIV1; - 80011ee: 2300 movs r3, #0 - 80011f0: 62bb str r3, [r7, #40] @ 0x28 + 800145e: 2300 movs r3, #0 + 8001460: 62bb str r3, [r7, #40] @ 0x28 sConfig.IC2Filter = 0; - 80011f2: 2300 movs r3, #0 - 80011f4: 62fb str r3, [r7, #44] @ 0x2c + 8001462: 2300 movs r3, #0 + 8001464: 62fb str r3, [r7, #44] @ 0x2c if (HAL_TIM_Encoder_Init(&htim3, &sConfig) != HAL_OK) - 80011f6: f107 030c add.w r3, r7, #12 - 80011fa: 4619 mov r1, r3 - 80011fc: 480c ldr r0, [pc, #48] @ (8001230 ) - 80011fe: f004 f8ea bl 80053d6 - 8001202: 4603 mov r3, r0 - 8001204: 2b00 cmp r3, #0 - 8001206: d001 beq.n 800120c + 8001466: f107 030c add.w r3, r7, #12 + 800146a: 4619 mov r1, r3 + 800146c: 480c ldr r0, [pc, #48] @ (80014a0 ) + 800146e: f004 f8ea bl 8005646 + 8001472: 4603 mov r3, r0 + 8001474: 2b00 cmp r3, #0 + 8001476: d001 beq.n 800147c { Error_Handler(); - 8001208: f7ff fe78 bl 8000efc + 8001478: f7ff fe78 bl 800116c } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 800120c: 2300 movs r3, #0 - 800120e: 607b str r3, [r7, #4] + 800147c: 2300 movs r3, #0 + 800147e: 607b str r3, [r7, #4] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 8001210: 2300 movs r3, #0 - 8001212: 60bb str r3, [r7, #8] + 8001480: 2300 movs r3, #0 + 8001482: 60bb str r3, [r7, #8] if (HAL_TIMEx_MasterConfigSynchronization(&htim3, &sMasterConfig) != HAL_OK) - 8001214: 1d3b adds r3, r7, #4 - 8001216: 4619 mov r1, r3 - 8001218: 4805 ldr r0, [pc, #20] @ (8001230 ) - 800121a: f004 fc35 bl 8005a88 - 800121e: 4603 mov r3, r0 - 8001220: 2b00 cmp r3, #0 - 8001222: d001 beq.n 8001228 + 8001484: 1d3b adds r3, r7, #4 + 8001486: 4619 mov r1, r3 + 8001488: 4805 ldr r0, [pc, #20] @ (80014a0 ) + 800148a: f004 fce9 bl 8005e60 + 800148e: 4603 mov r3, r0 + 8001490: 2b00 cmp r3, #0 + 8001492: d001 beq.n 8001498 { Error_Handler(); - 8001224: f7ff fe6a bl 8000efc + 8001494: f7ff fe6a bl 800116c } /* USER CODE BEGIN TIM3_Init 2 */ /* USER CODE END TIM3_Init 2 */ } - 8001228: bf00 nop - 800122a: 3730 adds r7, #48 @ 0x30 - 800122c: 46bd mov sp, r7 - 800122e: bd80 pop {r7, pc} - 8001230: 200002c8 .word 0x200002c8 - 8001234: 40000400 .word 0x40000400 + 8001498: bf00 nop + 800149a: 3730 adds r7, #48 @ 0x30 + 800149c: 46bd mov sp, r7 + 800149e: bd80 pop {r7, pc} + 80014a0: 20000918 .word 0x20000918 + 80014a4: 40000400 .word 0x40000400 -08001238 : +080014a8 : void HAL_TIM_OC_MspInit(TIM_HandleTypeDef* tim_ocHandle) { - 8001238: b480 push {r7} - 800123a: b085 sub sp, #20 - 800123c: af00 add r7, sp, #0 - 800123e: 6078 str r0, [r7, #4] + 80014a8: b480 push {r7} + 80014aa: b085 sub sp, #20 + 80014ac: af00 add r7, sp, #0 + 80014ae: 6078 str r0, [r7, #4] if(tim_ocHandle->Instance==TIM2) - 8001240: 687b ldr r3, [r7, #4] - 8001242: 681b ldr r3, [r3, #0] - 8001244: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8001248: d10d bne.n 8001266 + 80014b0: 687b ldr r3, [r7, #4] + 80014b2: 681b ldr r3, [r3, #0] + 80014b4: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80014b8: d10d bne.n 80014d6 { /* USER CODE BEGIN TIM2_MspInit 0 */ /* USER CODE END TIM2_MspInit 0 */ /* TIM2 clock enable */ __HAL_RCC_TIM2_CLK_ENABLE(); - 800124a: 2300 movs r3, #0 - 800124c: 60fb str r3, [r7, #12] - 800124e: 4b09 ldr r3, [pc, #36] @ (8001274 ) - 8001250: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001252: 4a08 ldr r2, [pc, #32] @ (8001274 ) - 8001254: f043 0301 orr.w r3, r3, #1 - 8001258: 6413 str r3, [r2, #64] @ 0x40 - 800125a: 4b06 ldr r3, [pc, #24] @ (8001274 ) - 800125c: 6c1b ldr r3, [r3, #64] @ 0x40 - 800125e: f003 0301 and.w r3, r3, #1 - 8001262: 60fb str r3, [r7, #12] - 8001264: 68fb ldr r3, [r7, #12] + 80014ba: 2300 movs r3, #0 + 80014bc: 60fb str r3, [r7, #12] + 80014be: 4b09 ldr r3, [pc, #36] @ (80014e4 ) + 80014c0: 6c1b ldr r3, [r3, #64] @ 0x40 + 80014c2: 4a08 ldr r2, [pc, #32] @ (80014e4 ) + 80014c4: f043 0301 orr.w r3, r3, #1 + 80014c8: 6413 str r3, [r2, #64] @ 0x40 + 80014ca: 4b06 ldr r3, [pc, #24] @ (80014e4 ) + 80014cc: 6c1b ldr r3, [r3, #64] @ 0x40 + 80014ce: f003 0301 and.w r3, r3, #1 + 80014d2: 60fb str r3, [r7, #12] + 80014d4: 68fb ldr r3, [r7, #12] /* USER CODE BEGIN TIM2_MspInit 1 */ /* USER CODE END TIM2_MspInit 1 */ } } - 8001266: bf00 nop - 8001268: 3714 adds r7, #20 - 800126a: 46bd mov sp, r7 - 800126c: f85d 7b04 ldr.w r7, [sp], #4 - 8001270: 4770 bx lr - 8001272: bf00 nop - 8001274: 40023800 .word 0x40023800 + 80014d6: bf00 nop + 80014d8: 3714 adds r7, #20 + 80014da: 46bd mov sp, r7 + 80014dc: f85d 7b04 ldr.w r7, [sp], #4 + 80014e0: 4770 bx lr + 80014e2: bf00 nop + 80014e4: 40023800 .word 0x40023800 -08001278 : +080014e8 : void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef* tim_encoderHandle) { - 8001278: b580 push {r7, lr} - 800127a: b08a sub sp, #40 @ 0x28 - 800127c: af00 add r7, sp, #0 - 800127e: 6078 str r0, [r7, #4] + 80014e8: b580 push {r7, lr} + 80014ea: b08a sub sp, #40 @ 0x28 + 80014ec: af00 add r7, sp, #0 + 80014ee: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8001280: f107 0314 add.w r3, r7, #20 - 8001284: 2200 movs r2, #0 - 8001286: 601a str r2, [r3, #0] - 8001288: 605a str r2, [r3, #4] - 800128a: 609a str r2, [r3, #8] - 800128c: 60da str r2, [r3, #12] - 800128e: 611a str r2, [r3, #16] + 80014f0: f107 0314 add.w r3, r7, #20 + 80014f4: 2200 movs r2, #0 + 80014f6: 601a str r2, [r3, #0] + 80014f8: 605a str r2, [r3, #4] + 80014fa: 609a str r2, [r3, #8] + 80014fc: 60da str r2, [r3, #12] + 80014fe: 611a str r2, [r3, #16] if(tim_encoderHandle->Instance==TIM3) - 8001290: 687b ldr r3, [r7, #4] - 8001292: 681b ldr r3, [r3, #0] - 8001294: 4a19 ldr r2, [pc, #100] @ (80012fc ) - 8001296: 4293 cmp r3, r2 - 8001298: d12b bne.n 80012f2 + 8001500: 687b ldr r3, [r7, #4] + 8001502: 681b ldr r3, [r3, #0] + 8001504: 4a19 ldr r2, [pc, #100] @ (800156c ) + 8001506: 4293 cmp r3, r2 + 8001508: d12b bne.n 8001562 { /* USER CODE BEGIN TIM3_MspInit 0 */ /* USER CODE END TIM3_MspInit 0 */ /* TIM3 clock enable */ __HAL_RCC_TIM3_CLK_ENABLE(); - 800129a: 2300 movs r3, #0 - 800129c: 613b str r3, [r7, #16] - 800129e: 4b18 ldr r3, [pc, #96] @ (8001300 ) - 80012a0: 6c1b ldr r3, [r3, #64] @ 0x40 - 80012a2: 4a17 ldr r2, [pc, #92] @ (8001300 ) - 80012a4: f043 0302 orr.w r3, r3, #2 - 80012a8: 6413 str r3, [r2, #64] @ 0x40 - 80012aa: 4b15 ldr r3, [pc, #84] @ (8001300 ) - 80012ac: 6c1b ldr r3, [r3, #64] @ 0x40 - 80012ae: f003 0302 and.w r3, r3, #2 - 80012b2: 613b str r3, [r7, #16] - 80012b4: 693b ldr r3, [r7, #16] + 800150a: 2300 movs r3, #0 + 800150c: 613b str r3, [r7, #16] + 800150e: 4b18 ldr r3, [pc, #96] @ (8001570 ) + 8001510: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001512: 4a17 ldr r2, [pc, #92] @ (8001570 ) + 8001514: f043 0302 orr.w r3, r3, #2 + 8001518: 6413 str r3, [r2, #64] @ 0x40 + 800151a: 4b15 ldr r3, [pc, #84] @ (8001570 ) + 800151c: 6c1b ldr r3, [r3, #64] @ 0x40 + 800151e: f003 0302 and.w r3, r3, #2 + 8001522: 613b str r3, [r7, #16] + 8001524: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOA_CLK_ENABLE(); - 80012b6: 2300 movs r3, #0 - 80012b8: 60fb str r3, [r7, #12] - 80012ba: 4b11 ldr r3, [pc, #68] @ (8001300 ) - 80012bc: 6b1b ldr r3, [r3, #48] @ 0x30 - 80012be: 4a10 ldr r2, [pc, #64] @ (8001300 ) - 80012c0: f043 0301 orr.w r3, r3, #1 - 80012c4: 6313 str r3, [r2, #48] @ 0x30 - 80012c6: 4b0e ldr r3, [pc, #56] @ (8001300 ) - 80012c8: 6b1b ldr r3, [r3, #48] @ 0x30 - 80012ca: f003 0301 and.w r3, r3, #1 - 80012ce: 60fb str r3, [r7, #12] - 80012d0: 68fb ldr r3, [r7, #12] + 8001526: 2300 movs r3, #0 + 8001528: 60fb str r3, [r7, #12] + 800152a: 4b11 ldr r3, [pc, #68] @ (8001570 ) + 800152c: 6b1b ldr r3, [r3, #48] @ 0x30 + 800152e: 4a10 ldr r2, [pc, #64] @ (8001570 ) + 8001530: f043 0301 orr.w r3, r3, #1 + 8001534: 6313 str r3, [r2, #48] @ 0x30 + 8001536: 4b0e ldr r3, [pc, #56] @ (8001570 ) + 8001538: 6b1b ldr r3, [r3, #48] @ 0x30 + 800153a: f003 0301 and.w r3, r3, #1 + 800153e: 60fb str r3, [r7, #12] + 8001540: 68fb ldr r3, [r7, #12] /**TIM3 GPIO Configuration PA6 ------> TIM3_CH1 PA7 ------> TIM3_CH2 */ GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_7; - 80012d2: 23c0 movs r3, #192 @ 0xc0 - 80012d4: 617b str r3, [r7, #20] + 8001542: 23c0 movs r3, #192 @ 0xc0 + 8001544: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80012d6: 2302 movs r3, #2 - 80012d8: 61bb str r3, [r7, #24] + 8001546: 2302 movs r3, #2 + 8001548: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80012da: 2300 movs r3, #0 - 80012dc: 61fb str r3, [r7, #28] + 800154a: 2300 movs r3, #0 + 800154c: 61fb str r3, [r7, #28] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 80012de: 2300 movs r3, #0 - 80012e0: 623b str r3, [r7, #32] + 800154e: 2300 movs r3, #0 + 8001550: 623b str r3, [r7, #32] GPIO_InitStruct.Alternate = GPIO_AF2_TIM3; - 80012e2: 2302 movs r3, #2 - 80012e4: 627b str r3, [r7, #36] @ 0x24 + 8001552: 2302 movs r3, #2 + 8001554: 627b str r3, [r7, #36] @ 0x24 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80012e6: f107 0314 add.w r3, r7, #20 - 80012ea: 4619 mov r1, r3 - 80012ec: 4805 ldr r0, [pc, #20] @ (8001304 ) - 80012ee: f001 f981 bl 80025f4 + 8001556: f107 0314 add.w r3, r7, #20 + 800155a: 4619 mov r1, r3 + 800155c: 4805 ldr r0, [pc, #20] @ (8001574 ) + 800155e: f001 f981 bl 8002864 /* USER CODE BEGIN TIM3_MspInit 1 */ /* USER CODE END TIM3_MspInit 1 */ } } - 80012f2: bf00 nop - 80012f4: 3728 adds r7, #40 @ 0x28 - 80012f6: 46bd mov sp, r7 - 80012f8: bd80 pop {r7, pc} - 80012fa: bf00 nop - 80012fc: 40000400 .word 0x40000400 - 8001300: 40023800 .word 0x40023800 - 8001304: 40020000 .word 0x40020000 + 8001562: bf00 nop + 8001564: 3728 adds r7, #40 @ 0x28 + 8001566: 46bd mov sp, r7 + 8001568: bd80 pop {r7, pc} + 800156a: bf00 nop + 800156c: 40000400 .word 0x40000400 + 8001570: 40023800 .word 0x40023800 + 8001574: 40020000 .word 0x40020000 -08001308 : +08001578 : void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) { - 8001308: b580 push {r7, lr} - 800130a: b088 sub sp, #32 - 800130c: af00 add r7, sp, #0 - 800130e: 6078 str r0, [r7, #4] + 8001578: b580 push {r7, lr} + 800157a: b088 sub sp, #32 + 800157c: af00 add r7, sp, #0 + 800157e: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8001310: f107 030c add.w r3, r7, #12 - 8001314: 2200 movs r2, #0 - 8001316: 601a str r2, [r3, #0] - 8001318: 605a str r2, [r3, #4] - 800131a: 609a str r2, [r3, #8] - 800131c: 60da str r2, [r3, #12] - 800131e: 611a str r2, [r3, #16] + 8001580: f107 030c add.w r3, r7, #12 + 8001584: 2200 movs r2, #0 + 8001586: 601a str r2, [r3, #0] + 8001588: 605a str r2, [r3, #4] + 800158a: 609a str r2, [r3, #8] + 800158c: 60da str r2, [r3, #12] + 800158e: 611a str r2, [r3, #16] if(timHandle->Instance==TIM2) - 8001320: 687b ldr r3, [r7, #4] - 8001322: 681b ldr r3, [r3, #0] - 8001324: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8001328: d11d bne.n 8001366 + 8001590: 687b ldr r3, [r7, #4] + 8001592: 681b ldr r3, [r3, #0] + 8001594: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8001598: d11d bne.n 80015d6 { /* USER CODE BEGIN TIM2_MspPostInit 0 */ /* USER CODE END TIM2_MspPostInit 0 */ __HAL_RCC_GPIOA_CLK_ENABLE(); - 800132a: 2300 movs r3, #0 - 800132c: 60bb str r3, [r7, #8] - 800132e: 4b10 ldr r3, [pc, #64] @ (8001370 ) - 8001330: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001332: 4a0f ldr r2, [pc, #60] @ (8001370 ) - 8001334: f043 0301 orr.w r3, r3, #1 - 8001338: 6313 str r3, [r2, #48] @ 0x30 - 800133a: 4b0d ldr r3, [pc, #52] @ (8001370 ) - 800133c: 6b1b ldr r3, [r3, #48] @ 0x30 - 800133e: f003 0301 and.w r3, r3, #1 - 8001342: 60bb str r3, [r7, #8] - 8001344: 68bb ldr r3, [r7, #8] + 800159a: 2300 movs r3, #0 + 800159c: 60bb str r3, [r7, #8] + 800159e: 4b10 ldr r3, [pc, #64] @ (80015e0 ) + 80015a0: 6b1b ldr r3, [r3, #48] @ 0x30 + 80015a2: 4a0f ldr r2, [pc, #60] @ (80015e0 ) + 80015a4: f043 0301 orr.w r3, r3, #1 + 80015a8: 6313 str r3, [r2, #48] @ 0x30 + 80015aa: 4b0d ldr r3, [pc, #52] @ (80015e0 ) + 80015ac: 6b1b ldr r3, [r3, #48] @ 0x30 + 80015ae: f003 0301 and.w r3, r3, #1 + 80015b2: 60bb str r3, [r7, #8] + 80015b4: 68bb ldr r3, [r7, #8] /**TIM2 GPIO Configuration PA5 ------> TIM2_CH1 */ GPIO_InitStruct.Pin = GPIO_PIN_5; - 8001346: 2320 movs r3, #32 - 8001348: 60fb str r3, [r7, #12] + 80015b6: 2320 movs r3, #32 + 80015b8: 60fb str r3, [r7, #12] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800134a: 2302 movs r3, #2 - 800134c: 613b str r3, [r7, #16] + 80015ba: 2302 movs r3, #2 + 80015bc: 613b str r3, [r7, #16] GPIO_InitStruct.Pull = GPIO_NOPULL; - 800134e: 2300 movs r3, #0 - 8001350: 617b str r3, [r7, #20] + 80015be: 2300 movs r3, #0 + 80015c0: 617b str r3, [r7, #20] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 8001352: 2300 movs r3, #0 - 8001354: 61bb str r3, [r7, #24] + 80015c2: 2300 movs r3, #0 + 80015c4: 61bb str r3, [r7, #24] GPIO_InitStruct.Alternate = GPIO_AF1_TIM2; - 8001356: 2301 movs r3, #1 - 8001358: 61fb str r3, [r7, #28] + 80015c6: 2301 movs r3, #1 + 80015c8: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800135a: f107 030c add.w r3, r7, #12 - 800135e: 4619 mov r1, r3 - 8001360: 4804 ldr r0, [pc, #16] @ (8001374 ) - 8001362: f001 f947 bl 80025f4 + 80015ca: f107 030c add.w r3, r7, #12 + 80015ce: 4619 mov r1, r3 + 80015d0: 4804 ldr r0, [pc, #16] @ (80015e4 ) + 80015d2: f001 f947 bl 8002864 /* USER CODE BEGIN TIM2_MspPostInit 1 */ /* USER CODE END TIM2_MspPostInit 1 */ } } - 8001366: bf00 nop - 8001368: 3720 adds r7, #32 - 800136a: 46bd mov sp, r7 - 800136c: bd80 pop {r7, pc} - 800136e: bf00 nop - 8001370: 40023800 .word 0x40023800 - 8001374: 40020000 .word 0x40020000 + 80015d6: bf00 nop + 80015d8: 3720 adds r7, #32 + 80015da: 46bd mov sp, r7 + 80015dc: bd80 pop {r7, pc} + 80015de: bf00 nop + 80015e0: 40023800 .word 0x40023800 + 80015e4: 40020000 .word 0x40020000 -08001378 : +080015e8 : DMA_HandleTypeDef hdma_usart2_rx; DMA_HandleTypeDef hdma_usart2_tx; /* UART4 init function */ void MX_UART4_Init(void) { - 8001378: b580 push {r7, lr} - 800137a: af00 add r7, sp, #0 + 80015e8: b580 push {r7, lr} + 80015ea: af00 add r7, sp, #0 /* USER CODE END UART4_Init 0 */ /* USER CODE BEGIN UART4_Init 1 */ /* USER CODE END UART4_Init 1 */ huart4.Instance = UART4; - 800137c: 4b11 ldr r3, [pc, #68] @ (80013c4 ) - 800137e: 4a12 ldr r2, [pc, #72] @ (80013c8 ) - 8001380: 601a str r2, [r3, #0] + 80015ec: 4b11 ldr r3, [pc, #68] @ (8001634 ) + 80015ee: 4a12 ldr r2, [pc, #72] @ (8001638 ) + 80015f0: 601a str r2, [r3, #0] huart4.Init.BaudRate = 115200; - 8001382: 4b10 ldr r3, [pc, #64] @ (80013c4 ) - 8001384: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 8001388: 605a str r2, [r3, #4] + 80015f2: 4b10 ldr r3, [pc, #64] @ (8001634 ) + 80015f4: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 80015f8: 605a str r2, [r3, #4] huart4.Init.WordLength = UART_WORDLENGTH_8B; - 800138a: 4b0e ldr r3, [pc, #56] @ (80013c4 ) - 800138c: 2200 movs r2, #0 - 800138e: 609a str r2, [r3, #8] + 80015fa: 4b0e ldr r3, [pc, #56] @ (8001634 ) + 80015fc: 2200 movs r2, #0 + 80015fe: 609a str r2, [r3, #8] huart4.Init.StopBits = UART_STOPBITS_1; - 8001390: 4b0c ldr r3, [pc, #48] @ (80013c4 ) - 8001392: 2200 movs r2, #0 - 8001394: 60da str r2, [r3, #12] + 8001600: 4b0c ldr r3, [pc, #48] @ (8001634 ) + 8001602: 2200 movs r2, #0 + 8001604: 60da str r2, [r3, #12] huart4.Init.Parity = UART_PARITY_NONE; - 8001396: 4b0b ldr r3, [pc, #44] @ (80013c4 ) - 8001398: 2200 movs r2, #0 - 800139a: 611a str r2, [r3, #16] + 8001606: 4b0b ldr r3, [pc, #44] @ (8001634 ) + 8001608: 2200 movs r2, #0 + 800160a: 611a str r2, [r3, #16] huart4.Init.Mode = UART_MODE_TX_RX; - 800139c: 4b09 ldr r3, [pc, #36] @ (80013c4 ) - 800139e: 220c movs r2, #12 - 80013a0: 615a str r2, [r3, #20] + 800160c: 4b09 ldr r3, [pc, #36] @ (8001634 ) + 800160e: 220c movs r2, #12 + 8001610: 615a str r2, [r3, #20] huart4.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 80013a2: 4b08 ldr r3, [pc, #32] @ (80013c4 ) - 80013a4: 2200 movs r2, #0 - 80013a6: 619a str r2, [r3, #24] + 8001612: 4b08 ldr r3, [pc, #32] @ (8001634 ) + 8001614: 2200 movs r2, #0 + 8001616: 619a str r2, [r3, #24] huart4.Init.OverSampling = UART_OVERSAMPLING_16; - 80013a8: 4b06 ldr r3, [pc, #24] @ (80013c4 ) - 80013aa: 2200 movs r2, #0 - 80013ac: 61da str r2, [r3, #28] + 8001618: 4b06 ldr r3, [pc, #24] @ (8001634 ) + 800161a: 2200 movs r2, #0 + 800161c: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart4) != HAL_OK) - 80013ae: 4805 ldr r0, [pc, #20] @ (80013c4 ) - 80013b0: f004 fbe6 bl 8005b80 - 80013b4: 4603 mov r3, r0 - 80013b6: 2b00 cmp r3, #0 - 80013b8: d001 beq.n 80013be + 800161e: 4805 ldr r0, [pc, #20] @ (8001634 ) + 8001620: f004 fc9a bl 8005f58 + 8001624: 4603 mov r3, r0 + 8001626: 2b00 cmp r3, #0 + 8001628: d001 beq.n 800162e { Error_Handler(); - 80013ba: f7ff fd9f bl 8000efc + 800162a: f7ff fd9f bl 800116c } /* USER CODE BEGIN UART4_Init 2 */ /* USER CODE END UART4_Init 2 */ } - 80013be: bf00 nop - 80013c0: bd80 pop {r7, pc} - 80013c2: bf00 nop - 80013c4: 20000310 .word 0x20000310 - 80013c8: 40004c00 .word 0x40004c00 + 800162e: bf00 nop + 8001630: bd80 pop {r7, pc} + 8001632: bf00 nop + 8001634: 20000960 .word 0x20000960 + 8001638: 40004c00 .word 0x40004c00 -080013cc : +0800163c : /* UART5 init function */ void MX_UART5_Init(void) { - 80013cc: b580 push {r7, lr} - 80013ce: af00 add r7, sp, #0 + 800163c: b580 push {r7, lr} + 800163e: af00 add r7, sp, #0 /* USER CODE END UART5_Init 0 */ /* USER CODE BEGIN UART5_Init 1 */ /* USER CODE END UART5_Init 1 */ huart5.Instance = UART5; - 80013d0: 4b11 ldr r3, [pc, #68] @ (8001418 ) - 80013d2: 4a12 ldr r2, [pc, #72] @ (800141c ) - 80013d4: 601a str r2, [r3, #0] + 8001640: 4b11 ldr r3, [pc, #68] @ (8001688 ) + 8001642: 4a12 ldr r2, [pc, #72] @ (800168c ) + 8001644: 601a str r2, [r3, #0] huart5.Init.BaudRate = 115200; - 80013d6: 4b10 ldr r3, [pc, #64] @ (8001418 ) - 80013d8: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 80013dc: 605a str r2, [r3, #4] + 8001646: 4b10 ldr r3, [pc, #64] @ (8001688 ) + 8001648: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 800164c: 605a str r2, [r3, #4] huart5.Init.WordLength = UART_WORDLENGTH_8B; - 80013de: 4b0e ldr r3, [pc, #56] @ (8001418 ) - 80013e0: 2200 movs r2, #0 - 80013e2: 609a str r2, [r3, #8] + 800164e: 4b0e ldr r3, [pc, #56] @ (8001688 ) + 8001650: 2200 movs r2, #0 + 8001652: 609a str r2, [r3, #8] huart5.Init.StopBits = UART_STOPBITS_1; - 80013e4: 4b0c ldr r3, [pc, #48] @ (8001418 ) - 80013e6: 2200 movs r2, #0 - 80013e8: 60da str r2, [r3, #12] + 8001654: 4b0c ldr r3, [pc, #48] @ (8001688 ) + 8001656: 2200 movs r2, #0 + 8001658: 60da str r2, [r3, #12] huart5.Init.Parity = UART_PARITY_NONE; - 80013ea: 4b0b ldr r3, [pc, #44] @ (8001418 ) - 80013ec: 2200 movs r2, #0 - 80013ee: 611a str r2, [r3, #16] + 800165a: 4b0b ldr r3, [pc, #44] @ (8001688 ) + 800165c: 2200 movs r2, #0 + 800165e: 611a str r2, [r3, #16] huart5.Init.Mode = UART_MODE_TX_RX; - 80013f0: 4b09 ldr r3, [pc, #36] @ (8001418 ) - 80013f2: 220c movs r2, #12 - 80013f4: 615a str r2, [r3, #20] + 8001660: 4b09 ldr r3, [pc, #36] @ (8001688 ) + 8001662: 220c movs r2, #12 + 8001664: 615a str r2, [r3, #20] huart5.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 80013f6: 4b08 ldr r3, [pc, #32] @ (8001418 ) - 80013f8: 2200 movs r2, #0 - 80013fa: 619a str r2, [r3, #24] + 8001666: 4b08 ldr r3, [pc, #32] @ (8001688 ) + 8001668: 2200 movs r2, #0 + 800166a: 619a str r2, [r3, #24] huart5.Init.OverSampling = UART_OVERSAMPLING_16; - 80013fc: 4b06 ldr r3, [pc, #24] @ (8001418 ) - 80013fe: 2200 movs r2, #0 - 8001400: 61da str r2, [r3, #28] + 800166c: 4b06 ldr r3, [pc, #24] @ (8001688 ) + 800166e: 2200 movs r2, #0 + 8001670: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart5) != HAL_OK) - 8001402: 4805 ldr r0, [pc, #20] @ (8001418 ) - 8001404: f004 fbbc bl 8005b80 - 8001408: 4603 mov r3, r0 - 800140a: 2b00 cmp r3, #0 - 800140c: d001 beq.n 8001412 + 8001672: 4805 ldr r0, [pc, #20] @ (8001688 ) + 8001674: f004 fc70 bl 8005f58 + 8001678: 4603 mov r3, r0 + 800167a: 2b00 cmp r3, #0 + 800167c: d001 beq.n 8001682 { Error_Handler(); - 800140e: f7ff fd75 bl 8000efc + 800167e: f7ff fd75 bl 800116c } /* USER CODE BEGIN UART5_Init 2 */ /* USER CODE END UART5_Init 2 */ } - 8001412: bf00 nop - 8001414: bd80 pop {r7, pc} - 8001416: bf00 nop - 8001418: 20000358 .word 0x20000358 - 800141c: 40005000 .word 0x40005000 + 8001682: bf00 nop + 8001684: bd80 pop {r7, pc} + 8001686: bf00 nop + 8001688: 200009a8 .word 0x200009a8 + 800168c: 40005000 .word 0x40005000 -08001420 : +08001690 : /* USART1 init function */ void MX_USART1_UART_Init(void) { - 8001420: b580 push {r7, lr} - 8001422: af00 add r7, sp, #0 + 8001690: b580 push {r7, lr} + 8001692: af00 add r7, sp, #0 /* USER CODE END USART1_Init 0 */ /* USER CODE BEGIN USART1_Init 1 */ /* USER CODE END USART1_Init 1 */ huart1.Instance = USART1; - 8001424: 4b11 ldr r3, [pc, #68] @ (800146c ) - 8001426: 4a12 ldr r2, [pc, #72] @ (8001470 ) - 8001428: 601a str r2, [r3, #0] + 8001694: 4b11 ldr r3, [pc, #68] @ (80016dc ) + 8001696: 4a12 ldr r2, [pc, #72] @ (80016e0 ) + 8001698: 601a str r2, [r3, #0] huart1.Init.BaudRate = 115200; - 800142a: 4b10 ldr r3, [pc, #64] @ (800146c ) - 800142c: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 8001430: 605a str r2, [r3, #4] + 800169a: 4b10 ldr r3, [pc, #64] @ (80016dc ) + 800169c: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 80016a0: 605a str r2, [r3, #4] huart1.Init.WordLength = UART_WORDLENGTH_8B; - 8001432: 4b0e ldr r3, [pc, #56] @ (800146c ) - 8001434: 2200 movs r2, #0 - 8001436: 609a str r2, [r3, #8] + 80016a2: 4b0e ldr r3, [pc, #56] @ (80016dc ) + 80016a4: 2200 movs r2, #0 + 80016a6: 609a str r2, [r3, #8] huart1.Init.StopBits = UART_STOPBITS_1; - 8001438: 4b0c ldr r3, [pc, #48] @ (800146c ) - 800143a: 2200 movs r2, #0 - 800143c: 60da str r2, [r3, #12] + 80016a8: 4b0c ldr r3, [pc, #48] @ (80016dc ) + 80016aa: 2200 movs r2, #0 + 80016ac: 60da str r2, [r3, #12] huart1.Init.Parity = UART_PARITY_NONE; - 800143e: 4b0b ldr r3, [pc, #44] @ (800146c ) - 8001440: 2200 movs r2, #0 - 8001442: 611a str r2, [r3, #16] + 80016ae: 4b0b ldr r3, [pc, #44] @ (80016dc ) + 80016b0: 2200 movs r2, #0 + 80016b2: 611a str r2, [r3, #16] huart1.Init.Mode = UART_MODE_TX_RX; - 8001444: 4b09 ldr r3, [pc, #36] @ (800146c ) - 8001446: 220c movs r2, #12 - 8001448: 615a str r2, [r3, #20] + 80016b4: 4b09 ldr r3, [pc, #36] @ (80016dc ) + 80016b6: 220c movs r2, #12 + 80016b8: 615a str r2, [r3, #20] huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 800144a: 4b08 ldr r3, [pc, #32] @ (800146c ) - 800144c: 2200 movs r2, #0 - 800144e: 619a str r2, [r3, #24] + 80016ba: 4b08 ldr r3, [pc, #32] @ (80016dc ) + 80016bc: 2200 movs r2, #0 + 80016be: 619a str r2, [r3, #24] huart1.Init.OverSampling = UART_OVERSAMPLING_16; - 8001450: 4b06 ldr r3, [pc, #24] @ (800146c ) - 8001452: 2200 movs r2, #0 - 8001454: 61da str r2, [r3, #28] + 80016c0: 4b06 ldr r3, [pc, #24] @ (80016dc ) + 80016c2: 2200 movs r2, #0 + 80016c4: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart1) != HAL_OK) - 8001456: 4805 ldr r0, [pc, #20] @ (800146c ) - 8001458: f004 fb92 bl 8005b80 - 800145c: 4603 mov r3, r0 - 800145e: 2b00 cmp r3, #0 - 8001460: d001 beq.n 8001466 + 80016c6: 4805 ldr r0, [pc, #20] @ (80016dc ) + 80016c8: f004 fc46 bl 8005f58 + 80016cc: 4603 mov r3, r0 + 80016ce: 2b00 cmp r3, #0 + 80016d0: d001 beq.n 80016d6 { Error_Handler(); - 8001462: f7ff fd4b bl 8000efc + 80016d2: f7ff fd4b bl 800116c } /* USER CODE BEGIN USART1_Init 2 */ /* USER CODE END USART1_Init 2 */ } - 8001466: bf00 nop - 8001468: bd80 pop {r7, pc} - 800146a: bf00 nop - 800146c: 200003a0 .word 0x200003a0 - 8001470: 40011000 .word 0x40011000 + 80016d6: bf00 nop + 80016d8: bd80 pop {r7, pc} + 80016da: bf00 nop + 80016dc: 200009f0 .word 0x200009f0 + 80016e0: 40011000 .word 0x40011000 -08001474 : +080016e4 : /* USART2 init function */ void MX_USART2_UART_Init(void) { - 8001474: b580 push {r7, lr} - 8001476: af00 add r7, sp, #0 + 80016e4: b580 push {r7, lr} + 80016e6: af00 add r7, sp, #0 /* USER CODE END USART2_Init 0 */ /* USER CODE BEGIN USART2_Init 1 */ /* USER CODE END USART2_Init 1 */ huart2.Instance = USART2; - 8001478: 4b11 ldr r3, [pc, #68] @ (80014c0 ) - 800147a: 4a12 ldr r2, [pc, #72] @ (80014c4 ) - 800147c: 601a str r2, [r3, #0] + 80016e8: 4b11 ldr r3, [pc, #68] @ (8001730 ) + 80016ea: 4a12 ldr r2, [pc, #72] @ (8001734 ) + 80016ec: 601a str r2, [r3, #0] huart2.Init.BaudRate = 115200; - 800147e: 4b10 ldr r3, [pc, #64] @ (80014c0 ) - 8001480: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 8001484: 605a str r2, [r3, #4] + 80016ee: 4b10 ldr r3, [pc, #64] @ (8001730 ) + 80016f0: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 80016f4: 605a str r2, [r3, #4] huart2.Init.WordLength = UART_WORDLENGTH_8B; - 8001486: 4b0e ldr r3, [pc, #56] @ (80014c0 ) - 8001488: 2200 movs r2, #0 - 800148a: 609a str r2, [r3, #8] + 80016f6: 4b0e ldr r3, [pc, #56] @ (8001730 ) + 80016f8: 2200 movs r2, #0 + 80016fa: 609a str r2, [r3, #8] huart2.Init.StopBits = UART_STOPBITS_1; - 800148c: 4b0c ldr r3, [pc, #48] @ (80014c0 ) - 800148e: 2200 movs r2, #0 - 8001490: 60da str r2, [r3, #12] + 80016fc: 4b0c ldr r3, [pc, #48] @ (8001730 ) + 80016fe: 2200 movs r2, #0 + 8001700: 60da str r2, [r3, #12] huart2.Init.Parity = UART_PARITY_NONE; - 8001492: 4b0b ldr r3, [pc, #44] @ (80014c0 ) - 8001494: 2200 movs r2, #0 - 8001496: 611a str r2, [r3, #16] + 8001702: 4b0b ldr r3, [pc, #44] @ (8001730 ) + 8001704: 2200 movs r2, #0 + 8001706: 611a str r2, [r3, #16] huart2.Init.Mode = UART_MODE_TX_RX; - 8001498: 4b09 ldr r3, [pc, #36] @ (80014c0 ) - 800149a: 220c movs r2, #12 - 800149c: 615a str r2, [r3, #20] + 8001708: 4b09 ldr r3, [pc, #36] @ (8001730 ) + 800170a: 220c movs r2, #12 + 800170c: 615a str r2, [r3, #20] huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 800149e: 4b08 ldr r3, [pc, #32] @ (80014c0 ) - 80014a0: 2200 movs r2, #0 - 80014a2: 619a str r2, [r3, #24] + 800170e: 4b08 ldr r3, [pc, #32] @ (8001730 ) + 8001710: 2200 movs r2, #0 + 8001712: 619a str r2, [r3, #24] huart2.Init.OverSampling = UART_OVERSAMPLING_16; - 80014a4: 4b06 ldr r3, [pc, #24] @ (80014c0 ) - 80014a6: 2200 movs r2, #0 - 80014a8: 61da str r2, [r3, #28] + 8001714: 4b06 ldr r3, [pc, #24] @ (8001730 ) + 8001716: 2200 movs r2, #0 + 8001718: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart2) != HAL_OK) - 80014aa: 4805 ldr r0, [pc, #20] @ (80014c0 ) - 80014ac: f004 fb68 bl 8005b80 - 80014b0: 4603 mov r3, r0 - 80014b2: 2b00 cmp r3, #0 - 80014b4: d001 beq.n 80014ba + 800171a: 4805 ldr r0, [pc, #20] @ (8001730 ) + 800171c: f004 fc1c bl 8005f58 + 8001720: 4603 mov r3, r0 + 8001722: 2b00 cmp r3, #0 + 8001724: d001 beq.n 800172a { Error_Handler(); - 80014b6: f7ff fd21 bl 8000efc + 8001726: f7ff fd21 bl 800116c } /* USER CODE BEGIN USART2_Init 2 */ /* USER CODE END USART2_Init 2 */ } - 80014ba: bf00 nop - 80014bc: bd80 pop {r7, pc} - 80014be: bf00 nop - 80014c0: 200003e8 .word 0x200003e8 - 80014c4: 40004400 .word 0x40004400 + 800172a: bf00 nop + 800172c: bd80 pop {r7, pc} + 800172e: bf00 nop + 8001730: 20000a38 .word 0x20000a38 + 8001734: 40004400 .word 0x40004400 -080014c8 : +08001738 : void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle) { - 80014c8: b580 push {r7, lr} - 80014ca: b090 sub sp, #64 @ 0x40 - 80014cc: af00 add r7, sp, #0 - 80014ce: 6078 str r0, [r7, #4] + 8001738: b580 push {r7, lr} + 800173a: b090 sub sp, #64 @ 0x40 + 800173c: af00 add r7, sp, #0 + 800173e: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80014d0: f107 032c add.w r3, r7, #44 @ 0x2c - 80014d4: 2200 movs r2, #0 - 80014d6: 601a str r2, [r3, #0] - 80014d8: 605a str r2, [r3, #4] - 80014da: 609a str r2, [r3, #8] - 80014dc: 60da str r2, [r3, #12] - 80014de: 611a str r2, [r3, #16] + 8001740: f107 032c add.w r3, r7, #44 @ 0x2c + 8001744: 2200 movs r2, #0 + 8001746: 601a str r2, [r3, #0] + 8001748: 605a str r2, [r3, #4] + 800174a: 609a str r2, [r3, #8] + 800174c: 60da str r2, [r3, #12] + 800174e: 611a str r2, [r3, #16] if(uartHandle->Instance==UART4) - 80014e0: 687b ldr r3, [r7, #4] - 80014e2: 681b ldr r3, [r3, #0] - 80014e4: 4a4a ldr r2, [pc, #296] @ (8001610 ) - 80014e6: 4293 cmp r3, r2 - 80014e8: f040 80a0 bne.w 800162c + 8001750: 687b ldr r3, [r7, #4] + 8001752: 681b ldr r3, [r3, #0] + 8001754: 4a4a ldr r2, [pc, #296] @ (8001880 ) + 8001756: 4293 cmp r3, r2 + 8001758: f040 80a0 bne.w 800189c { /* USER CODE BEGIN UART4_MspInit 0 */ /* USER CODE END UART4_MspInit 0 */ /* UART4 clock enable */ __HAL_RCC_UART4_CLK_ENABLE(); - 80014ec: 2300 movs r3, #0 - 80014ee: 62bb str r3, [r7, #40] @ 0x28 - 80014f0: 4b48 ldr r3, [pc, #288] @ (8001614 ) - 80014f2: 6c1b ldr r3, [r3, #64] @ 0x40 - 80014f4: 4a47 ldr r2, [pc, #284] @ (8001614 ) - 80014f6: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 80014fa: 6413 str r3, [r2, #64] @ 0x40 - 80014fc: 4b45 ldr r3, [pc, #276] @ (8001614 ) - 80014fe: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001500: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 8001504: 62bb str r3, [r7, #40] @ 0x28 - 8001506: 6abb ldr r3, [r7, #40] @ 0x28 + 800175c: 2300 movs r3, #0 + 800175e: 62bb str r3, [r7, #40] @ 0x28 + 8001760: 4b48 ldr r3, [pc, #288] @ (8001884 ) + 8001762: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001764: 4a47 ldr r2, [pc, #284] @ (8001884 ) + 8001766: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 800176a: 6413 str r3, [r2, #64] @ 0x40 + 800176c: 4b45 ldr r3, [pc, #276] @ (8001884 ) + 800176e: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001770: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 8001774: 62bb str r3, [r7, #40] @ 0x28 + 8001776: 6abb ldr r3, [r7, #40] @ 0x28 __HAL_RCC_GPIOA_CLK_ENABLE(); - 8001508: 2300 movs r3, #0 - 800150a: 627b str r3, [r7, #36] @ 0x24 - 800150c: 4b41 ldr r3, [pc, #260] @ (8001614 ) - 800150e: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001510: 4a40 ldr r2, [pc, #256] @ (8001614 ) - 8001512: f043 0301 orr.w r3, r3, #1 - 8001516: 6313 str r3, [r2, #48] @ 0x30 - 8001518: 4b3e ldr r3, [pc, #248] @ (8001614 ) - 800151a: 6b1b ldr r3, [r3, #48] @ 0x30 - 800151c: f003 0301 and.w r3, r3, #1 - 8001520: 627b str r3, [r7, #36] @ 0x24 - 8001522: 6a7b ldr r3, [r7, #36] @ 0x24 + 8001778: 2300 movs r3, #0 + 800177a: 627b str r3, [r7, #36] @ 0x24 + 800177c: 4b41 ldr r3, [pc, #260] @ (8001884 ) + 800177e: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001780: 4a40 ldr r2, [pc, #256] @ (8001884 ) + 8001782: f043 0301 orr.w r3, r3, #1 + 8001786: 6313 str r3, [r2, #48] @ 0x30 + 8001788: 4b3e ldr r3, [pc, #248] @ (8001884 ) + 800178a: 6b1b ldr r3, [r3, #48] @ 0x30 + 800178c: f003 0301 and.w r3, r3, #1 + 8001790: 627b str r3, [r7, #36] @ 0x24 + 8001792: 6a7b ldr r3, [r7, #36] @ 0x24 /**UART4 GPIO Configuration PA0-WKUP ------> UART4_TX PA1 ------> UART4_RX */ GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1; - 8001524: 2303 movs r3, #3 - 8001526: 62fb str r3, [r7, #44] @ 0x2c + 8001794: 2303 movs r3, #3 + 8001796: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001528: 2302 movs r3, #2 - 800152a: 633b str r3, [r7, #48] @ 0x30 + 8001798: 2302 movs r3, #2 + 800179a: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800152c: 2300 movs r3, #0 - 800152e: 637b str r3, [r7, #52] @ 0x34 + 800179c: 2300 movs r3, #0 + 800179e: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8001530: 2303 movs r3, #3 - 8001532: 63bb str r3, [r7, #56] @ 0x38 + 80017a0: 2303 movs r3, #3 + 80017a2: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF8_UART4; - 8001534: 2308 movs r3, #8 - 8001536: 63fb str r3, [r7, #60] @ 0x3c + 80017a4: 2308 movs r3, #8 + 80017a6: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8001538: f107 032c add.w r3, r7, #44 @ 0x2c - 800153c: 4619 mov r1, r3 - 800153e: 4836 ldr r0, [pc, #216] @ (8001618 ) - 8001540: f001 f858 bl 80025f4 + 80017a8: f107 032c add.w r3, r7, #44 @ 0x2c + 80017ac: 4619 mov r1, r3 + 80017ae: 4836 ldr r0, [pc, #216] @ (8001888 ) + 80017b0: f001 f858 bl 8002864 /* UART4 DMA Init */ /* UART4_RX Init */ hdma_uart4_rx.Instance = DMA1_Stream2; - 8001544: 4b35 ldr r3, [pc, #212] @ (800161c ) - 8001546: 4a36 ldr r2, [pc, #216] @ (8001620 ) - 8001548: 601a str r2, [r3, #0] + 80017b4: 4b35 ldr r3, [pc, #212] @ (800188c ) + 80017b6: 4a36 ldr r2, [pc, #216] @ (8001890 ) + 80017b8: 601a str r2, [r3, #0] hdma_uart4_rx.Init.Channel = DMA_CHANNEL_4; - 800154a: 4b34 ldr r3, [pc, #208] @ (800161c ) - 800154c: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001550: 605a str r2, [r3, #4] + 80017ba: 4b34 ldr r3, [pc, #208] @ (800188c ) + 80017bc: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 80017c0: 605a str r2, [r3, #4] hdma_uart4_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 8001552: 4b32 ldr r3, [pc, #200] @ (800161c ) - 8001554: 2200 movs r2, #0 - 8001556: 609a str r2, [r3, #8] + 80017c2: 4b32 ldr r3, [pc, #200] @ (800188c ) + 80017c4: 2200 movs r2, #0 + 80017c6: 609a str r2, [r3, #8] hdma_uart4_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 8001558: 4b30 ldr r3, [pc, #192] @ (800161c ) - 800155a: 2200 movs r2, #0 - 800155c: 60da str r2, [r3, #12] + 80017c8: 4b30 ldr r3, [pc, #192] @ (800188c ) + 80017ca: 2200 movs r2, #0 + 80017cc: 60da str r2, [r3, #12] hdma_uart4_rx.Init.MemInc = DMA_MINC_ENABLE; - 800155e: 4b2f ldr r3, [pc, #188] @ (800161c ) - 8001560: f44f 6280 mov.w r2, #1024 @ 0x400 - 8001564: 611a str r2, [r3, #16] + 80017ce: 4b2f ldr r3, [pc, #188] @ (800188c ) + 80017d0: f44f 6280 mov.w r2, #1024 @ 0x400 + 80017d4: 611a str r2, [r3, #16] hdma_uart4_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 8001566: 4b2d ldr r3, [pc, #180] @ (800161c ) - 8001568: 2200 movs r2, #0 - 800156a: 615a str r2, [r3, #20] + 80017d6: 4b2d ldr r3, [pc, #180] @ (800188c ) + 80017d8: 2200 movs r2, #0 + 80017da: 615a str r2, [r3, #20] hdma_uart4_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 800156c: 4b2b ldr r3, [pc, #172] @ (800161c ) - 800156e: 2200 movs r2, #0 - 8001570: 619a str r2, [r3, #24] + 80017dc: 4b2b ldr r3, [pc, #172] @ (800188c ) + 80017de: 2200 movs r2, #0 + 80017e0: 619a str r2, [r3, #24] hdma_uart4_rx.Init.Mode = DMA_NORMAL; - 8001572: 4b2a ldr r3, [pc, #168] @ (800161c ) - 8001574: 2200 movs r2, #0 - 8001576: 61da str r2, [r3, #28] + 80017e2: 4b2a ldr r3, [pc, #168] @ (800188c ) + 80017e4: 2200 movs r2, #0 + 80017e6: 61da str r2, [r3, #28] hdma_uart4_rx.Init.Priority = DMA_PRIORITY_LOW; - 8001578: 4b28 ldr r3, [pc, #160] @ (800161c ) - 800157a: 2200 movs r2, #0 - 800157c: 621a str r2, [r3, #32] + 80017e8: 4b28 ldr r3, [pc, #160] @ (800188c ) + 80017ea: 2200 movs r2, #0 + 80017ec: 621a str r2, [r3, #32] hdma_uart4_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 800157e: 4b27 ldr r3, [pc, #156] @ (800161c ) - 8001580: 2200 movs r2, #0 - 8001582: 625a str r2, [r3, #36] @ 0x24 + 80017ee: 4b27 ldr r3, [pc, #156] @ (800188c ) + 80017f0: 2200 movs r2, #0 + 80017f2: 625a str r2, [r3, #36] @ 0x24 if (HAL_DMA_Init(&hdma_uart4_rx) != HAL_OK) - 8001584: 4825 ldr r0, [pc, #148] @ (800161c ) - 8001586: f000 fc33 bl 8001df0 - 800158a: 4603 mov r3, r0 - 800158c: 2b00 cmp r3, #0 - 800158e: d001 beq.n 8001594 + 80017f4: 4825 ldr r0, [pc, #148] @ (800188c ) + 80017f6: f000 fc33 bl 8002060 + 80017fa: 4603 mov r3, r0 + 80017fc: 2b00 cmp r3, #0 + 80017fe: d001 beq.n 8001804 { Error_Handler(); - 8001590: f7ff fcb4 bl 8000efc + 8001800: f7ff fcb4 bl 800116c } __HAL_LINKDMA(uartHandle,hdmarx,hdma_uart4_rx); - 8001594: 687b ldr r3, [r7, #4] - 8001596: 4a21 ldr r2, [pc, #132] @ (800161c ) - 8001598: 63da str r2, [r3, #60] @ 0x3c - 800159a: 4a20 ldr r2, [pc, #128] @ (800161c ) - 800159c: 687b ldr r3, [r7, #4] - 800159e: 6393 str r3, [r2, #56] @ 0x38 + 8001804: 687b ldr r3, [r7, #4] + 8001806: 4a21 ldr r2, [pc, #132] @ (800188c ) + 8001808: 63da str r2, [r3, #60] @ 0x3c + 800180a: 4a20 ldr r2, [pc, #128] @ (800188c ) + 800180c: 687b ldr r3, [r7, #4] + 800180e: 6393 str r3, [r2, #56] @ 0x38 /* UART4_TX Init */ hdma_uart4_tx.Instance = DMA1_Stream4; - 80015a0: 4b20 ldr r3, [pc, #128] @ (8001624 ) - 80015a2: 4a21 ldr r2, [pc, #132] @ (8001628 ) - 80015a4: 601a str r2, [r3, #0] + 8001810: 4b20 ldr r3, [pc, #128] @ (8001894 ) + 8001812: 4a21 ldr r2, [pc, #132] @ (8001898 ) + 8001814: 601a str r2, [r3, #0] hdma_uart4_tx.Init.Channel = DMA_CHANNEL_4; - 80015a6: 4b1f ldr r3, [pc, #124] @ (8001624 ) - 80015a8: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 80015ac: 605a str r2, [r3, #4] + 8001816: 4b1f ldr r3, [pc, #124] @ (8001894 ) + 8001818: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 800181c: 605a str r2, [r3, #4] hdma_uart4_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 80015ae: 4b1d ldr r3, [pc, #116] @ (8001624 ) - 80015b0: 2240 movs r2, #64 @ 0x40 - 80015b2: 609a str r2, [r3, #8] + 800181e: 4b1d ldr r3, [pc, #116] @ (8001894 ) + 8001820: 2240 movs r2, #64 @ 0x40 + 8001822: 609a str r2, [r3, #8] hdma_uart4_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 80015b4: 4b1b ldr r3, [pc, #108] @ (8001624 ) - 80015b6: 2200 movs r2, #0 - 80015b8: 60da str r2, [r3, #12] + 8001824: 4b1b ldr r3, [pc, #108] @ (8001894 ) + 8001826: 2200 movs r2, #0 + 8001828: 60da str r2, [r3, #12] hdma_uart4_tx.Init.MemInc = DMA_MINC_ENABLE; - 80015ba: 4b1a ldr r3, [pc, #104] @ (8001624 ) - 80015bc: f44f 6280 mov.w r2, #1024 @ 0x400 - 80015c0: 611a str r2, [r3, #16] + 800182a: 4b1a ldr r3, [pc, #104] @ (8001894 ) + 800182c: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001830: 611a str r2, [r3, #16] hdma_uart4_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80015c2: 4b18 ldr r3, [pc, #96] @ (8001624 ) - 80015c4: 2200 movs r2, #0 - 80015c6: 615a str r2, [r3, #20] + 8001832: 4b18 ldr r3, [pc, #96] @ (8001894 ) + 8001834: 2200 movs r2, #0 + 8001836: 615a str r2, [r3, #20] hdma_uart4_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80015c8: 4b16 ldr r3, [pc, #88] @ (8001624 ) - 80015ca: 2200 movs r2, #0 - 80015cc: 619a str r2, [r3, #24] + 8001838: 4b16 ldr r3, [pc, #88] @ (8001894 ) + 800183a: 2200 movs r2, #0 + 800183c: 619a str r2, [r3, #24] hdma_uart4_tx.Init.Mode = DMA_NORMAL; - 80015ce: 4b15 ldr r3, [pc, #84] @ (8001624 ) - 80015d0: 2200 movs r2, #0 - 80015d2: 61da str r2, [r3, #28] + 800183e: 4b15 ldr r3, [pc, #84] @ (8001894 ) + 8001840: 2200 movs r2, #0 + 8001842: 61da str r2, [r3, #28] hdma_uart4_tx.Init.Priority = DMA_PRIORITY_LOW; - 80015d4: 4b13 ldr r3, [pc, #76] @ (8001624 ) - 80015d6: 2200 movs r2, #0 - 80015d8: 621a str r2, [r3, #32] + 8001844: 4b13 ldr r3, [pc, #76] @ (8001894 ) + 8001846: 2200 movs r2, #0 + 8001848: 621a str r2, [r3, #32] hdma_uart4_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80015da: 4b12 ldr r3, [pc, #72] @ (8001624 ) - 80015dc: 2200 movs r2, #0 - 80015de: 625a str r2, [r3, #36] @ 0x24 + 800184a: 4b12 ldr r3, [pc, #72] @ (8001894 ) + 800184c: 2200 movs r2, #0 + 800184e: 625a str r2, [r3, #36] @ 0x24 if (HAL_DMA_Init(&hdma_uart4_tx) != HAL_OK) - 80015e0: 4810 ldr r0, [pc, #64] @ (8001624 ) - 80015e2: f000 fc05 bl 8001df0 - 80015e6: 4603 mov r3, r0 - 80015e8: 2b00 cmp r3, #0 - 80015ea: d001 beq.n 80015f0 + 8001850: 4810 ldr r0, [pc, #64] @ (8001894 ) + 8001852: f000 fc05 bl 8002060 + 8001856: 4603 mov r3, r0 + 8001858: 2b00 cmp r3, #0 + 800185a: d001 beq.n 8001860 { Error_Handler(); - 80015ec: f7ff fc86 bl 8000efc + 800185c: f7ff fc86 bl 800116c } __HAL_LINKDMA(uartHandle,hdmatx,hdma_uart4_tx); - 80015f0: 687b ldr r3, [r7, #4] - 80015f2: 4a0c ldr r2, [pc, #48] @ (8001624 ) - 80015f4: 639a str r2, [r3, #56] @ 0x38 - 80015f6: 4a0b ldr r2, [pc, #44] @ (8001624 ) - 80015f8: 687b ldr r3, [r7, #4] - 80015fa: 6393 str r3, [r2, #56] @ 0x38 + 8001860: 687b ldr r3, [r7, #4] + 8001862: 4a0c ldr r2, [pc, #48] @ (8001894 ) + 8001864: 639a str r2, [r3, #56] @ 0x38 + 8001866: 4a0b ldr r2, [pc, #44] @ (8001894 ) + 8001868: 687b ldr r3, [r7, #4] + 800186a: 6393 str r3, [r2, #56] @ 0x38 /* UART4 interrupt Init */ HAL_NVIC_SetPriority(UART4_IRQn, 5, 0); - 80015fc: 2200 movs r2, #0 - 80015fe: 2105 movs r1, #5 - 8001600: 2034 movs r0, #52 @ 0x34 - 8001602: f000 fbbe bl 8001d82 + 800186c: 2200 movs r2, #0 + 800186e: 2105 movs r1, #5 + 8001870: 2034 movs r0, #52 @ 0x34 + 8001872: f000 fbbe bl 8001ff2 HAL_NVIC_EnableIRQ(UART4_IRQn); - 8001606: 2034 movs r0, #52 @ 0x34 - 8001608: f000 fbd7 bl 8001dba + 8001876: 2034 movs r0, #52 @ 0x34 + 8001878: f000 fbd7 bl 800202a HAL_NVIC_EnableIRQ(USART2_IRQn); /* USER CODE BEGIN USART2_MspInit 1 */ /* USER CODE END USART2_MspInit 1 */ } } - 800160c: e202 b.n 8001a14 - 800160e: bf00 nop - 8001610: 40004c00 .word 0x40004c00 - 8001614: 40023800 .word 0x40023800 - 8001618: 40020000 .word 0x40020000 - 800161c: 20000430 .word 0x20000430 - 8001620: 40026040 .word 0x40026040 - 8001624: 20000490 .word 0x20000490 - 8001628: 40026070 .word 0x40026070 + 800187c: e202 b.n 8001c84 + 800187e: bf00 nop + 8001880: 40004c00 .word 0x40004c00 + 8001884: 40023800 .word 0x40023800 + 8001888: 40020000 .word 0x40020000 + 800188c: 20000a80 .word 0x20000a80 + 8001890: 40026040 .word 0x40026040 + 8001894: 20000ae0 .word 0x20000ae0 + 8001898: 40026070 .word 0x40026070 else if(uartHandle->Instance==UART5) - 800162c: 687b ldr r3, [r7, #4] - 800162e: 681b ldr r3, [r3, #0] - 8001630: 4a59 ldr r2, [pc, #356] @ (8001798 ) - 8001632: 4293 cmp r3, r2 - 8001634: f040 80c0 bne.w 80017b8 + 800189c: 687b ldr r3, [r7, #4] + 800189e: 681b ldr r3, [r3, #0] + 80018a0: 4a59 ldr r2, [pc, #356] @ (8001a08 ) + 80018a2: 4293 cmp r3, r2 + 80018a4: f040 80c0 bne.w 8001a28 __HAL_RCC_UART5_CLK_ENABLE(); - 8001638: 2300 movs r3, #0 - 800163a: 623b str r3, [r7, #32] - 800163c: 4b57 ldr r3, [pc, #348] @ (800179c ) - 800163e: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001640: 4a56 ldr r2, [pc, #344] @ (800179c ) - 8001642: f443 1380 orr.w r3, r3, #1048576 @ 0x100000 - 8001646: 6413 str r3, [r2, #64] @ 0x40 - 8001648: 4b54 ldr r3, [pc, #336] @ (800179c ) - 800164a: 6c1b ldr r3, [r3, #64] @ 0x40 - 800164c: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 8001650: 623b str r3, [r7, #32] - 8001652: 6a3b ldr r3, [r7, #32] + 80018a8: 2300 movs r3, #0 + 80018aa: 623b str r3, [r7, #32] + 80018ac: 4b57 ldr r3, [pc, #348] @ (8001a0c ) + 80018ae: 6c1b ldr r3, [r3, #64] @ 0x40 + 80018b0: 4a56 ldr r2, [pc, #344] @ (8001a0c ) + 80018b2: f443 1380 orr.w r3, r3, #1048576 @ 0x100000 + 80018b6: 6413 str r3, [r2, #64] @ 0x40 + 80018b8: 4b54 ldr r3, [pc, #336] @ (8001a0c ) + 80018ba: 6c1b ldr r3, [r3, #64] @ 0x40 + 80018bc: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 80018c0: 623b str r3, [r7, #32] + 80018c2: 6a3b ldr r3, [r7, #32] __HAL_RCC_GPIOC_CLK_ENABLE(); - 8001654: 2300 movs r3, #0 - 8001656: 61fb str r3, [r7, #28] - 8001658: 4b50 ldr r3, [pc, #320] @ (800179c ) - 800165a: 6b1b ldr r3, [r3, #48] @ 0x30 - 800165c: 4a4f ldr r2, [pc, #316] @ (800179c ) - 800165e: f043 0304 orr.w r3, r3, #4 - 8001662: 6313 str r3, [r2, #48] @ 0x30 - 8001664: 4b4d ldr r3, [pc, #308] @ (800179c ) - 8001666: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001668: f003 0304 and.w r3, r3, #4 - 800166c: 61fb str r3, [r7, #28] - 800166e: 69fb ldr r3, [r7, #28] + 80018c4: 2300 movs r3, #0 + 80018c6: 61fb str r3, [r7, #28] + 80018c8: 4b50 ldr r3, [pc, #320] @ (8001a0c ) + 80018ca: 6b1b ldr r3, [r3, #48] @ 0x30 + 80018cc: 4a4f ldr r2, [pc, #316] @ (8001a0c ) + 80018ce: f043 0304 orr.w r3, r3, #4 + 80018d2: 6313 str r3, [r2, #48] @ 0x30 + 80018d4: 4b4d ldr r3, [pc, #308] @ (8001a0c ) + 80018d6: 6b1b ldr r3, [r3, #48] @ 0x30 + 80018d8: f003 0304 and.w r3, r3, #4 + 80018dc: 61fb str r3, [r7, #28] + 80018de: 69fb ldr r3, [r7, #28] __HAL_RCC_GPIOD_CLK_ENABLE(); - 8001670: 2300 movs r3, #0 - 8001672: 61bb str r3, [r7, #24] - 8001674: 4b49 ldr r3, [pc, #292] @ (800179c ) - 8001676: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001678: 4a48 ldr r2, [pc, #288] @ (800179c ) - 800167a: f043 0308 orr.w r3, r3, #8 - 800167e: 6313 str r3, [r2, #48] @ 0x30 - 8001680: 4b46 ldr r3, [pc, #280] @ (800179c ) - 8001682: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001684: f003 0308 and.w r3, r3, #8 - 8001688: 61bb str r3, [r7, #24] - 800168a: 69bb ldr r3, [r7, #24] + 80018e0: 2300 movs r3, #0 + 80018e2: 61bb str r3, [r7, #24] + 80018e4: 4b49 ldr r3, [pc, #292] @ (8001a0c ) + 80018e6: 6b1b ldr r3, [r3, #48] @ 0x30 + 80018e8: 4a48 ldr r2, [pc, #288] @ (8001a0c ) + 80018ea: f043 0308 orr.w r3, r3, #8 + 80018ee: 6313 str r3, [r2, #48] @ 0x30 + 80018f0: 4b46 ldr r3, [pc, #280] @ (8001a0c ) + 80018f2: 6b1b ldr r3, [r3, #48] @ 0x30 + 80018f4: f003 0308 and.w r3, r3, #8 + 80018f8: 61bb str r3, [r7, #24] + 80018fa: 69bb ldr r3, [r7, #24] GPIO_InitStruct.Pin = GPIO_PIN_12; - 800168c: f44f 5380 mov.w r3, #4096 @ 0x1000 - 8001690: 62fb str r3, [r7, #44] @ 0x2c + 80018fc: f44f 5380 mov.w r3, #4096 @ 0x1000 + 8001900: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001692: 2302 movs r3, #2 - 8001694: 633b str r3, [r7, #48] @ 0x30 + 8001902: 2302 movs r3, #2 + 8001904: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001696: 2300 movs r3, #0 - 8001698: 637b str r3, [r7, #52] @ 0x34 + 8001906: 2300 movs r3, #0 + 8001908: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 800169a: 2303 movs r3, #3 - 800169c: 63bb str r3, [r7, #56] @ 0x38 + 800190a: 2303 movs r3, #3 + 800190c: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF8_UART5; - 800169e: 2308 movs r3, #8 - 80016a0: 63fb str r3, [r7, #60] @ 0x3c + 800190e: 2308 movs r3, #8 + 8001910: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); - 80016a2: f107 032c add.w r3, r7, #44 @ 0x2c - 80016a6: 4619 mov r1, r3 - 80016a8: 483d ldr r0, [pc, #244] @ (80017a0 ) - 80016aa: f000 ffa3 bl 80025f4 + 8001912: f107 032c add.w r3, r7, #44 @ 0x2c + 8001916: 4619 mov r1, r3 + 8001918: 483d ldr r0, [pc, #244] @ (8001a10 ) + 800191a: f000 ffa3 bl 8002864 GPIO_InitStruct.Pin = GPIO_PIN_2; - 80016ae: 2304 movs r3, #4 - 80016b0: 62fb str r3, [r7, #44] @ 0x2c + 800191e: 2304 movs r3, #4 + 8001920: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80016b2: 2302 movs r3, #2 - 80016b4: 633b str r3, [r7, #48] @ 0x30 + 8001922: 2302 movs r3, #2 + 8001924: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 80016b6: 2300 movs r3, #0 - 80016b8: 637b str r3, [r7, #52] @ 0x34 + 8001926: 2300 movs r3, #0 + 8001928: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 80016ba: 2303 movs r3, #3 - 80016bc: 63bb str r3, [r7, #56] @ 0x38 + 800192a: 2303 movs r3, #3 + 800192c: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF8_UART5; - 80016be: 2308 movs r3, #8 - 80016c0: 63fb str r3, [r7, #60] @ 0x3c + 800192e: 2308 movs r3, #8 + 8001930: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 80016c2: f107 032c add.w r3, r7, #44 @ 0x2c - 80016c6: 4619 mov r1, r3 - 80016c8: 4836 ldr r0, [pc, #216] @ (80017a4 ) - 80016ca: f000 ff93 bl 80025f4 + 8001932: f107 032c add.w r3, r7, #44 @ 0x2c + 8001936: 4619 mov r1, r3 + 8001938: 4836 ldr r0, [pc, #216] @ (8001a14 ) + 800193a: f000 ff93 bl 8002864 hdma_uart5_rx.Instance = DMA1_Stream0; - 80016ce: 4b36 ldr r3, [pc, #216] @ (80017a8 ) - 80016d0: 4a36 ldr r2, [pc, #216] @ (80017ac ) - 80016d2: 601a str r2, [r3, #0] + 800193e: 4b36 ldr r3, [pc, #216] @ (8001a18 ) + 8001940: 4a36 ldr r2, [pc, #216] @ (8001a1c ) + 8001942: 601a str r2, [r3, #0] hdma_uart5_rx.Init.Channel = DMA_CHANNEL_4; - 80016d4: 4b34 ldr r3, [pc, #208] @ (80017a8 ) - 80016d6: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 80016da: 605a str r2, [r3, #4] + 8001944: 4b34 ldr r3, [pc, #208] @ (8001a18 ) + 8001946: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 800194a: 605a str r2, [r3, #4] hdma_uart5_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 80016dc: 4b32 ldr r3, [pc, #200] @ (80017a8 ) - 80016de: 2200 movs r2, #0 - 80016e0: 609a str r2, [r3, #8] + 800194c: 4b32 ldr r3, [pc, #200] @ (8001a18 ) + 800194e: 2200 movs r2, #0 + 8001950: 609a str r2, [r3, #8] hdma_uart5_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 80016e2: 4b31 ldr r3, [pc, #196] @ (80017a8 ) - 80016e4: 2200 movs r2, #0 - 80016e6: 60da str r2, [r3, #12] + 8001952: 4b31 ldr r3, [pc, #196] @ (8001a18 ) + 8001954: 2200 movs r2, #0 + 8001956: 60da str r2, [r3, #12] hdma_uart5_rx.Init.MemInc = DMA_MINC_ENABLE; - 80016e8: 4b2f ldr r3, [pc, #188] @ (80017a8 ) - 80016ea: f44f 6280 mov.w r2, #1024 @ 0x400 - 80016ee: 611a str r2, [r3, #16] + 8001958: 4b2f ldr r3, [pc, #188] @ (8001a18 ) + 800195a: f44f 6280 mov.w r2, #1024 @ 0x400 + 800195e: 611a str r2, [r3, #16] hdma_uart5_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80016f0: 4b2d ldr r3, [pc, #180] @ (80017a8 ) - 80016f2: 2200 movs r2, #0 - 80016f4: 615a str r2, [r3, #20] - hdma_uart5_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80016f6: 4b2c ldr r3, [pc, #176] @ (80017a8 ) - 80016f8: 2200 movs r2, #0 - 80016fa: 619a str r2, [r3, #24] - hdma_uart5_rx.Init.Mode = DMA_NORMAL; - 80016fc: 4b2a ldr r3, [pc, #168] @ (80017a8 ) - 80016fe: 2200 movs r2, #0 - 8001700: 61da str r2, [r3, #28] - hdma_uart5_rx.Init.Priority = DMA_PRIORITY_LOW; - 8001702: 4b29 ldr r3, [pc, #164] @ (80017a8 ) - 8001704: 2200 movs r2, #0 - 8001706: 621a str r2, [r3, #32] - hdma_uart5_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001708: 4b27 ldr r3, [pc, #156] @ (80017a8 ) - 800170a: 2200 movs r2, #0 - 800170c: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_uart5_rx) != HAL_OK) - 800170e: 4826 ldr r0, [pc, #152] @ (80017a8 ) - 8001710: f000 fb6e bl 8001df0 - 8001714: 4603 mov r3, r0 - 8001716: 2b00 cmp r3, #0 - 8001718: d001 beq.n 800171e - Error_Handler(); - 800171a: f7ff fbef bl 8000efc - __HAL_LINKDMA(uartHandle,hdmarx,hdma_uart5_rx); - 800171e: 687b ldr r3, [r7, #4] - 8001720: 4a21 ldr r2, [pc, #132] @ (80017a8 ) - 8001722: 63da str r2, [r3, #60] @ 0x3c - 8001724: 4a20 ldr r2, [pc, #128] @ (80017a8 ) - 8001726: 687b ldr r3, [r7, #4] - 8001728: 6393 str r3, [r2, #56] @ 0x38 - hdma_uart5_tx.Instance = DMA1_Stream7; - 800172a: 4b21 ldr r3, [pc, #132] @ (80017b0 ) - 800172c: 4a21 ldr r2, [pc, #132] @ (80017b4 ) - 800172e: 601a str r2, [r3, #0] - hdma_uart5_tx.Init.Channel = DMA_CHANNEL_4; - 8001730: 4b1f ldr r3, [pc, #124] @ (80017b0 ) - 8001732: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001736: 605a str r2, [r3, #4] - hdma_uart5_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 8001738: 4b1d ldr r3, [pc, #116] @ (80017b0 ) - 800173a: 2240 movs r2, #64 @ 0x40 - 800173c: 609a str r2, [r3, #8] - hdma_uart5_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 800173e: 4b1c ldr r3, [pc, #112] @ (80017b0 ) - 8001740: 2200 movs r2, #0 - 8001742: 60da str r2, [r3, #12] - hdma_uart5_tx.Init.MemInc = DMA_MINC_ENABLE; - 8001744: 4b1a ldr r3, [pc, #104] @ (80017b0 ) - 8001746: f44f 6280 mov.w r2, #1024 @ 0x400 - 800174a: 611a str r2, [r3, #16] - hdma_uart5_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 800174c: 4b18 ldr r3, [pc, #96] @ (80017b0 ) - 800174e: 2200 movs r2, #0 - 8001750: 615a str r2, [r3, #20] - hdma_uart5_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 8001752: 4b17 ldr r3, [pc, #92] @ (80017b0 ) - 8001754: 2200 movs r2, #0 - 8001756: 619a str r2, [r3, #24] - hdma_uart5_tx.Init.Mode = DMA_NORMAL; - 8001758: 4b15 ldr r3, [pc, #84] @ (80017b0 ) - 800175a: 2200 movs r2, #0 - 800175c: 61da str r2, [r3, #28] - hdma_uart5_tx.Init.Priority = DMA_PRIORITY_LOW; - 800175e: 4b14 ldr r3, [pc, #80] @ (80017b0 ) - 8001760: 2200 movs r2, #0 - 8001762: 621a str r2, [r3, #32] - hdma_uart5_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001764: 4b12 ldr r3, [pc, #72] @ (80017b0 ) - 8001766: 2200 movs r2, #0 - 8001768: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_uart5_tx) != HAL_OK) - 800176a: 4811 ldr r0, [pc, #68] @ (80017b0 ) - 800176c: f000 fb40 bl 8001df0 - 8001770: 4603 mov r3, r0 - 8001772: 2b00 cmp r3, #0 - 8001774: d001 beq.n 800177a - Error_Handler(); - 8001776: f7ff fbc1 bl 8000efc - __HAL_LINKDMA(uartHandle,hdmatx,hdma_uart5_tx); - 800177a: 687b ldr r3, [r7, #4] - 800177c: 4a0c ldr r2, [pc, #48] @ (80017b0 ) - 800177e: 639a str r2, [r3, #56] @ 0x38 - 8001780: 4a0b ldr r2, [pc, #44] @ (80017b0 ) - 8001782: 687b ldr r3, [r7, #4] - 8001784: 6393 str r3, [r2, #56] @ 0x38 - HAL_NVIC_SetPriority(UART5_IRQn, 5, 0); - 8001786: 2200 movs r2, #0 - 8001788: 2105 movs r1, #5 - 800178a: 2035 movs r0, #53 @ 0x35 - 800178c: f000 faf9 bl 8001d82 - HAL_NVIC_EnableIRQ(UART5_IRQn); - 8001790: 2035 movs r0, #53 @ 0x35 - 8001792: f000 fb12 bl 8001dba -} - 8001796: e13d b.n 8001a14 - 8001798: 40005000 .word 0x40005000 - 800179c: 40023800 .word 0x40023800 - 80017a0: 40020800 .word 0x40020800 - 80017a4: 40020c00 .word 0x40020c00 - 80017a8: 200004f0 .word 0x200004f0 - 80017ac: 40026010 .word 0x40026010 - 80017b0: 20000550 .word 0x20000550 - 80017b4: 400260b8 .word 0x400260b8 - else if(uartHandle->Instance==USART1) - 80017b8: 687b ldr r3, [r7, #4] - 80017ba: 681b ldr r3, [r3, #0] - 80017bc: 4a97 ldr r2, [pc, #604] @ (8001a1c ) - 80017be: 4293 cmp r3, r2 - 80017c0: f040 8092 bne.w 80018e8 - __HAL_RCC_USART1_CLK_ENABLE(); - 80017c4: 2300 movs r3, #0 - 80017c6: 617b str r3, [r7, #20] - 80017c8: 4b95 ldr r3, [pc, #596] @ (8001a20 ) - 80017ca: 6c5b ldr r3, [r3, #68] @ 0x44 - 80017cc: 4a94 ldr r2, [pc, #592] @ (8001a20 ) - 80017ce: f043 0310 orr.w r3, r3, #16 - 80017d2: 6453 str r3, [r2, #68] @ 0x44 - 80017d4: 4b92 ldr r3, [pc, #584] @ (8001a20 ) - 80017d6: 6c5b ldr r3, [r3, #68] @ 0x44 - 80017d8: f003 0310 and.w r3, r3, #16 - 80017dc: 617b str r3, [r7, #20] - 80017de: 697b ldr r3, [r7, #20] - __HAL_RCC_GPIOA_CLK_ENABLE(); - 80017e0: 2300 movs r3, #0 - 80017e2: 613b str r3, [r7, #16] - 80017e4: 4b8e ldr r3, [pc, #568] @ (8001a20 ) - 80017e6: 6b1b ldr r3, [r3, #48] @ 0x30 - 80017e8: 4a8d ldr r2, [pc, #564] @ (8001a20 ) - 80017ea: f043 0301 orr.w r3, r3, #1 - 80017ee: 6313 str r3, [r2, #48] @ 0x30 - 80017f0: 4b8b ldr r3, [pc, #556] @ (8001a20 ) - 80017f2: 6b1b ldr r3, [r3, #48] @ 0x30 - 80017f4: f003 0301 and.w r3, r3, #1 - 80017f8: 613b str r3, [r7, #16] - 80017fa: 693b ldr r3, [r7, #16] - GPIO_InitStruct.Pin = GPIO_PIN_9|GPIO_PIN_10; - 80017fc: f44f 63c0 mov.w r3, #1536 @ 0x600 - 8001800: 62fb str r3, [r7, #44] @ 0x2c - GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001802: 2302 movs r3, #2 - 8001804: 633b str r3, [r7, #48] @ 0x30 - GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001806: 2300 movs r3, #0 - 8001808: 637b str r3, [r7, #52] @ 0x34 - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 800180a: 2303 movs r3, #3 - 800180c: 63bb str r3, [r7, #56] @ 0x38 - GPIO_InitStruct.Alternate = GPIO_AF7_USART1; - 800180e: 2307 movs r3, #7 - 8001810: 63fb str r3, [r7, #60] @ 0x3c - HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8001812: f107 032c add.w r3, r7, #44 @ 0x2c - 8001816: 4619 mov r1, r3 - 8001818: 4882 ldr r0, [pc, #520] @ (8001a24 ) - 800181a: f000 feeb bl 80025f4 - hdma_usart1_rx.Instance = DMA2_Stream2; - 800181e: 4b82 ldr r3, [pc, #520] @ (8001a28 ) - 8001820: 4a82 ldr r2, [pc, #520] @ (8001a2c ) - 8001822: 601a str r2, [r3, #0] - hdma_usart1_rx.Init.Channel = DMA_CHANNEL_4; - 8001824: 4b80 ldr r3, [pc, #512] @ (8001a28 ) - 8001826: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 800182a: 605a str r2, [r3, #4] - hdma_usart1_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 800182c: 4b7e ldr r3, [pc, #504] @ (8001a28 ) - 800182e: 2200 movs r2, #0 - 8001830: 609a str r2, [r3, #8] - hdma_usart1_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 8001832: 4b7d ldr r3, [pc, #500] @ (8001a28 ) - 8001834: 2200 movs r2, #0 - 8001836: 60da str r2, [r3, #12] - hdma_usart1_rx.Init.MemInc = DMA_MINC_ENABLE; - 8001838: 4b7b ldr r3, [pc, #492] @ (8001a28 ) - 800183a: f44f 6280 mov.w r2, #1024 @ 0x400 - 800183e: 611a str r2, [r3, #16] - hdma_usart1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 8001840: 4b79 ldr r3, [pc, #484] @ (8001a28 ) - 8001842: 2200 movs r2, #0 - 8001844: 615a str r2, [r3, #20] - hdma_usart1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 8001846: 4b78 ldr r3, [pc, #480] @ (8001a28 ) - 8001848: 2200 movs r2, #0 - 800184a: 619a str r2, [r3, #24] - hdma_usart1_rx.Init.Mode = DMA_NORMAL; - 800184c: 4b76 ldr r3, [pc, #472] @ (8001a28 ) - 800184e: 2200 movs r2, #0 - 8001850: 61da str r2, [r3, #28] - hdma_usart1_rx.Init.Priority = DMA_PRIORITY_LOW; - 8001852: 4b75 ldr r3, [pc, #468] @ (8001a28 ) - 8001854: 2200 movs r2, #0 - 8001856: 621a str r2, [r3, #32] - hdma_usart1_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001858: 4b73 ldr r3, [pc, #460] @ (8001a28 ) - 800185a: 2200 movs r2, #0 - 800185c: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart1_rx) != HAL_OK) - 800185e: 4872 ldr r0, [pc, #456] @ (8001a28 ) - 8001860: f000 fac6 bl 8001df0 - 8001864: 4603 mov r3, r0 - 8001866: 2b00 cmp r3, #0 - 8001868: d001 beq.n 800186e - Error_Handler(); - 800186a: f7ff fb47 bl 8000efc - __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart1_rx); - 800186e: 687b ldr r3, [r7, #4] - 8001870: 4a6d ldr r2, [pc, #436] @ (8001a28 ) - 8001872: 63da str r2, [r3, #60] @ 0x3c - 8001874: 4a6c ldr r2, [pc, #432] @ (8001a28 ) - 8001876: 687b ldr r3, [r7, #4] - 8001878: 6393 str r3, [r2, #56] @ 0x38 - hdma_usart1_tx.Instance = DMA2_Stream7; - 800187a: 4b6d ldr r3, [pc, #436] @ (8001a30 ) - 800187c: 4a6d ldr r2, [pc, #436] @ (8001a34 ) - 800187e: 601a str r2, [r3, #0] - hdma_usart1_tx.Init.Channel = DMA_CHANNEL_4; - 8001880: 4b6b ldr r3, [pc, #428] @ (8001a30 ) - 8001882: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001886: 605a str r2, [r3, #4] - hdma_usart1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 8001888: 4b69 ldr r3, [pc, #420] @ (8001a30 ) - 800188a: 2240 movs r2, #64 @ 0x40 - 800188c: 609a str r2, [r3, #8] - hdma_usart1_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 800188e: 4b68 ldr r3, [pc, #416] @ (8001a30 ) - 8001890: 2200 movs r2, #0 - 8001892: 60da str r2, [r3, #12] - hdma_usart1_tx.Init.MemInc = DMA_MINC_ENABLE; - 8001894: 4b66 ldr r3, [pc, #408] @ (8001a30 ) - 8001896: f44f 6280 mov.w r2, #1024 @ 0x400 - 800189a: 611a str r2, [r3, #16] - hdma_usart1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 800189c: 4b64 ldr r3, [pc, #400] @ (8001a30 ) - 800189e: 2200 movs r2, #0 - 80018a0: 615a str r2, [r3, #20] - hdma_usart1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80018a2: 4b63 ldr r3, [pc, #396] @ (8001a30 ) - 80018a4: 2200 movs r2, #0 - 80018a6: 619a str r2, [r3, #24] - hdma_usart1_tx.Init.Mode = DMA_NORMAL; - 80018a8: 4b61 ldr r3, [pc, #388] @ (8001a30 ) - 80018aa: 2200 movs r2, #0 - 80018ac: 61da str r2, [r3, #28] - hdma_usart1_tx.Init.Priority = DMA_PRIORITY_LOW; - 80018ae: 4b60 ldr r3, [pc, #384] @ (8001a30 ) - 80018b0: 2200 movs r2, #0 - 80018b2: 621a str r2, [r3, #32] - hdma_usart1_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80018b4: 4b5e ldr r3, [pc, #376] @ (8001a30 ) - 80018b6: 2200 movs r2, #0 - 80018b8: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart1_tx) != HAL_OK) - 80018ba: 485d ldr r0, [pc, #372] @ (8001a30 ) - 80018bc: f000 fa98 bl 8001df0 - 80018c0: 4603 mov r3, r0 - 80018c2: 2b00 cmp r3, #0 - 80018c4: d001 beq.n 80018ca - Error_Handler(); - 80018c6: f7ff fb19 bl 8000efc - __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart1_tx); - 80018ca: 687b ldr r3, [r7, #4] - 80018cc: 4a58 ldr r2, [pc, #352] @ (8001a30 ) - 80018ce: 639a str r2, [r3, #56] @ 0x38 - 80018d0: 4a57 ldr r2, [pc, #348] @ (8001a30 ) - 80018d2: 687b ldr r3, [r7, #4] - 80018d4: 6393 str r3, [r2, #56] @ 0x38 - HAL_NVIC_SetPriority(USART1_IRQn, 5, 0); - 80018d6: 2200 movs r2, #0 - 80018d8: 2105 movs r1, #5 - 80018da: 2025 movs r0, #37 @ 0x25 - 80018dc: f000 fa51 bl 8001d82 - HAL_NVIC_EnableIRQ(USART1_IRQn); - 80018e0: 2025 movs r0, #37 @ 0x25 - 80018e2: f000 fa6a bl 8001dba -} - 80018e6: e095 b.n 8001a14 - else if(uartHandle->Instance==USART2) - 80018e8: 687b ldr r3, [r7, #4] - 80018ea: 681b ldr r3, [r3, #0] - 80018ec: 4a52 ldr r2, [pc, #328] @ (8001a38 ) - 80018ee: 4293 cmp r3, r2 - 80018f0: f040 8090 bne.w 8001a14 - __HAL_RCC_USART2_CLK_ENABLE(); - 80018f4: 2300 movs r3, #0 - 80018f6: 60fb str r3, [r7, #12] - 80018f8: 4b49 ldr r3, [pc, #292] @ (8001a20 ) - 80018fa: 6c1b ldr r3, [r3, #64] @ 0x40 - 80018fc: 4a48 ldr r2, [pc, #288] @ (8001a20 ) - 80018fe: f443 3300 orr.w r3, r3, #131072 @ 0x20000 - 8001902: 6413 str r3, [r2, #64] @ 0x40 - 8001904: 4b46 ldr r3, [pc, #280] @ (8001a20 ) - 8001906: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001908: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800190c: 60fb str r3, [r7, #12] - 800190e: 68fb ldr r3, [r7, #12] - __HAL_RCC_GPIOA_CLK_ENABLE(); - 8001910: 2300 movs r3, #0 - 8001912: 60bb str r3, [r7, #8] - 8001914: 4b42 ldr r3, [pc, #264] @ (8001a20 ) - 8001916: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001918: 4a41 ldr r2, [pc, #260] @ (8001a20 ) - 800191a: f043 0301 orr.w r3, r3, #1 - 800191e: 6313 str r3, [r2, #48] @ 0x30 - 8001920: 4b3f ldr r3, [pc, #252] @ (8001a20 ) - 8001922: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001924: f003 0301 and.w r3, r3, #1 - 8001928: 60bb str r3, [r7, #8] - 800192a: 68bb ldr r3, [r7, #8] - GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; - 800192c: 230c movs r3, #12 - 800192e: 62fb str r3, [r7, #44] @ 0x2c - GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001930: 2302 movs r3, #2 - 8001932: 633b str r3, [r7, #48] @ 0x30 - GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001934: 2300 movs r3, #0 - 8001936: 637b str r3, [r7, #52] @ 0x34 - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8001938: 2303 movs r3, #3 - 800193a: 63bb str r3, [r7, #56] @ 0x38 - GPIO_InitStruct.Alternate = GPIO_AF7_USART2; - 800193c: 2307 movs r3, #7 - 800193e: 63fb str r3, [r7, #60] @ 0x3c - HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8001940: f107 032c add.w r3, r7, #44 @ 0x2c - 8001944: 4619 mov r1, r3 - 8001946: 4837 ldr r0, [pc, #220] @ (8001a24 ) - 8001948: f000 fe54 bl 80025f4 - hdma_usart2_rx.Instance = DMA1_Stream5; - 800194c: 4b3b ldr r3, [pc, #236] @ (8001a3c ) - 800194e: 4a3c ldr r2, [pc, #240] @ (8001a40 ) - 8001950: 601a str r2, [r3, #0] - hdma_usart2_rx.Init.Channel = DMA_CHANNEL_4; - 8001952: 4b3a ldr r3, [pc, #232] @ (8001a3c ) - 8001954: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001958: 605a str r2, [r3, #4] - hdma_usart2_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 800195a: 4b38 ldr r3, [pc, #224] @ (8001a3c ) - 800195c: 2200 movs r2, #0 - 800195e: 609a str r2, [r3, #8] - hdma_usart2_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 8001960: 4b36 ldr r3, [pc, #216] @ (8001a3c ) + 8001960: 4b2d ldr r3, [pc, #180] @ (8001a18 ) 8001962: 2200 movs r2, #0 - 8001964: 60da str r2, [r3, #12] - hdma_usart2_rx.Init.MemInc = DMA_MINC_ENABLE; - 8001966: 4b35 ldr r3, [pc, #212] @ (8001a3c ) - 8001968: f44f 6280 mov.w r2, #1024 @ 0x400 - 800196c: 611a str r2, [r3, #16] - hdma_usart2_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 800196e: 4b33 ldr r3, [pc, #204] @ (8001a3c ) - 8001970: 2200 movs r2, #0 - 8001972: 615a str r2, [r3, #20] - hdma_usart2_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 8001974: 4b31 ldr r3, [pc, #196] @ (8001a3c ) - 8001976: 2200 movs r2, #0 - 8001978: 619a str r2, [r3, #24] - hdma_usart2_rx.Init.Mode = DMA_NORMAL; - 800197a: 4b30 ldr r3, [pc, #192] @ (8001a3c ) - 800197c: 2200 movs r2, #0 - 800197e: 61da str r2, [r3, #28] - hdma_usart2_rx.Init.Priority = DMA_PRIORITY_LOW; - 8001980: 4b2e ldr r3, [pc, #184] @ (8001a3c ) - 8001982: 2200 movs r2, #0 - 8001984: 621a str r2, [r3, #32] - hdma_usart2_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001986: 4b2d ldr r3, [pc, #180] @ (8001a3c ) - 8001988: 2200 movs r2, #0 - 800198a: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart2_rx) != HAL_OK) - 800198c: 482b ldr r0, [pc, #172] @ (8001a3c ) - 800198e: f000 fa2f bl 8001df0 - 8001992: 4603 mov r3, r0 - 8001994: 2b00 cmp r3, #0 - 8001996: d001 beq.n 800199c + 8001964: 615a str r2, [r3, #20] + hdma_uart5_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 8001966: 4b2c ldr r3, [pc, #176] @ (8001a18 ) + 8001968: 2200 movs r2, #0 + 800196a: 619a str r2, [r3, #24] + hdma_uart5_rx.Init.Mode = DMA_NORMAL; + 800196c: 4b2a ldr r3, [pc, #168] @ (8001a18 ) + 800196e: 2200 movs r2, #0 + 8001970: 61da str r2, [r3, #28] + hdma_uart5_rx.Init.Priority = DMA_PRIORITY_LOW; + 8001972: 4b29 ldr r3, [pc, #164] @ (8001a18 ) + 8001974: 2200 movs r2, #0 + 8001976: 621a str r2, [r3, #32] + hdma_uart5_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001978: 4b27 ldr r3, [pc, #156] @ (8001a18 ) + 800197a: 2200 movs r2, #0 + 800197c: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_uart5_rx) != HAL_OK) + 800197e: 4826 ldr r0, [pc, #152] @ (8001a18 ) + 8001980: f000 fb6e bl 8002060 + 8001984: 4603 mov r3, r0 + 8001986: 2b00 cmp r3, #0 + 8001988: d001 beq.n 800198e Error_Handler(); - 8001998: f7ff fab0 bl 8000efc - __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart2_rx); - 800199c: 687b ldr r3, [r7, #4] - 800199e: 4a27 ldr r2, [pc, #156] @ (8001a3c ) - 80019a0: 63da str r2, [r3, #60] @ 0x3c - 80019a2: 4a26 ldr r2, [pc, #152] @ (8001a3c ) - 80019a4: 687b ldr r3, [r7, #4] - 80019a6: 6393 str r3, [r2, #56] @ 0x38 - hdma_usart2_tx.Instance = DMA1_Stream6; - 80019a8: 4b26 ldr r3, [pc, #152] @ (8001a44 ) - 80019aa: 4a27 ldr r2, [pc, #156] @ (8001a48 ) - 80019ac: 601a str r2, [r3, #0] - hdma_usart2_tx.Init.Channel = DMA_CHANNEL_4; - 80019ae: 4b25 ldr r3, [pc, #148] @ (8001a44 ) - 80019b0: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 80019b4: 605a str r2, [r3, #4] - hdma_usart2_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 80019b6: 4b23 ldr r3, [pc, #140] @ (8001a44 ) - 80019b8: 2240 movs r2, #64 @ 0x40 - 80019ba: 609a str r2, [r3, #8] - hdma_usart2_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 80019bc: 4b21 ldr r3, [pc, #132] @ (8001a44 ) + 800198a: f7ff fbef bl 800116c + __HAL_LINKDMA(uartHandle,hdmarx,hdma_uart5_rx); + 800198e: 687b ldr r3, [r7, #4] + 8001990: 4a21 ldr r2, [pc, #132] @ (8001a18 ) + 8001992: 63da str r2, [r3, #60] @ 0x3c + 8001994: 4a20 ldr r2, [pc, #128] @ (8001a18 ) + 8001996: 687b ldr r3, [r7, #4] + 8001998: 6393 str r3, [r2, #56] @ 0x38 + hdma_uart5_tx.Instance = DMA1_Stream7; + 800199a: 4b21 ldr r3, [pc, #132] @ (8001a20 ) + 800199c: 4a21 ldr r2, [pc, #132] @ (8001a24 ) + 800199e: 601a str r2, [r3, #0] + hdma_uart5_tx.Init.Channel = DMA_CHANNEL_4; + 80019a0: 4b1f ldr r3, [pc, #124] @ (8001a20 ) + 80019a2: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 80019a6: 605a str r2, [r3, #4] + hdma_uart5_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + 80019a8: 4b1d ldr r3, [pc, #116] @ (8001a20 ) + 80019aa: 2240 movs r2, #64 @ 0x40 + 80019ac: 609a str r2, [r3, #8] + hdma_uart5_tx.Init.PeriphInc = DMA_PINC_DISABLE; + 80019ae: 4b1c ldr r3, [pc, #112] @ (8001a20 ) + 80019b0: 2200 movs r2, #0 + 80019b2: 60da str r2, [r3, #12] + hdma_uart5_tx.Init.MemInc = DMA_MINC_ENABLE; + 80019b4: 4b1a ldr r3, [pc, #104] @ (8001a20 ) + 80019b6: f44f 6280 mov.w r2, #1024 @ 0x400 + 80019ba: 611a str r2, [r3, #16] + hdma_uart5_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 80019bc: 4b18 ldr r3, [pc, #96] @ (8001a20 ) 80019be: 2200 movs r2, #0 - 80019c0: 60da str r2, [r3, #12] - hdma_usart2_tx.Init.MemInc = DMA_MINC_ENABLE; - 80019c2: 4b20 ldr r3, [pc, #128] @ (8001a44 ) - 80019c4: f44f 6280 mov.w r2, #1024 @ 0x400 - 80019c8: 611a str r2, [r3, #16] - hdma_usart2_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80019ca: 4b1e ldr r3, [pc, #120] @ (8001a44 ) - 80019cc: 2200 movs r2, #0 - 80019ce: 615a str r2, [r3, #20] - hdma_usart2_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80019d0: 4b1c ldr r3, [pc, #112] @ (8001a44 ) - 80019d2: 2200 movs r2, #0 - 80019d4: 619a str r2, [r3, #24] - hdma_usart2_tx.Init.Mode = DMA_NORMAL; - 80019d6: 4b1b ldr r3, [pc, #108] @ (8001a44 ) - 80019d8: 2200 movs r2, #0 - 80019da: 61da str r2, [r3, #28] - hdma_usart2_tx.Init.Priority = DMA_PRIORITY_LOW; - 80019dc: 4b19 ldr r3, [pc, #100] @ (8001a44 ) - 80019de: 2200 movs r2, #0 - 80019e0: 621a str r2, [r3, #32] - hdma_usart2_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80019e2: 4b18 ldr r3, [pc, #96] @ (8001a44 ) - 80019e4: 2200 movs r2, #0 - 80019e6: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart2_tx) != HAL_OK) - 80019e8: 4816 ldr r0, [pc, #88] @ (8001a44 ) - 80019ea: f000 fa01 bl 8001df0 - 80019ee: 4603 mov r3, r0 - 80019f0: 2b00 cmp r3, #0 - 80019f2: d001 beq.n 80019f8 + 80019c0: 615a str r2, [r3, #20] + hdma_uart5_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 80019c2: 4b17 ldr r3, [pc, #92] @ (8001a20 ) + 80019c4: 2200 movs r2, #0 + 80019c6: 619a str r2, [r3, #24] + hdma_uart5_tx.Init.Mode = DMA_NORMAL; + 80019c8: 4b15 ldr r3, [pc, #84] @ (8001a20 ) + 80019ca: 2200 movs r2, #0 + 80019cc: 61da str r2, [r3, #28] + hdma_uart5_tx.Init.Priority = DMA_PRIORITY_LOW; + 80019ce: 4b14 ldr r3, [pc, #80] @ (8001a20 ) + 80019d0: 2200 movs r2, #0 + 80019d2: 621a str r2, [r3, #32] + hdma_uart5_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 80019d4: 4b12 ldr r3, [pc, #72] @ (8001a20 ) + 80019d6: 2200 movs r2, #0 + 80019d8: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_uart5_tx) != HAL_OK) + 80019da: 4811 ldr r0, [pc, #68] @ (8001a20 ) + 80019dc: f000 fb40 bl 8002060 + 80019e0: 4603 mov r3, r0 + 80019e2: 2b00 cmp r3, #0 + 80019e4: d001 beq.n 80019ea Error_Handler(); - 80019f4: f7ff fa82 bl 8000efc - __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart2_tx); - 80019f8: 687b ldr r3, [r7, #4] - 80019fa: 4a12 ldr r2, [pc, #72] @ (8001a44 ) - 80019fc: 639a str r2, [r3, #56] @ 0x38 - 80019fe: 4a11 ldr r2, [pc, #68] @ (8001a44 ) - 8001a00: 687b ldr r3, [r7, #4] - 8001a02: 6393 str r3, [r2, #56] @ 0x38 - HAL_NVIC_SetPriority(USART2_IRQn, 5, 0); - 8001a04: 2200 movs r2, #0 - 8001a06: 2105 movs r1, #5 - 8001a08: 2026 movs r0, #38 @ 0x26 - 8001a0a: f000 f9ba bl 8001d82 - HAL_NVIC_EnableIRQ(USART2_IRQn); - 8001a0e: 2026 movs r0, #38 @ 0x26 - 8001a10: f000 f9d3 bl 8001dba + 80019e6: f7ff fbc1 bl 800116c + __HAL_LINKDMA(uartHandle,hdmatx,hdma_uart5_tx); + 80019ea: 687b ldr r3, [r7, #4] + 80019ec: 4a0c ldr r2, [pc, #48] @ (8001a20 ) + 80019ee: 639a str r2, [r3, #56] @ 0x38 + 80019f0: 4a0b ldr r2, [pc, #44] @ (8001a20 ) + 80019f2: 687b ldr r3, [r7, #4] + 80019f4: 6393 str r3, [r2, #56] @ 0x38 + HAL_NVIC_SetPriority(UART5_IRQn, 5, 0); + 80019f6: 2200 movs r2, #0 + 80019f8: 2105 movs r1, #5 + 80019fa: 2035 movs r0, #53 @ 0x35 + 80019fc: f000 faf9 bl 8001ff2 + HAL_NVIC_EnableIRQ(UART5_IRQn); + 8001a00: 2035 movs r0, #53 @ 0x35 + 8001a02: f000 fb12 bl 800202a } - 8001a14: bf00 nop - 8001a16: 3740 adds r7, #64 @ 0x40 - 8001a18: 46bd mov sp, r7 - 8001a1a: bd80 pop {r7, pc} - 8001a1c: 40011000 .word 0x40011000 - 8001a20: 40023800 .word 0x40023800 - 8001a24: 40020000 .word 0x40020000 - 8001a28: 200005b0 .word 0x200005b0 - 8001a2c: 40026440 .word 0x40026440 - 8001a30: 20000610 .word 0x20000610 - 8001a34: 400264b8 .word 0x400264b8 - 8001a38: 40004400 .word 0x40004400 - 8001a3c: 20000670 .word 0x20000670 - 8001a40: 40026088 .word 0x40026088 - 8001a44: 200006d0 .word 0x200006d0 - 8001a48: 400260a0 .word 0x400260a0 + 8001a06: e13d b.n 8001c84 + 8001a08: 40005000 .word 0x40005000 + 8001a0c: 40023800 .word 0x40023800 + 8001a10: 40020800 .word 0x40020800 + 8001a14: 40020c00 .word 0x40020c00 + 8001a18: 20000b40 .word 0x20000b40 + 8001a1c: 40026010 .word 0x40026010 + 8001a20: 20000ba0 .word 0x20000ba0 + 8001a24: 400260b8 .word 0x400260b8 + else if(uartHandle->Instance==USART1) + 8001a28: 687b ldr r3, [r7, #4] + 8001a2a: 681b ldr r3, [r3, #0] + 8001a2c: 4a97 ldr r2, [pc, #604] @ (8001c8c ) + 8001a2e: 4293 cmp r3, r2 + 8001a30: f040 8092 bne.w 8001b58 + __HAL_RCC_USART1_CLK_ENABLE(); + 8001a34: 2300 movs r3, #0 + 8001a36: 617b str r3, [r7, #20] + 8001a38: 4b95 ldr r3, [pc, #596] @ (8001c90 ) + 8001a3a: 6c5b ldr r3, [r3, #68] @ 0x44 + 8001a3c: 4a94 ldr r2, [pc, #592] @ (8001c90 ) + 8001a3e: f043 0310 orr.w r3, r3, #16 + 8001a42: 6453 str r3, [r2, #68] @ 0x44 + 8001a44: 4b92 ldr r3, [pc, #584] @ (8001c90 ) + 8001a46: 6c5b ldr r3, [r3, #68] @ 0x44 + 8001a48: f003 0310 and.w r3, r3, #16 + 8001a4c: 617b str r3, [r7, #20] + 8001a4e: 697b ldr r3, [r7, #20] + __HAL_RCC_GPIOA_CLK_ENABLE(); + 8001a50: 2300 movs r3, #0 + 8001a52: 613b str r3, [r7, #16] + 8001a54: 4b8e ldr r3, [pc, #568] @ (8001c90 ) + 8001a56: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001a58: 4a8d ldr r2, [pc, #564] @ (8001c90 ) + 8001a5a: f043 0301 orr.w r3, r3, #1 + 8001a5e: 6313 str r3, [r2, #48] @ 0x30 + 8001a60: 4b8b ldr r3, [pc, #556] @ (8001c90 ) + 8001a62: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001a64: f003 0301 and.w r3, r3, #1 + 8001a68: 613b str r3, [r7, #16] + 8001a6a: 693b ldr r3, [r7, #16] + GPIO_InitStruct.Pin = GPIO_PIN_9|GPIO_PIN_10; + 8001a6c: f44f 63c0 mov.w r3, #1536 @ 0x600 + 8001a70: 62fb str r3, [r7, #44] @ 0x2c + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + 8001a72: 2302 movs r3, #2 + 8001a74: 633b str r3, [r7, #48] @ 0x30 + GPIO_InitStruct.Pull = GPIO_NOPULL; + 8001a76: 2300 movs r3, #0 + 8001a78: 637b str r3, [r7, #52] @ 0x34 + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + 8001a7a: 2303 movs r3, #3 + 8001a7c: 63bb str r3, [r7, #56] @ 0x38 + GPIO_InitStruct.Alternate = GPIO_AF7_USART1; + 8001a7e: 2307 movs r3, #7 + 8001a80: 63fb str r3, [r7, #60] @ 0x3c + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + 8001a82: f107 032c add.w r3, r7, #44 @ 0x2c + 8001a86: 4619 mov r1, r3 + 8001a88: 4882 ldr r0, [pc, #520] @ (8001c94 ) + 8001a8a: f000 feeb bl 8002864 + hdma_usart1_rx.Instance = DMA2_Stream2; + 8001a8e: 4b82 ldr r3, [pc, #520] @ (8001c98 ) + 8001a90: 4a82 ldr r2, [pc, #520] @ (8001c9c ) + 8001a92: 601a str r2, [r3, #0] + hdma_usart1_rx.Init.Channel = DMA_CHANNEL_4; + 8001a94: 4b80 ldr r3, [pc, #512] @ (8001c98 ) + 8001a96: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001a9a: 605a str r2, [r3, #4] + hdma_usart1_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + 8001a9c: 4b7e ldr r3, [pc, #504] @ (8001c98 ) + 8001a9e: 2200 movs r2, #0 + 8001aa0: 609a str r2, [r3, #8] + hdma_usart1_rx.Init.PeriphInc = DMA_PINC_DISABLE; + 8001aa2: 4b7d ldr r3, [pc, #500] @ (8001c98 ) + 8001aa4: 2200 movs r2, #0 + 8001aa6: 60da str r2, [r3, #12] + hdma_usart1_rx.Init.MemInc = DMA_MINC_ENABLE; + 8001aa8: 4b7b ldr r3, [pc, #492] @ (8001c98 ) + 8001aaa: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001aae: 611a str r2, [r3, #16] + hdma_usart1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 8001ab0: 4b79 ldr r3, [pc, #484] @ (8001c98 ) + 8001ab2: 2200 movs r2, #0 + 8001ab4: 615a str r2, [r3, #20] + hdma_usart1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 8001ab6: 4b78 ldr r3, [pc, #480] @ (8001c98 ) + 8001ab8: 2200 movs r2, #0 + 8001aba: 619a str r2, [r3, #24] + hdma_usart1_rx.Init.Mode = DMA_NORMAL; + 8001abc: 4b76 ldr r3, [pc, #472] @ (8001c98 ) + 8001abe: 2200 movs r2, #0 + 8001ac0: 61da str r2, [r3, #28] + hdma_usart1_rx.Init.Priority = DMA_PRIORITY_LOW; + 8001ac2: 4b75 ldr r3, [pc, #468] @ (8001c98 ) + 8001ac4: 2200 movs r2, #0 + 8001ac6: 621a str r2, [r3, #32] + hdma_usart1_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001ac8: 4b73 ldr r3, [pc, #460] @ (8001c98 ) + 8001aca: 2200 movs r2, #0 + 8001acc: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart1_rx) != HAL_OK) + 8001ace: 4872 ldr r0, [pc, #456] @ (8001c98 ) + 8001ad0: f000 fac6 bl 8002060 + 8001ad4: 4603 mov r3, r0 + 8001ad6: 2b00 cmp r3, #0 + 8001ad8: d001 beq.n 8001ade + Error_Handler(); + 8001ada: f7ff fb47 bl 800116c + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart1_rx); + 8001ade: 687b ldr r3, [r7, #4] + 8001ae0: 4a6d ldr r2, [pc, #436] @ (8001c98 ) + 8001ae2: 63da str r2, [r3, #60] @ 0x3c + 8001ae4: 4a6c ldr r2, [pc, #432] @ (8001c98 ) + 8001ae6: 687b ldr r3, [r7, #4] + 8001ae8: 6393 str r3, [r2, #56] @ 0x38 + hdma_usart1_tx.Instance = DMA2_Stream7; + 8001aea: 4b6d ldr r3, [pc, #436] @ (8001ca0 ) + 8001aec: 4a6d ldr r2, [pc, #436] @ (8001ca4 ) + 8001aee: 601a str r2, [r3, #0] + hdma_usart1_tx.Init.Channel = DMA_CHANNEL_4; + 8001af0: 4b6b ldr r3, [pc, #428] @ (8001ca0 ) + 8001af2: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001af6: 605a str r2, [r3, #4] + hdma_usart1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + 8001af8: 4b69 ldr r3, [pc, #420] @ (8001ca0 ) + 8001afa: 2240 movs r2, #64 @ 0x40 + 8001afc: 609a str r2, [r3, #8] + hdma_usart1_tx.Init.PeriphInc = DMA_PINC_DISABLE; + 8001afe: 4b68 ldr r3, [pc, #416] @ (8001ca0 ) + 8001b00: 2200 movs r2, #0 + 8001b02: 60da str r2, [r3, #12] + hdma_usart1_tx.Init.MemInc = DMA_MINC_ENABLE; + 8001b04: 4b66 ldr r3, [pc, #408] @ (8001ca0 ) + 8001b06: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001b0a: 611a str r2, [r3, #16] + hdma_usart1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 8001b0c: 4b64 ldr r3, [pc, #400] @ (8001ca0 ) + 8001b0e: 2200 movs r2, #0 + 8001b10: 615a str r2, [r3, #20] + hdma_usart1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 8001b12: 4b63 ldr r3, [pc, #396] @ (8001ca0 ) + 8001b14: 2200 movs r2, #0 + 8001b16: 619a str r2, [r3, #24] + hdma_usart1_tx.Init.Mode = DMA_NORMAL; + 8001b18: 4b61 ldr r3, [pc, #388] @ (8001ca0 ) + 8001b1a: 2200 movs r2, #0 + 8001b1c: 61da str r2, [r3, #28] + hdma_usart1_tx.Init.Priority = DMA_PRIORITY_LOW; + 8001b1e: 4b60 ldr r3, [pc, #384] @ (8001ca0 ) + 8001b20: 2200 movs r2, #0 + 8001b22: 621a str r2, [r3, #32] + hdma_usart1_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001b24: 4b5e ldr r3, [pc, #376] @ (8001ca0 ) + 8001b26: 2200 movs r2, #0 + 8001b28: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart1_tx) != HAL_OK) + 8001b2a: 485d ldr r0, [pc, #372] @ (8001ca0 ) + 8001b2c: f000 fa98 bl 8002060 + 8001b30: 4603 mov r3, r0 + 8001b32: 2b00 cmp r3, #0 + 8001b34: d001 beq.n 8001b3a + Error_Handler(); + 8001b36: f7ff fb19 bl 800116c + __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart1_tx); + 8001b3a: 687b ldr r3, [r7, #4] + 8001b3c: 4a58 ldr r2, [pc, #352] @ (8001ca0 ) + 8001b3e: 639a str r2, [r3, #56] @ 0x38 + 8001b40: 4a57 ldr r2, [pc, #348] @ (8001ca0 ) + 8001b42: 687b ldr r3, [r7, #4] + 8001b44: 6393 str r3, [r2, #56] @ 0x38 + HAL_NVIC_SetPriority(USART1_IRQn, 5, 0); + 8001b46: 2200 movs r2, #0 + 8001b48: 2105 movs r1, #5 + 8001b4a: 2025 movs r0, #37 @ 0x25 + 8001b4c: f000 fa51 bl 8001ff2 + HAL_NVIC_EnableIRQ(USART1_IRQn); + 8001b50: 2025 movs r0, #37 @ 0x25 + 8001b52: f000 fa6a bl 800202a +} + 8001b56: e095 b.n 8001c84 + else if(uartHandle->Instance==USART2) + 8001b58: 687b ldr r3, [r7, #4] + 8001b5a: 681b ldr r3, [r3, #0] + 8001b5c: 4a52 ldr r2, [pc, #328] @ (8001ca8 ) + 8001b5e: 4293 cmp r3, r2 + 8001b60: f040 8090 bne.w 8001c84 + __HAL_RCC_USART2_CLK_ENABLE(); + 8001b64: 2300 movs r3, #0 + 8001b66: 60fb str r3, [r7, #12] + 8001b68: 4b49 ldr r3, [pc, #292] @ (8001c90 ) + 8001b6a: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001b6c: 4a48 ldr r2, [pc, #288] @ (8001c90 ) + 8001b6e: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 8001b72: 6413 str r3, [r2, #64] @ 0x40 + 8001b74: 4b46 ldr r3, [pc, #280] @ (8001c90 ) + 8001b76: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001b78: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8001b7c: 60fb str r3, [r7, #12] + 8001b7e: 68fb ldr r3, [r7, #12] + __HAL_RCC_GPIOA_CLK_ENABLE(); + 8001b80: 2300 movs r3, #0 + 8001b82: 60bb str r3, [r7, #8] + 8001b84: 4b42 ldr r3, [pc, #264] @ (8001c90 ) + 8001b86: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001b88: 4a41 ldr r2, [pc, #260] @ (8001c90 ) + 8001b8a: f043 0301 orr.w r3, r3, #1 + 8001b8e: 6313 str r3, [r2, #48] @ 0x30 + 8001b90: 4b3f ldr r3, [pc, #252] @ (8001c90 ) + 8001b92: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001b94: f003 0301 and.w r3, r3, #1 + 8001b98: 60bb str r3, [r7, #8] + 8001b9a: 68bb ldr r3, [r7, #8] + GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; + 8001b9c: 230c movs r3, #12 + 8001b9e: 62fb str r3, [r7, #44] @ 0x2c + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + 8001ba0: 2302 movs r3, #2 + 8001ba2: 633b str r3, [r7, #48] @ 0x30 + GPIO_InitStruct.Pull = GPIO_NOPULL; + 8001ba4: 2300 movs r3, #0 + 8001ba6: 637b str r3, [r7, #52] @ 0x34 + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + 8001ba8: 2303 movs r3, #3 + 8001baa: 63bb str r3, [r7, #56] @ 0x38 + GPIO_InitStruct.Alternate = GPIO_AF7_USART2; + 8001bac: 2307 movs r3, #7 + 8001bae: 63fb str r3, [r7, #60] @ 0x3c + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + 8001bb0: f107 032c add.w r3, r7, #44 @ 0x2c + 8001bb4: 4619 mov r1, r3 + 8001bb6: 4837 ldr r0, [pc, #220] @ (8001c94 ) + 8001bb8: f000 fe54 bl 8002864 + hdma_usart2_rx.Instance = DMA1_Stream5; + 8001bbc: 4b3b ldr r3, [pc, #236] @ (8001cac ) + 8001bbe: 4a3c ldr r2, [pc, #240] @ (8001cb0 ) + 8001bc0: 601a str r2, [r3, #0] + hdma_usart2_rx.Init.Channel = DMA_CHANNEL_4; + 8001bc2: 4b3a ldr r3, [pc, #232] @ (8001cac ) + 8001bc4: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001bc8: 605a str r2, [r3, #4] + hdma_usart2_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + 8001bca: 4b38 ldr r3, [pc, #224] @ (8001cac ) + 8001bcc: 2200 movs r2, #0 + 8001bce: 609a str r2, [r3, #8] + hdma_usart2_rx.Init.PeriphInc = DMA_PINC_DISABLE; + 8001bd0: 4b36 ldr r3, [pc, #216] @ (8001cac ) + 8001bd2: 2200 movs r2, #0 + 8001bd4: 60da str r2, [r3, #12] + hdma_usart2_rx.Init.MemInc = DMA_MINC_ENABLE; + 8001bd6: 4b35 ldr r3, [pc, #212] @ (8001cac ) + 8001bd8: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001bdc: 611a str r2, [r3, #16] + hdma_usart2_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 8001bde: 4b33 ldr r3, [pc, #204] @ (8001cac ) + 8001be0: 2200 movs r2, #0 + 8001be2: 615a str r2, [r3, #20] + hdma_usart2_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 8001be4: 4b31 ldr r3, [pc, #196] @ (8001cac ) + 8001be6: 2200 movs r2, #0 + 8001be8: 619a str r2, [r3, #24] + hdma_usart2_rx.Init.Mode = DMA_NORMAL; + 8001bea: 4b30 ldr r3, [pc, #192] @ (8001cac ) + 8001bec: 2200 movs r2, #0 + 8001bee: 61da str r2, [r3, #28] + hdma_usart2_rx.Init.Priority = DMA_PRIORITY_LOW; + 8001bf0: 4b2e ldr r3, [pc, #184] @ (8001cac ) + 8001bf2: 2200 movs r2, #0 + 8001bf4: 621a str r2, [r3, #32] + hdma_usart2_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001bf6: 4b2d ldr r3, [pc, #180] @ (8001cac ) + 8001bf8: 2200 movs r2, #0 + 8001bfa: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart2_rx) != HAL_OK) + 8001bfc: 482b ldr r0, [pc, #172] @ (8001cac ) + 8001bfe: f000 fa2f bl 8002060 + 8001c02: 4603 mov r3, r0 + 8001c04: 2b00 cmp r3, #0 + 8001c06: d001 beq.n 8001c0c + Error_Handler(); + 8001c08: f7ff fab0 bl 800116c + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart2_rx); + 8001c0c: 687b ldr r3, [r7, #4] + 8001c0e: 4a27 ldr r2, [pc, #156] @ (8001cac ) + 8001c10: 63da str r2, [r3, #60] @ 0x3c + 8001c12: 4a26 ldr r2, [pc, #152] @ (8001cac ) + 8001c14: 687b ldr r3, [r7, #4] + 8001c16: 6393 str r3, [r2, #56] @ 0x38 + hdma_usart2_tx.Instance = DMA1_Stream6; + 8001c18: 4b26 ldr r3, [pc, #152] @ (8001cb4 ) + 8001c1a: 4a27 ldr r2, [pc, #156] @ (8001cb8 ) + 8001c1c: 601a str r2, [r3, #0] + hdma_usart2_tx.Init.Channel = DMA_CHANNEL_4; + 8001c1e: 4b25 ldr r3, [pc, #148] @ (8001cb4 ) + 8001c20: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001c24: 605a str r2, [r3, #4] + hdma_usart2_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + 8001c26: 4b23 ldr r3, [pc, #140] @ (8001cb4 ) + 8001c28: 2240 movs r2, #64 @ 0x40 + 8001c2a: 609a str r2, [r3, #8] + hdma_usart2_tx.Init.PeriphInc = DMA_PINC_DISABLE; + 8001c2c: 4b21 ldr r3, [pc, #132] @ (8001cb4 ) + 8001c2e: 2200 movs r2, #0 + 8001c30: 60da str r2, [r3, #12] + hdma_usart2_tx.Init.MemInc = DMA_MINC_ENABLE; + 8001c32: 4b20 ldr r3, [pc, #128] @ (8001cb4 ) + 8001c34: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001c38: 611a str r2, [r3, #16] + hdma_usart2_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 8001c3a: 4b1e ldr r3, [pc, #120] @ (8001cb4 ) + 8001c3c: 2200 movs r2, #0 + 8001c3e: 615a str r2, [r3, #20] + hdma_usart2_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 8001c40: 4b1c ldr r3, [pc, #112] @ (8001cb4 ) + 8001c42: 2200 movs r2, #0 + 8001c44: 619a str r2, [r3, #24] + hdma_usart2_tx.Init.Mode = DMA_NORMAL; + 8001c46: 4b1b ldr r3, [pc, #108] @ (8001cb4 ) + 8001c48: 2200 movs r2, #0 + 8001c4a: 61da str r2, [r3, #28] + hdma_usart2_tx.Init.Priority = DMA_PRIORITY_LOW; + 8001c4c: 4b19 ldr r3, [pc, #100] @ (8001cb4 ) + 8001c4e: 2200 movs r2, #0 + 8001c50: 621a str r2, [r3, #32] + hdma_usart2_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001c52: 4b18 ldr r3, [pc, #96] @ (8001cb4 ) + 8001c54: 2200 movs r2, #0 + 8001c56: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart2_tx) != HAL_OK) + 8001c58: 4816 ldr r0, [pc, #88] @ (8001cb4 ) + 8001c5a: f000 fa01 bl 8002060 + 8001c5e: 4603 mov r3, r0 + 8001c60: 2b00 cmp r3, #0 + 8001c62: d001 beq.n 8001c68 + Error_Handler(); + 8001c64: f7ff fa82 bl 800116c + __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart2_tx); + 8001c68: 687b ldr r3, [r7, #4] + 8001c6a: 4a12 ldr r2, [pc, #72] @ (8001cb4 ) + 8001c6c: 639a str r2, [r3, #56] @ 0x38 + 8001c6e: 4a11 ldr r2, [pc, #68] @ (8001cb4 ) + 8001c70: 687b ldr r3, [r7, #4] + 8001c72: 6393 str r3, [r2, #56] @ 0x38 + HAL_NVIC_SetPriority(USART2_IRQn, 5, 0); + 8001c74: 2200 movs r2, #0 + 8001c76: 2105 movs r1, #5 + 8001c78: 2026 movs r0, #38 @ 0x26 + 8001c7a: f000 f9ba bl 8001ff2 + HAL_NVIC_EnableIRQ(USART2_IRQn); + 8001c7e: 2026 movs r0, #38 @ 0x26 + 8001c80: f000 f9d3 bl 800202a +} + 8001c84: bf00 nop + 8001c86: 3740 adds r7, #64 @ 0x40 + 8001c88: 46bd mov sp, r7 + 8001c8a: bd80 pop {r7, pc} + 8001c8c: 40011000 .word 0x40011000 + 8001c90: 40023800 .word 0x40023800 + 8001c94: 40020000 .word 0x40020000 + 8001c98: 20000c00 .word 0x20000c00 + 8001c9c: 40026440 .word 0x40026440 + 8001ca0: 20000c60 .word 0x20000c60 + 8001ca4: 400264b8 .word 0x400264b8 + 8001ca8: 40004400 .word 0x40004400 + 8001cac: 20000cc0 .word 0x20000cc0 + 8001cb0: 40026088 .word 0x40026088 + 8001cb4: 20000d20 .word 0x20000d20 + 8001cb8: 400260a0 .word 0x400260a0 -08001a4c : +08001cbc : .section .text.Reset_Handler .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: ldr sp, =_estack /* set stack pointer */ - 8001a4c: f8df d034 ldr.w sp, [pc, #52] @ 8001a84 + 8001cbc: f8df d034 ldr.w sp, [pc, #52] @ 8001cf4 /* Call the clock system initialization function.*/ bl SystemInit - 8001a50: f7ff fb34 bl 80010bc + 8001cc0: f7ff fb34 bl 800132c /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 8001a54: 480c ldr r0, [pc, #48] @ (8001a88 ) + 8001cc4: 480c ldr r0, [pc, #48] @ (8001cf8 ) ldr r1, =_edata - 8001a56: 490d ldr r1, [pc, #52] @ (8001a8c ) + 8001cc6: 490d ldr r1, [pc, #52] @ (8001cfc ) ldr r2, =_sidata - 8001a58: 4a0d ldr r2, [pc, #52] @ (8001a90 ) + 8001cc8: 4a0d ldr r2, [pc, #52] @ (8001d00 ) movs r3, #0 - 8001a5a: 2300 movs r3, #0 + 8001cca: 2300 movs r3, #0 b LoopCopyDataInit - 8001a5c: e002 b.n 8001a64 + 8001ccc: e002 b.n 8001cd4 -08001a5e : +08001cce : CopyDataInit: ldr r4, [r2, r3] - 8001a5e: 58d4 ldr r4, [r2, r3] + 8001cce: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 8001a60: 50c4 str r4, [r0, r3] + 8001cd0: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 8001a62: 3304 adds r3, #4 + 8001cd2: 3304 adds r3, #4 -08001a64 : +08001cd4 : LoopCopyDataInit: adds r4, r0, r3 - 8001a64: 18c4 adds r4, r0, r3 + 8001cd4: 18c4 adds r4, r0, r3 cmp r4, r1 - 8001a66: 428c cmp r4, r1 + 8001cd6: 428c cmp r4, r1 bcc CopyDataInit - 8001a68: d3f9 bcc.n 8001a5e + 8001cd8: d3f9 bcc.n 8001cce /* Zero fill the bss segment. */ ldr r2, =_sbss - 8001a6a: 4a0a ldr r2, [pc, #40] @ (8001a94 ) + 8001cda: 4a0a ldr r2, [pc, #40] @ (8001d04 ) ldr r4, =_ebss - 8001a6c: 4c0a ldr r4, [pc, #40] @ (8001a98 ) + 8001cdc: 4c0a ldr r4, [pc, #40] @ (8001d08 ) movs r3, #0 - 8001a6e: 2300 movs r3, #0 + 8001cde: 2300 movs r3, #0 b LoopFillZerobss - 8001a70: e001 b.n 8001a76 + 8001ce0: e001 b.n 8001ce6 -08001a72 : +08001ce2 : FillZerobss: str r3, [r2] - 8001a72: 6013 str r3, [r2, #0] + 8001ce2: 6013 str r3, [r2, #0] adds r2, r2, #4 - 8001a74: 3204 adds r2, #4 + 8001ce4: 3204 adds r2, #4 -08001a76 : +08001ce6 : LoopFillZerobss: cmp r2, r4 - 8001a76: 42a2 cmp r2, r4 + 8001ce6: 42a2 cmp r2, r4 bcc FillZerobss - 8001a78: d3fb bcc.n 8001a72 + 8001ce8: d3fb bcc.n 8001ce2 /* Call static constructors */ bl __libc_init_array - 8001a7a: f008 fffd bl 800aa78 <__libc_init_array> + 8001cea: f009 f8b1 bl 800ae50 <__libc_init_array> /* Call the application's entry point.*/ bl main - 8001a7e: f7fe fed3 bl 8000828
+ 8001cee: f7fe fe1b bl 8000928
bx lr - 8001a82: 4770 bx lr + 8001cf2: 4770 bx lr ldr sp, =_estack /* set stack pointer */ - 8001a84: 20020000 .word 0x20020000 + 8001cf4: 20020000 .word 0x20020000 ldr r0, =_sdata - 8001a88: 20000000 .word 0x20000000 + 8001cf8: 20000000 .word 0x20000000 ldr r1, =_edata - 8001a8c: 200001a0 .word 0x200001a0 + 8001cfc: 200001a0 .word 0x200001a0 ldr r2, =_sidata - 8001a90: 0800ab44 .word 0x0800ab44 + 8001d00: 0800af38 .word 0x0800af38 ldr r2, =_sbss - 8001a94: 200001a0 .word 0x200001a0 + 8001d04: 200001a0 .word 0x200001a0 ldr r4, =_ebss - 8001a98: 2000110c .word 0x2000110c + 8001d08: 2000175c .word 0x2000175c -08001a9c : +08001d0c : * @retval None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 8001a9c: e7fe b.n 8001a9c + 8001d0c: e7fe b.n 8001d0c ... -08001aa0 : +08001d10 : * need to ensure that the SysTick time base is always set to 1 millisecond * to have correct HAL operation. * @retval HAL status */ HAL_StatusTypeDef HAL_Init(void) { - 8001aa0: b580 push {r7, lr} - 8001aa2: af00 add r7, sp, #0 + 8001d10: b580 push {r7, lr} + 8001d12: af00 add r7, sp, #0 /* Configure Flash prefetch, Instruction cache, Data cache */ #if (INSTRUCTION_CACHE_ENABLE != 0U) __HAL_FLASH_INSTRUCTION_CACHE_ENABLE(); - 8001aa4: 4b0e ldr r3, [pc, #56] @ (8001ae0 ) - 8001aa6: 681b ldr r3, [r3, #0] - 8001aa8: 4a0d ldr r2, [pc, #52] @ (8001ae0 ) - 8001aaa: f443 7300 orr.w r3, r3, #512 @ 0x200 - 8001aae: 6013 str r3, [r2, #0] + 8001d14: 4b0e ldr r3, [pc, #56] @ (8001d50 ) + 8001d16: 681b ldr r3, [r3, #0] + 8001d18: 4a0d ldr r2, [pc, #52] @ (8001d50 ) + 8001d1a: f443 7300 orr.w r3, r3, #512 @ 0x200 + 8001d1e: 6013 str r3, [r2, #0] #endif /* INSTRUCTION_CACHE_ENABLE */ #if (DATA_CACHE_ENABLE != 0U) __HAL_FLASH_DATA_CACHE_ENABLE(); - 8001ab0: 4b0b ldr r3, [pc, #44] @ (8001ae0 ) - 8001ab2: 681b ldr r3, [r3, #0] - 8001ab4: 4a0a ldr r2, [pc, #40] @ (8001ae0 ) - 8001ab6: f443 6380 orr.w r3, r3, #1024 @ 0x400 - 8001aba: 6013 str r3, [r2, #0] + 8001d20: 4b0b ldr r3, [pc, #44] @ (8001d50 ) + 8001d22: 681b ldr r3, [r3, #0] + 8001d24: 4a0a ldr r2, [pc, #40] @ (8001d50 ) + 8001d26: f443 6380 orr.w r3, r3, #1024 @ 0x400 + 8001d2a: 6013 str r3, [r2, #0] #endif /* DATA_CACHE_ENABLE */ #if (PREFETCH_ENABLE != 0U) __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); - 8001abc: 4b08 ldr r3, [pc, #32] @ (8001ae0 ) - 8001abe: 681b ldr r3, [r3, #0] - 8001ac0: 4a07 ldr r2, [pc, #28] @ (8001ae0 ) - 8001ac2: f443 7380 orr.w r3, r3, #256 @ 0x100 - 8001ac6: 6013 str r3, [r2, #0] + 8001d2c: 4b08 ldr r3, [pc, #32] @ (8001d50 ) + 8001d2e: 681b ldr r3, [r3, #0] + 8001d30: 4a07 ldr r2, [pc, #28] @ (8001d50 ) + 8001d32: f443 7380 orr.w r3, r3, #256 @ 0x100 + 8001d36: 6013 str r3, [r2, #0] #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8001ac8: 2003 movs r0, #3 - 8001aca: f000 f94f bl 8001d6c + 8001d38: 2003 movs r0, #3 + 8001d3a: f000 f94f bl 8001fdc /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 8001ace: 200f movs r0, #15 - 8001ad0: f000 f808 bl 8001ae4 + 8001d3e: 200f movs r0, #15 + 8001d40: f000 f808 bl 8001d54 /* Init the low level hardware */ HAL_MspInit(); - 8001ad4: f7ff fa18 bl 8000f08 + 8001d44: f7ff fa18 bl 8001178 /* Return function status */ return HAL_OK; - 8001ad8: 2300 movs r3, #0 + 8001d48: 2300 movs r3, #0 } - 8001ada: 4618 mov r0, r3 - 8001adc: bd80 pop {r7, pc} - 8001ade: bf00 nop - 8001ae0: 40023c00 .word 0x40023c00 + 8001d4a: 4618 mov r0, r3 + 8001d4c: bd80 pop {r7, pc} + 8001d4e: bf00 nop + 8001d50: 40023c00 .word 0x40023c00 -08001ae4 : +08001d54 : * implementation in user file. * @param TickPriority Tick interrupt priority. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8001ae4: b580 push {r7, lr} - 8001ae6: b082 sub sp, #8 - 8001ae8: af00 add r7, sp, #0 - 8001aea: 6078 str r0, [r7, #4] + 8001d54: b580 push {r7, lr} + 8001d56: b082 sub sp, #8 + 8001d58: af00 add r7, sp, #0 + 8001d5a: 6078 str r0, [r7, #4] /* Configure the SysTick to have interrupt in 1ms time basis*/ if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 8001aec: 4b12 ldr r3, [pc, #72] @ (8001b38 ) - 8001aee: 681a ldr r2, [r3, #0] - 8001af0: 4b12 ldr r3, [pc, #72] @ (8001b3c ) - 8001af2: 781b ldrb r3, [r3, #0] - 8001af4: 4619 mov r1, r3 - 8001af6: f44f 737a mov.w r3, #1000 @ 0x3e8 - 8001afa: fbb3 f3f1 udiv r3, r3, r1 - 8001afe: fbb2 f3f3 udiv r3, r2, r3 - 8001b02: 4618 mov r0, r3 - 8001b04: f000 f967 bl 8001dd6 - 8001b08: 4603 mov r3, r0 - 8001b0a: 2b00 cmp r3, #0 - 8001b0c: d001 beq.n 8001b12 + 8001d5c: 4b12 ldr r3, [pc, #72] @ (8001da8 ) + 8001d5e: 681a ldr r2, [r3, #0] + 8001d60: 4b12 ldr r3, [pc, #72] @ (8001dac ) + 8001d62: 781b ldrb r3, [r3, #0] + 8001d64: 4619 mov r1, r3 + 8001d66: f44f 737a mov.w r3, #1000 @ 0x3e8 + 8001d6a: fbb3 f3f1 udiv r3, r3, r1 + 8001d6e: fbb2 f3f3 udiv r3, r2, r3 + 8001d72: 4618 mov r0, r3 + 8001d74: f000 f967 bl 8002046 + 8001d78: 4603 mov r3, r0 + 8001d7a: 2b00 cmp r3, #0 + 8001d7c: d001 beq.n 8001d82 { return HAL_ERROR; - 8001b0e: 2301 movs r3, #1 - 8001b10: e00e b.n 8001b30 + 8001d7e: 2301 movs r3, #1 + 8001d80: e00e b.n 8001da0 } /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 8001b12: 687b ldr r3, [r7, #4] - 8001b14: 2b0f cmp r3, #15 - 8001b16: d80a bhi.n 8001b2e + 8001d82: 687b ldr r3, [r7, #4] + 8001d84: 2b0f cmp r3, #15 + 8001d86: d80a bhi.n 8001d9e { HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 8001b18: 2200 movs r2, #0 - 8001b1a: 6879 ldr r1, [r7, #4] - 8001b1c: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff - 8001b20: f000 f92f bl 8001d82 + 8001d88: 2200 movs r2, #0 + 8001d8a: 6879 ldr r1, [r7, #4] + 8001d8c: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff + 8001d90: f000 f92f bl 8001ff2 uwTickPrio = TickPriority; - 8001b24: 4a06 ldr r2, [pc, #24] @ (8001b40 ) - 8001b26: 687b ldr r3, [r7, #4] - 8001b28: 6013 str r3, [r2, #0] + 8001d94: 4a06 ldr r2, [pc, #24] @ (8001db0 ) + 8001d96: 687b ldr r3, [r7, #4] + 8001d98: 6013 str r3, [r2, #0] { return HAL_ERROR; } /* Return function status */ return HAL_OK; - 8001b2a: 2300 movs r3, #0 - 8001b2c: e000 b.n 8001b30 + 8001d9a: 2300 movs r3, #0 + 8001d9c: e000 b.n 8001da0 return HAL_ERROR; - 8001b2e: 2301 movs r3, #1 + 8001d9e: 2301 movs r3, #1 } - 8001b30: 4618 mov r0, r3 - 8001b32: 3708 adds r7, #8 - 8001b34: 46bd mov sp, r7 - 8001b36: bd80 pop {r7, pc} - 8001b38: 20000090 .word 0x20000090 - 8001b3c: 20000098 .word 0x20000098 - 8001b40: 20000094 .word 0x20000094 + 8001da0: 4618 mov r0, r3 + 8001da2: 3708 adds r7, #8 + 8001da4: 46bd mov sp, r7 + 8001da6: bd80 pop {r7, pc} + 8001da8: 20000090 .word 0x20000090 + 8001dac: 20000098 .word 0x20000098 + 8001db0: 20000094 .word 0x20000094 -08001b44 : +08001db4 : * @note This function is declared as __weak to be overwritten in case of other * implementations in user file. * @retval None */ __weak void HAL_IncTick(void) { - 8001b44: b480 push {r7} - 8001b46: af00 add r7, sp, #0 + 8001db4: b480 push {r7} + 8001db6: af00 add r7, sp, #0 uwTick += uwTickFreq; - 8001b48: 4b06 ldr r3, [pc, #24] @ (8001b64 ) - 8001b4a: 781b ldrb r3, [r3, #0] - 8001b4c: 461a mov r2, r3 - 8001b4e: 4b06 ldr r3, [pc, #24] @ (8001b68 ) - 8001b50: 681b ldr r3, [r3, #0] - 8001b52: 4413 add r3, r2 - 8001b54: 4a04 ldr r2, [pc, #16] @ (8001b68 ) - 8001b56: 6013 str r3, [r2, #0] + 8001db8: 4b06 ldr r3, [pc, #24] @ (8001dd4 ) + 8001dba: 781b ldrb r3, [r3, #0] + 8001dbc: 461a mov r2, r3 + 8001dbe: 4b06 ldr r3, [pc, #24] @ (8001dd8 ) + 8001dc0: 681b ldr r3, [r3, #0] + 8001dc2: 4413 add r3, r2 + 8001dc4: 4a04 ldr r2, [pc, #16] @ (8001dd8 ) + 8001dc6: 6013 str r3, [r2, #0] } - 8001b58: bf00 nop - 8001b5a: 46bd mov sp, r7 - 8001b5c: f85d 7b04 ldr.w r7, [sp], #4 - 8001b60: 4770 bx lr - 8001b62: bf00 nop - 8001b64: 20000098 .word 0x20000098 - 8001b68: 20000730 .word 0x20000730 + 8001dc8: bf00 nop + 8001dca: 46bd mov sp, r7 + 8001dcc: f85d 7b04 ldr.w r7, [sp], #4 + 8001dd0: 4770 bx lr + 8001dd2: bf00 nop + 8001dd4: 20000098 .word 0x20000098 + 8001dd8: 20000d80 .word 0x20000d80 -08001b6c : +08001ddc : * @note This function is declared as __weak to be overwritten in case of other * implementations in user file. * @retval tick value */ __weak uint32_t HAL_GetTick(void) { - 8001b6c: b480 push {r7} - 8001b6e: af00 add r7, sp, #0 + 8001ddc: b480 push {r7} + 8001dde: af00 add r7, sp, #0 return uwTick; - 8001b70: 4b03 ldr r3, [pc, #12] @ (8001b80 ) - 8001b72: 681b ldr r3, [r3, #0] + 8001de0: 4b03 ldr r3, [pc, #12] @ (8001df0 ) + 8001de2: 681b ldr r3, [r3, #0] } - 8001b74: 4618 mov r0, r3 - 8001b76: 46bd mov sp, r7 - 8001b78: f85d 7b04 ldr.w r7, [sp], #4 - 8001b7c: 4770 bx lr - 8001b7e: bf00 nop - 8001b80: 20000730 .word 0x20000730 + 8001de4: 4618 mov r0, r3 + 8001de6: 46bd mov sp, r7 + 8001de8: f85d 7b04 ldr.w r7, [sp], #4 + 8001dec: 4770 bx lr + 8001dee: bf00 nop + 8001df0: 20000d80 .word 0x20000d80 -08001b84 : +08001df4 : * implementations in user file. * @param Delay specifies the delay time length, in milliseconds. * @retval None */ __weak void HAL_Delay(uint32_t Delay) { - 8001b84: b580 push {r7, lr} - 8001b86: b084 sub sp, #16 - 8001b88: af00 add r7, sp, #0 - 8001b8a: 6078 str r0, [r7, #4] + 8001df4: b580 push {r7, lr} + 8001df6: b084 sub sp, #16 + 8001df8: af00 add r7, sp, #0 + 8001dfa: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 8001b8c: f7ff ffee bl 8001b6c - 8001b90: 60b8 str r0, [r7, #8] + 8001dfc: f7ff ffee bl 8001ddc + 8001e00: 60b8 str r0, [r7, #8] uint32_t wait = Delay; - 8001b92: 687b ldr r3, [r7, #4] - 8001b94: 60fb str r3, [r7, #12] + 8001e02: 687b ldr r3, [r7, #4] + 8001e04: 60fb str r3, [r7, #12] /* Add a freq to guarantee minimum wait */ if (wait < HAL_MAX_DELAY) - 8001b96: 68fb ldr r3, [r7, #12] - 8001b98: f1b3 3fff cmp.w r3, #4294967295 @ 0xffffffff - 8001b9c: d005 beq.n 8001baa + 8001e06: 68fb ldr r3, [r7, #12] + 8001e08: f1b3 3fff cmp.w r3, #4294967295 @ 0xffffffff + 8001e0c: d005 beq.n 8001e1a { wait += (uint32_t)(uwTickFreq); - 8001b9e: 4b0a ldr r3, [pc, #40] @ (8001bc8 ) - 8001ba0: 781b ldrb r3, [r3, #0] - 8001ba2: 461a mov r2, r3 - 8001ba4: 68fb ldr r3, [r7, #12] - 8001ba6: 4413 add r3, r2 - 8001ba8: 60fb str r3, [r7, #12] + 8001e0e: 4b0a ldr r3, [pc, #40] @ (8001e38 ) + 8001e10: 781b ldrb r3, [r3, #0] + 8001e12: 461a mov r2, r3 + 8001e14: 68fb ldr r3, [r7, #12] + 8001e16: 4413 add r3, r2 + 8001e18: 60fb str r3, [r7, #12] } while((HAL_GetTick() - tickstart) < wait) - 8001baa: bf00 nop - 8001bac: f7ff ffde bl 8001b6c - 8001bb0: 4602 mov r2, r0 - 8001bb2: 68bb ldr r3, [r7, #8] - 8001bb4: 1ad3 subs r3, r2, r3 - 8001bb6: 68fa ldr r2, [r7, #12] - 8001bb8: 429a cmp r2, r3 - 8001bba: d8f7 bhi.n 8001bac + 8001e1a: bf00 nop + 8001e1c: f7ff ffde bl 8001ddc + 8001e20: 4602 mov r2, r0 + 8001e22: 68bb ldr r3, [r7, #8] + 8001e24: 1ad3 subs r3, r2, r3 + 8001e26: 68fa ldr r2, [r7, #12] + 8001e28: 429a cmp r2, r3 + 8001e2a: d8f7 bhi.n 8001e1c { } } - 8001bbc: bf00 nop - 8001bbe: bf00 nop - 8001bc0: 3710 adds r7, #16 - 8001bc2: 46bd mov sp, r7 - 8001bc4: bd80 pop {r7, pc} - 8001bc6: bf00 nop - 8001bc8: 20000098 .word 0x20000098 + 8001e2c: bf00 nop + 8001e2e: bf00 nop + 8001e30: 3710 adds r7, #16 + 8001e32: 46bd mov sp, r7 + 8001e34: bd80 pop {r7, pc} + 8001e36: bf00 nop + 8001e38: 20000098 .word 0x20000098 -08001bcc <__NVIC_SetPriorityGrouping>: +08001e3c <__NVIC_SetPriorityGrouping>: In case of a conflict between priority grouping and available priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. \param [in] PriorityGroup Priority grouping field. */ __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8001bcc: b480 push {r7} - 8001bce: b085 sub sp, #20 - 8001bd0: af00 add r7, sp, #0 - 8001bd2: 6078 str r0, [r7, #4] + 8001e3c: b480 push {r7} + 8001e3e: b085 sub sp, #20 + 8001e40: af00 add r7, sp, #0 + 8001e42: 6078 str r0, [r7, #4] uint32_t reg_value; uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001bd4: 687b ldr r3, [r7, #4] - 8001bd6: f003 0307 and.w r3, r3, #7 - 8001bda: 60fb str r3, [r7, #12] + 8001e44: 687b ldr r3, [r7, #4] + 8001e46: f003 0307 and.w r3, r3, #7 + 8001e4a: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 8001bdc: 4b0c ldr r3, [pc, #48] @ (8001c10 <__NVIC_SetPriorityGrouping+0x44>) - 8001bde: 68db ldr r3, [r3, #12] - 8001be0: 60bb str r3, [r7, #8] + 8001e4c: 4b0c ldr r3, [pc, #48] @ (8001e80 <__NVIC_SetPriorityGrouping+0x44>) + 8001e4e: 68db ldr r3, [r3, #12] + 8001e50: 60bb str r3, [r7, #8] reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8001be2: 68ba ldr r2, [r7, #8] - 8001be4: f64f 03ff movw r3, #63743 @ 0xf8ff - 8001be8: 4013 ands r3, r2 - 8001bea: 60bb str r3, [r7, #8] + 8001e52: 68ba ldr r2, [r7, #8] + 8001e54: f64f 03ff movw r3, #63743 @ 0xf8ff + 8001e58: 4013 ands r3, r2 + 8001e5a: 60bb str r3, [r7, #8] reg_value = (reg_value | ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ - 8001bec: 68fb ldr r3, [r7, #12] - 8001bee: 021a lsls r2, r3, #8 + 8001e5c: 68fb ldr r3, [r7, #12] + 8001e5e: 021a lsls r2, r3, #8 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8001bf0: 68bb ldr r3, [r7, #8] - 8001bf2: 4313 orrs r3, r2 + 8001e60: 68bb ldr r3, [r7, #8] + 8001e62: 4313 orrs r3, r2 reg_value = (reg_value | - 8001bf4: f043 63bf orr.w r3, r3, #100139008 @ 0x5f80000 - 8001bf8: f443 3300 orr.w r3, r3, #131072 @ 0x20000 - 8001bfc: 60bb str r3, [r7, #8] + 8001e64: f043 63bf orr.w r3, r3, #100139008 @ 0x5f80000 + 8001e68: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 8001e6c: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 8001bfe: 4a04 ldr r2, [pc, #16] @ (8001c10 <__NVIC_SetPriorityGrouping+0x44>) - 8001c00: 68bb ldr r3, [r7, #8] - 8001c02: 60d3 str r3, [r2, #12] + 8001e6e: 4a04 ldr r2, [pc, #16] @ (8001e80 <__NVIC_SetPriorityGrouping+0x44>) + 8001e70: 68bb ldr r3, [r7, #8] + 8001e72: 60d3 str r3, [r2, #12] } - 8001c04: bf00 nop - 8001c06: 3714 adds r7, #20 - 8001c08: 46bd mov sp, r7 - 8001c0a: f85d 7b04 ldr.w r7, [sp], #4 - 8001c0e: 4770 bx lr - 8001c10: e000ed00 .word 0xe000ed00 + 8001e74: bf00 nop + 8001e76: 3714 adds r7, #20 + 8001e78: 46bd mov sp, r7 + 8001e7a: f85d 7b04 ldr.w r7, [sp], #4 + 8001e7e: 4770 bx lr + 8001e80: e000ed00 .word 0xe000ed00 -08001c14 <__NVIC_GetPriorityGrouping>: +08001e84 <__NVIC_GetPriorityGrouping>: \brief Get Priority Grouping \details Reads the priority grouping field from the NVIC Interrupt Controller. \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). */ __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void) { - 8001c14: b480 push {r7} - 8001c16: af00 add r7, sp, #0 + 8001e84: b480 push {r7} + 8001e86: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 8001c18: 4b04 ldr r3, [pc, #16] @ (8001c2c <__NVIC_GetPriorityGrouping+0x18>) - 8001c1a: 68db ldr r3, [r3, #12] - 8001c1c: 0a1b lsrs r3, r3, #8 - 8001c1e: f003 0307 and.w r3, r3, #7 + 8001e88: 4b04 ldr r3, [pc, #16] @ (8001e9c <__NVIC_GetPriorityGrouping+0x18>) + 8001e8a: 68db ldr r3, [r3, #12] + 8001e8c: 0a1b lsrs r3, r3, #8 + 8001e8e: f003 0307 and.w r3, r3, #7 } - 8001c22: 4618 mov r0, r3 - 8001c24: 46bd mov sp, r7 - 8001c26: f85d 7b04 ldr.w r7, [sp], #4 - 8001c2a: 4770 bx lr - 8001c2c: e000ed00 .word 0xe000ed00 + 8001e92: 4618 mov r0, r3 + 8001e94: 46bd mov sp, r7 + 8001e96: f85d 7b04 ldr.w r7, [sp], #4 + 8001e9a: 4770 bx lr + 8001e9c: e000ed00 .word 0xe000ed00 -08001c30 <__NVIC_EnableIRQ>: +08001ea0 <__NVIC_EnableIRQ>: \details Enables a device specific interrupt in the NVIC interrupt controller. \param [in] IRQn Device specific interrupt number. \note IRQn must not be negative. */ __STATIC_INLINE void __NVIC_EnableIRQ(IRQn_Type IRQn) { - 8001c30: b480 push {r7} - 8001c32: b083 sub sp, #12 - 8001c34: af00 add r7, sp, #0 - 8001c36: 4603 mov r3, r0 - 8001c38: 71fb strb r3, [r7, #7] + 8001ea0: b480 push {r7} + 8001ea2: b083 sub sp, #12 + 8001ea4: af00 add r7, sp, #0 + 8001ea6: 4603 mov r3, r0 + 8001ea8: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001c3a: f997 3007 ldrsb.w r3, [r7, #7] - 8001c3e: 2b00 cmp r3, #0 - 8001c40: db0b blt.n 8001c5a <__NVIC_EnableIRQ+0x2a> + 8001eaa: f997 3007 ldrsb.w r3, [r7, #7] + 8001eae: 2b00 cmp r3, #0 + 8001eb0: db0b blt.n 8001eca <__NVIC_EnableIRQ+0x2a> { __COMPILER_BARRIER(); NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 8001c42: 79fb ldrb r3, [r7, #7] - 8001c44: f003 021f and.w r2, r3, #31 - 8001c48: 4907 ldr r1, [pc, #28] @ (8001c68 <__NVIC_EnableIRQ+0x38>) - 8001c4a: f997 3007 ldrsb.w r3, [r7, #7] - 8001c4e: 095b lsrs r3, r3, #5 - 8001c50: 2001 movs r0, #1 - 8001c52: fa00 f202 lsl.w r2, r0, r2 - 8001c56: f841 2023 str.w r2, [r1, r3, lsl #2] + 8001eb2: 79fb ldrb r3, [r7, #7] + 8001eb4: f003 021f and.w r2, r3, #31 + 8001eb8: 4907 ldr r1, [pc, #28] @ (8001ed8 <__NVIC_EnableIRQ+0x38>) + 8001eba: f997 3007 ldrsb.w r3, [r7, #7] + 8001ebe: 095b lsrs r3, r3, #5 + 8001ec0: 2001 movs r0, #1 + 8001ec2: fa00 f202 lsl.w r2, r0, r2 + 8001ec6: f841 2023 str.w r2, [r1, r3, lsl #2] __COMPILER_BARRIER(); } } - 8001c5a: bf00 nop - 8001c5c: 370c adds r7, #12 - 8001c5e: 46bd mov sp, r7 - 8001c60: f85d 7b04 ldr.w r7, [sp], #4 - 8001c64: 4770 bx lr - 8001c66: bf00 nop - 8001c68: e000e100 .word 0xe000e100 + 8001eca: bf00 nop + 8001ecc: 370c adds r7, #12 + 8001ece: 46bd mov sp, r7 + 8001ed0: f85d 7b04 ldr.w r7, [sp], #4 + 8001ed4: 4770 bx lr + 8001ed6: bf00 nop + 8001ed8: e000e100 .word 0xe000e100 -08001c6c <__NVIC_SetPriority>: +08001edc <__NVIC_SetPriority>: \param [in] IRQn Interrupt number. \param [in] priority Priority to set. \note The priority cannot be set for every processor exception. */ __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) { - 8001c6c: b480 push {r7} - 8001c6e: b083 sub sp, #12 - 8001c70: af00 add r7, sp, #0 - 8001c72: 4603 mov r3, r0 - 8001c74: 6039 str r1, [r7, #0] - 8001c76: 71fb strb r3, [r7, #7] + 8001edc: b480 push {r7} + 8001ede: b083 sub sp, #12 + 8001ee0: af00 add r7, sp, #0 + 8001ee2: 4603 mov r3, r0 + 8001ee4: 6039 str r1, [r7, #0] + 8001ee6: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001c78: f997 3007 ldrsb.w r3, [r7, #7] - 8001c7c: 2b00 cmp r3, #0 - 8001c7e: db0a blt.n 8001c96 <__NVIC_SetPriority+0x2a> + 8001ee8: f997 3007 ldrsb.w r3, [r7, #7] + 8001eec: 2b00 cmp r3, #0 + 8001eee: db0a blt.n 8001f06 <__NVIC_SetPriority+0x2a> { NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001c80: 683b ldr r3, [r7, #0] - 8001c82: b2da uxtb r2, r3 - 8001c84: 490c ldr r1, [pc, #48] @ (8001cb8 <__NVIC_SetPriority+0x4c>) - 8001c86: f997 3007 ldrsb.w r3, [r7, #7] - 8001c8a: 0112 lsls r2, r2, #4 - 8001c8c: b2d2 uxtb r2, r2 - 8001c8e: 440b add r3, r1 - 8001c90: f883 2300 strb.w r2, [r3, #768] @ 0x300 + 8001ef0: 683b ldr r3, [r7, #0] + 8001ef2: b2da uxtb r2, r3 + 8001ef4: 490c ldr r1, [pc, #48] @ (8001f28 <__NVIC_SetPriority+0x4c>) + 8001ef6: f997 3007 ldrsb.w r3, [r7, #7] + 8001efa: 0112 lsls r2, r2, #4 + 8001efc: b2d2 uxtb r2, r2 + 8001efe: 440b add r3, r1 + 8001f00: f883 2300 strb.w r2, [r3, #768] @ 0x300 } else { SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); } } - 8001c94: e00a b.n 8001cac <__NVIC_SetPriority+0x40> + 8001f04: e00a b.n 8001f1c <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001c96: 683b ldr r3, [r7, #0] - 8001c98: b2da uxtb r2, r3 - 8001c9a: 4908 ldr r1, [pc, #32] @ (8001cbc <__NVIC_SetPriority+0x50>) - 8001c9c: 79fb ldrb r3, [r7, #7] - 8001c9e: f003 030f and.w r3, r3, #15 - 8001ca2: 3b04 subs r3, #4 - 8001ca4: 0112 lsls r2, r2, #4 - 8001ca6: b2d2 uxtb r2, r2 - 8001ca8: 440b add r3, r1 - 8001caa: 761a strb r2, [r3, #24] + 8001f06: 683b ldr r3, [r7, #0] + 8001f08: b2da uxtb r2, r3 + 8001f0a: 4908 ldr r1, [pc, #32] @ (8001f2c <__NVIC_SetPriority+0x50>) + 8001f0c: 79fb ldrb r3, [r7, #7] + 8001f0e: f003 030f and.w r3, r3, #15 + 8001f12: 3b04 subs r3, #4 + 8001f14: 0112 lsls r2, r2, #4 + 8001f16: b2d2 uxtb r2, r2 + 8001f18: 440b add r3, r1 + 8001f1a: 761a strb r2, [r3, #24] } - 8001cac: bf00 nop - 8001cae: 370c adds r7, #12 - 8001cb0: 46bd mov sp, r7 - 8001cb2: f85d 7b04 ldr.w r7, [sp], #4 - 8001cb6: 4770 bx lr - 8001cb8: e000e100 .word 0xe000e100 - 8001cbc: e000ed00 .word 0xe000ed00 + 8001f1c: bf00 nop + 8001f1e: 370c adds r7, #12 + 8001f20: 46bd mov sp, r7 + 8001f22: f85d 7b04 ldr.w r7, [sp], #4 + 8001f26: 4770 bx lr + 8001f28: e000e100 .word 0xe000e100 + 8001f2c: e000ed00 .word 0xe000ed00 -08001cc0 : +08001f30 : \param [in] PreemptPriority Preemptive priority value (starting from 0). \param [in] SubPriority Subpriority value (starting from 0). \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). */ __STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) { - 8001cc0: b480 push {r7} - 8001cc2: b089 sub sp, #36 @ 0x24 - 8001cc4: af00 add r7, sp, #0 - 8001cc6: 60f8 str r0, [r7, #12] - 8001cc8: 60b9 str r1, [r7, #8] - 8001cca: 607a str r2, [r7, #4] + 8001f30: b480 push {r7} + 8001f32: b089 sub sp, #36 @ 0x24 + 8001f34: af00 add r7, sp, #0 + 8001f36: 60f8 str r0, [r7, #12] + 8001f38: 60b9 str r1, [r7, #8] + 8001f3a: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001ccc: 68fb ldr r3, [r7, #12] - 8001cce: f003 0307 and.w r3, r3, #7 - 8001cd2: 61fb str r3, [r7, #28] + 8001f3c: 68fb ldr r3, [r7, #12] + 8001f3e: f003 0307 and.w r3, r3, #7 + 8001f42: 61fb str r3, [r7, #28] uint32_t PreemptPriorityBits; uint32_t SubPriorityBits; PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 8001cd4: 69fb ldr r3, [r7, #28] - 8001cd6: f1c3 0307 rsb r3, r3, #7 - 8001cda: 2b04 cmp r3, #4 - 8001cdc: bf28 it cs - 8001cde: 2304 movcs r3, #4 - 8001ce0: 61bb str r3, [r7, #24] + 8001f44: 69fb ldr r3, [r7, #28] + 8001f46: f1c3 0307 rsb r3, r3, #7 + 8001f4a: 2b04 cmp r3, #4 + 8001f4c: bf28 it cs + 8001f4e: 2304 movcs r3, #4 + 8001f50: 61bb str r3, [r7, #24] SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); - 8001ce2: 69fb ldr r3, [r7, #28] - 8001ce4: 3304 adds r3, #4 - 8001ce6: 2b06 cmp r3, #6 - 8001ce8: d902 bls.n 8001cf0 - 8001cea: 69fb ldr r3, [r7, #28] - 8001cec: 3b03 subs r3, #3 - 8001cee: e000 b.n 8001cf2 - 8001cf0: 2300 movs r3, #0 - 8001cf2: 617b str r3, [r7, #20] + 8001f52: 69fb ldr r3, [r7, #28] + 8001f54: 3304 adds r3, #4 + 8001f56: 2b06 cmp r3, #6 + 8001f58: d902 bls.n 8001f60 + 8001f5a: 69fb ldr r3, [r7, #28] + 8001f5c: 3b03 subs r3, #3 + 8001f5e: e000 b.n 8001f62 + 8001f60: 2300 movs r3, #0 + 8001f62: 617b str r3, [r7, #20] return ( ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001cf4: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff - 8001cf8: 69bb ldr r3, [r7, #24] - 8001cfa: fa02 f303 lsl.w r3, r2, r3 - 8001cfe: 43da mvns r2, r3 - 8001d00: 68bb ldr r3, [r7, #8] - 8001d02: 401a ands r2, r3 - 8001d04: 697b ldr r3, [r7, #20] - 8001d06: 409a lsls r2, r3 + 8001f64: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff + 8001f68: 69bb ldr r3, [r7, #24] + 8001f6a: fa02 f303 lsl.w r3, r2, r3 + 8001f6e: 43da mvns r2, r3 + 8001f70: 68bb ldr r3, [r7, #8] + 8001f72: 401a ands r2, r3 + 8001f74: 697b ldr r3, [r7, #20] + 8001f76: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8001d08: f04f 31ff mov.w r1, #4294967295 @ 0xffffffff - 8001d0c: 697b ldr r3, [r7, #20] - 8001d0e: fa01 f303 lsl.w r3, r1, r3 - 8001d12: 43d9 mvns r1, r3 - 8001d14: 687b ldr r3, [r7, #4] - 8001d16: 400b ands r3, r1 + 8001f78: f04f 31ff mov.w r1, #4294967295 @ 0xffffffff + 8001f7c: 697b ldr r3, [r7, #20] + 8001f7e: fa01 f303 lsl.w r3, r1, r3 + 8001f82: 43d9 mvns r1, r3 + 8001f84: 687b ldr r3, [r7, #4] + 8001f86: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001d18: 4313 orrs r3, r2 + 8001f88: 4313 orrs r3, r2 ); } - 8001d1a: 4618 mov r0, r3 - 8001d1c: 3724 adds r7, #36 @ 0x24 - 8001d1e: 46bd mov sp, r7 - 8001d20: f85d 7b04 ldr.w r7, [sp], #4 - 8001d24: 4770 bx lr + 8001f8a: 4618 mov r0, r3 + 8001f8c: 3724 adds r7, #36 @ 0x24 + 8001f8e: 46bd mov sp, r7 + 8001f90: f85d 7b04 ldr.w r7, [sp], #4 + 8001f94: 4770 bx lr ... -08001d28 : +08001f98 : \note When the variable __Vendor_SysTickConfig is set to 1, then the function SysTick_Config is not included. In this case, the file device.h must contain a vendor-specific implementation of this function. */ __STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks) { - 8001d28: b580 push {r7, lr} - 8001d2a: b082 sub sp, #8 - 8001d2c: af00 add r7, sp, #0 - 8001d2e: 6078 str r0, [r7, #4] + 8001f98: b580 push {r7, lr} + 8001f9a: b082 sub sp, #8 + 8001f9c: af00 add r7, sp, #0 + 8001f9e: 6078 str r0, [r7, #4] if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8001d30: 687b ldr r3, [r7, #4] - 8001d32: 3b01 subs r3, #1 - 8001d34: f1b3 7f80 cmp.w r3, #16777216 @ 0x1000000 - 8001d38: d301 bcc.n 8001d3e + 8001fa0: 687b ldr r3, [r7, #4] + 8001fa2: 3b01 subs r3, #1 + 8001fa4: f1b3 7f80 cmp.w r3, #16777216 @ 0x1000000 + 8001fa8: d301 bcc.n 8001fae { return (1UL); /* Reload value impossible */ - 8001d3a: 2301 movs r3, #1 - 8001d3c: e00f b.n 8001d5e + 8001faa: 2301 movs r3, #1 + 8001fac: e00f b.n 8001fce } SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8001d3e: 4a0a ldr r2, [pc, #40] @ (8001d68 ) - 8001d40: 687b ldr r3, [r7, #4] - 8001d42: 3b01 subs r3, #1 - 8001d44: 6053 str r3, [r2, #4] + 8001fae: 4a0a ldr r2, [pc, #40] @ (8001fd8 ) + 8001fb0: 687b ldr r3, [r7, #4] + 8001fb2: 3b01 subs r3, #1 + 8001fb4: 6053 str r3, [r2, #4] NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - 8001d46: 210f movs r1, #15 - 8001d48: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff - 8001d4c: f7ff ff8e bl 8001c6c <__NVIC_SetPriority> + 8001fb6: 210f movs r1, #15 + 8001fb8: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff + 8001fbc: f7ff ff8e bl 8001edc <__NVIC_SetPriority> SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8001d50: 4b05 ldr r3, [pc, #20] @ (8001d68 ) - 8001d52: 2200 movs r2, #0 - 8001d54: 609a str r2, [r3, #8] + 8001fc0: 4b05 ldr r3, [pc, #20] @ (8001fd8 ) + 8001fc2: 2200 movs r2, #0 + 8001fc4: 609a str r2, [r3, #8] SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8001d56: 4b04 ldr r3, [pc, #16] @ (8001d68 ) - 8001d58: 2207 movs r2, #7 - 8001d5a: 601a str r2, [r3, #0] + 8001fc6: 4b04 ldr r3, [pc, #16] @ (8001fd8 ) + 8001fc8: 2207 movs r2, #7 + 8001fca: 601a str r2, [r3, #0] SysTick_CTRL_TICKINT_Msk | SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ return (0UL); /* Function successful */ - 8001d5c: 2300 movs r3, #0 + 8001fcc: 2300 movs r3, #0 } - 8001d5e: 4618 mov r0, r3 - 8001d60: 3708 adds r7, #8 - 8001d62: 46bd mov sp, r7 - 8001d64: bd80 pop {r7, pc} - 8001d66: bf00 nop - 8001d68: e000e010 .word 0xe000e010 + 8001fce: 4618 mov r0, r3 + 8001fd0: 3708 adds r7, #8 + 8001fd2: 46bd mov sp, r7 + 8001fd4: bd80 pop {r7, pc} + 8001fd6: bf00 nop + 8001fd8: e000e010 .word 0xe000e010 -08001d6c : +08001fdc : * @note When the NVIC_PriorityGroup_0 is selected, IRQ preemption is no more possible. * The pending IRQ priority will be managed only by the subpriority. * @retval None */ void HAL_NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8001d6c: b580 push {r7, lr} - 8001d6e: b082 sub sp, #8 - 8001d70: af00 add r7, sp, #0 - 8001d72: 6078 str r0, [r7, #4] + 8001fdc: b580 push {r7, lr} + 8001fde: b082 sub sp, #8 + 8001fe0: af00 add r7, sp, #0 + 8001fe2: 6078 str r0, [r7, #4] /* Check the parameters */ assert_param(IS_NVIC_PRIORITY_GROUP(PriorityGroup)); /* Set the PRIGROUP[10:8] bits according to the PriorityGroup parameter value */ NVIC_SetPriorityGrouping(PriorityGroup); - 8001d74: 6878 ldr r0, [r7, #4] - 8001d76: f7ff ff29 bl 8001bcc <__NVIC_SetPriorityGrouping> + 8001fe4: 6878 ldr r0, [r7, #4] + 8001fe6: f7ff ff29 bl 8001e3c <__NVIC_SetPriorityGrouping> } - 8001d7a: bf00 nop - 8001d7c: 3708 adds r7, #8 - 8001d7e: 46bd mov sp, r7 - 8001d80: bd80 pop {r7, pc} + 8001fea: bf00 nop + 8001fec: 3708 adds r7, #8 + 8001fee: 46bd mov sp, r7 + 8001ff0: bd80 pop {r7, pc} -08001d82 : +08001ff2 : * This parameter can be a value between 0 and 15 * A lower priority value indicates a higher priority. * @retval None */ void HAL_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority) { - 8001d82: b580 push {r7, lr} - 8001d84: b086 sub sp, #24 - 8001d86: af00 add r7, sp, #0 - 8001d88: 4603 mov r3, r0 - 8001d8a: 60b9 str r1, [r7, #8] - 8001d8c: 607a str r2, [r7, #4] - 8001d8e: 73fb strb r3, [r7, #15] + 8001ff2: b580 push {r7, lr} + 8001ff4: b086 sub sp, #24 + 8001ff6: af00 add r7, sp, #0 + 8001ff8: 4603 mov r3, r0 + 8001ffa: 60b9 str r1, [r7, #8] + 8001ffc: 607a str r2, [r7, #4] + 8001ffe: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 8001d90: 2300 movs r3, #0 - 8001d92: 617b str r3, [r7, #20] + 8002000: 2300 movs r3, #0 + 8002002: 617b str r3, [r7, #20] /* Check the parameters */ assert_param(IS_NVIC_SUB_PRIORITY(SubPriority)); assert_param(IS_NVIC_PREEMPTION_PRIORITY(PreemptPriority)); prioritygroup = NVIC_GetPriorityGrouping(); - 8001d94: f7ff ff3e bl 8001c14 <__NVIC_GetPriorityGrouping> - 8001d98: 6178 str r0, [r7, #20] + 8002004: f7ff ff3e bl 8001e84 <__NVIC_GetPriorityGrouping> + 8002008: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 8001d9a: 687a ldr r2, [r7, #4] - 8001d9c: 68b9 ldr r1, [r7, #8] - 8001d9e: 6978 ldr r0, [r7, #20] - 8001da0: f7ff ff8e bl 8001cc0 - 8001da4: 4602 mov r2, r0 - 8001da6: f997 300f ldrsb.w r3, [r7, #15] - 8001daa: 4611 mov r1, r2 - 8001dac: 4618 mov r0, r3 - 8001dae: f7ff ff5d bl 8001c6c <__NVIC_SetPriority> + 800200a: 687a ldr r2, [r7, #4] + 800200c: 68b9 ldr r1, [r7, #8] + 800200e: 6978 ldr r0, [r7, #20] + 8002010: f7ff ff8e bl 8001f30 + 8002014: 4602 mov r2, r0 + 8002016: f997 300f ldrsb.w r3, [r7, #15] + 800201a: 4611 mov r1, r2 + 800201c: 4618 mov r0, r3 + 800201e: f7ff ff5d bl 8001edc <__NVIC_SetPriority> } - 8001db2: bf00 nop - 8001db4: 3718 adds r7, #24 - 8001db6: 46bd mov sp, r7 - 8001db8: bd80 pop {r7, pc} + 8002022: bf00 nop + 8002024: 3718 adds r7, #24 + 8002026: 46bd mov sp, r7 + 8002028: bd80 pop {r7, pc} -08001dba : +0800202a : * This parameter can be an enumerator of IRQn_Type enumeration * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h)) * @retval None */ void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) { - 8001dba: b580 push {r7, lr} - 8001dbc: b082 sub sp, #8 - 8001dbe: af00 add r7, sp, #0 - 8001dc0: 4603 mov r3, r0 - 8001dc2: 71fb strb r3, [r7, #7] + 800202a: b580 push {r7, lr} + 800202c: b082 sub sp, #8 + 800202e: af00 add r7, sp, #0 + 8002030: 4603 mov r3, r0 + 8002032: 71fb strb r3, [r7, #7] /* Check the parameters */ assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); /* Enable interrupt */ NVIC_EnableIRQ(IRQn); - 8001dc4: f997 3007 ldrsb.w r3, [r7, #7] - 8001dc8: 4618 mov r0, r3 - 8001dca: f7ff ff31 bl 8001c30 <__NVIC_EnableIRQ> + 8002034: f997 3007 ldrsb.w r3, [r7, #7] + 8002038: 4618 mov r0, r3 + 800203a: f7ff ff31 bl 8001ea0 <__NVIC_EnableIRQ> } - 8001dce: bf00 nop - 8001dd0: 3708 adds r7, #8 - 8001dd2: 46bd mov sp, r7 - 8001dd4: bd80 pop {r7, pc} + 800203e: bf00 nop + 8002040: 3708 adds r7, #8 + 8002042: 46bd mov sp, r7 + 8002044: bd80 pop {r7, pc} -08001dd6 : +08002046 : * @param TicksNumb Specifies the ticks Number of ticks between two interrupts. * @retval status: - 0 Function succeeded. * - 1 Function failed. */ uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb) { - 8001dd6: b580 push {r7, lr} - 8001dd8: b082 sub sp, #8 - 8001dda: af00 add r7, sp, #0 - 8001ddc: 6078 str r0, [r7, #4] + 8002046: b580 push {r7, lr} + 8002048: b082 sub sp, #8 + 800204a: af00 add r7, sp, #0 + 800204c: 6078 str r0, [r7, #4] return SysTick_Config(TicksNumb); - 8001dde: 6878 ldr r0, [r7, #4] - 8001de0: f7ff ffa2 bl 8001d28 - 8001de4: 4603 mov r3, r0 + 800204e: 6878 ldr r0, [r7, #4] + 8002050: f7ff ffa2 bl 8001f98 + 8002054: 4603 mov r3, r0 } - 8001de6: 4618 mov r0, r3 - 8001de8: 3708 adds r7, #8 - 8001dea: 46bd mov sp, r7 - 8001dec: bd80 pop {r7, pc} + 8002056: 4618 mov r0, r3 + 8002058: 3708 adds r7, #8 + 800205a: 46bd mov sp, r7 + 800205c: bd80 pop {r7, pc} ... -08001df0 : +08002060 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *hdma) { - 8001df0: b580 push {r7, lr} - 8001df2: b086 sub sp, #24 - 8001df4: af00 add r7, sp, #0 - 8001df6: 6078 str r0, [r7, #4] + 8002060: b580 push {r7, lr} + 8002062: b086 sub sp, #24 + 8002064: af00 add r7, sp, #0 + 8002066: 6078 str r0, [r7, #4] uint32_t tmp = 0U; - 8001df8: 2300 movs r3, #0 - 8001dfa: 617b str r3, [r7, #20] + 8002068: 2300 movs r3, #0 + 800206a: 617b str r3, [r7, #20] uint32_t tickstart = HAL_GetTick(); - 8001dfc: f7ff feb6 bl 8001b6c - 8001e00: 6138 str r0, [r7, #16] + 800206c: f7ff feb6 bl 8001ddc + 8002070: 6138 str r0, [r7, #16] DMA_Base_Registers *regs; /* Check the DMA peripheral state */ if(hdma == NULL) - 8001e02: 687b ldr r3, [r7, #4] - 8001e04: 2b00 cmp r3, #0 - 8001e06: d101 bne.n 8001e0c + 8002072: 687b ldr r3, [r7, #4] + 8002074: 2b00 cmp r3, #0 + 8002076: d101 bne.n 800207c { return HAL_ERROR; - 8001e08: 2301 movs r3, #1 - 8001e0a: e099 b.n 8001f40 + 8002078: 2301 movs r3, #1 + 800207a: e099 b.n 80021b0 assert_param(IS_DMA_MEMORY_BURST(hdma->Init.MemBurst)); assert_param(IS_DMA_PERIPHERAL_BURST(hdma->Init.PeriphBurst)); } /* Change DMA peripheral state */ hdma->State = HAL_DMA_STATE_BUSY; - 8001e0c: 687b ldr r3, [r7, #4] - 8001e0e: 2202 movs r2, #2 - 8001e10: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 800207c: 687b ldr r3, [r7, #4] + 800207e: 2202 movs r2, #2 + 8002080: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Allocate lock resource */ __HAL_UNLOCK(hdma); - 8001e14: 687b ldr r3, [r7, #4] - 8001e16: 2200 movs r2, #0 - 8001e18: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8002084: 687b ldr r3, [r7, #4] + 8002086: 2200 movs r2, #0 + 8002088: f883 2034 strb.w r2, [r3, #52] @ 0x34 /* Disable the peripheral */ __HAL_DMA_DISABLE(hdma); - 8001e1c: 687b ldr r3, [r7, #4] - 8001e1e: 681b ldr r3, [r3, #0] - 8001e20: 681a ldr r2, [r3, #0] - 8001e22: 687b ldr r3, [r7, #4] - 8001e24: 681b ldr r3, [r3, #0] - 8001e26: f022 0201 bic.w r2, r2, #1 - 8001e2a: 601a str r2, [r3, #0] + 800208c: 687b ldr r3, [r7, #4] + 800208e: 681b ldr r3, [r3, #0] + 8002090: 681a ldr r2, [r3, #0] + 8002092: 687b ldr r3, [r7, #4] + 8002094: 681b ldr r3, [r3, #0] + 8002096: f022 0201 bic.w r2, r2, #1 + 800209a: 601a str r2, [r3, #0] /* Check if the DMA Stream is effectively disabled */ while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 8001e2c: e00f b.n 8001e4e + 800209c: e00f b.n 80020be { /* Check for the Timeout */ if((HAL_GetTick() - tickstart ) > HAL_TIMEOUT_DMA_ABORT) - 8001e2e: f7ff fe9d bl 8001b6c - 8001e32: 4602 mov r2, r0 - 8001e34: 693b ldr r3, [r7, #16] - 8001e36: 1ad3 subs r3, r2, r3 - 8001e38: 2b05 cmp r3, #5 - 8001e3a: d908 bls.n 8001e4e + 800209e: f7ff fe9d bl 8001ddc + 80020a2: 4602 mov r2, r0 + 80020a4: 693b ldr r3, [r7, #16] + 80020a6: 1ad3 subs r3, r2, r3 + 80020a8: 2b05 cmp r3, #5 + 80020aa: d908 bls.n 80020be { /* Update error code */ hdma->ErrorCode = HAL_DMA_ERROR_TIMEOUT; - 8001e3c: 687b ldr r3, [r7, #4] - 8001e3e: 2220 movs r2, #32 - 8001e40: 655a str r2, [r3, #84] @ 0x54 + 80020ac: 687b ldr r3, [r7, #4] + 80020ae: 2220 movs r2, #32 + 80020b0: 655a str r2, [r3, #84] @ 0x54 /* Change the DMA state */ hdma->State = HAL_DMA_STATE_TIMEOUT; - 8001e42: 687b ldr r3, [r7, #4] - 8001e44: 2203 movs r2, #3 - 8001e46: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 80020b2: 687b ldr r3, [r7, #4] + 80020b4: 2203 movs r2, #3 + 80020b6: f883 2035 strb.w r2, [r3, #53] @ 0x35 return HAL_TIMEOUT; - 8001e4a: 2303 movs r3, #3 - 8001e4c: e078 b.n 8001f40 + 80020ba: 2303 movs r3, #3 + 80020bc: e078 b.n 80021b0 while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 8001e4e: 687b ldr r3, [r7, #4] - 8001e50: 681b ldr r3, [r3, #0] - 8001e52: 681b ldr r3, [r3, #0] - 8001e54: f003 0301 and.w r3, r3, #1 - 8001e58: 2b00 cmp r3, #0 - 8001e5a: d1e8 bne.n 8001e2e + 80020be: 687b ldr r3, [r7, #4] + 80020c0: 681b ldr r3, [r3, #0] + 80020c2: 681b ldr r3, [r3, #0] + 80020c4: f003 0301 and.w r3, r3, #1 + 80020c8: 2b00 cmp r3, #0 + 80020ca: d1e8 bne.n 800209e } } /* Get the CR register value */ tmp = hdma->Instance->CR; - 8001e5c: 687b ldr r3, [r7, #4] - 8001e5e: 681b ldr r3, [r3, #0] - 8001e60: 681b ldr r3, [r3, #0] - 8001e62: 617b str r3, [r7, #20] + 80020cc: 687b ldr r3, [r7, #4] + 80020ce: 681b ldr r3, [r3, #0] + 80020d0: 681b ldr r3, [r3, #0] + 80020d2: 617b str r3, [r7, #20] /* Clear CHSEL, MBURST, PBURST, PL, MSIZE, PSIZE, MINC, PINC, CIRC, DIR, CT and DBM bits */ tmp &= ((uint32_t)~(DMA_SxCR_CHSEL | DMA_SxCR_MBURST | DMA_SxCR_PBURST | \ - 8001e64: 697a ldr r2, [r7, #20] - 8001e66: 4b38 ldr r3, [pc, #224] @ (8001f48 ) - 8001e68: 4013 ands r3, r2 - 8001e6a: 617b str r3, [r7, #20] + 80020d4: 697a ldr r2, [r7, #20] + 80020d6: 4b38 ldr r3, [pc, #224] @ (80021b8 ) + 80020d8: 4013 ands r3, r2 + 80020da: 617b str r3, [r7, #20] DMA_SxCR_PL | DMA_SxCR_MSIZE | DMA_SxCR_PSIZE | \ DMA_SxCR_MINC | DMA_SxCR_PINC | DMA_SxCR_CIRC | \ DMA_SxCR_DIR | DMA_SxCR_CT | DMA_SxCR_DBM)); /* Prepare the DMA Stream configuration */ tmp |= hdma->Init.Channel | hdma->Init.Direction | - 8001e6c: 687b ldr r3, [r7, #4] - 8001e6e: 685a ldr r2, [r3, #4] - 8001e70: 687b ldr r3, [r7, #4] - 8001e72: 689b ldr r3, [r3, #8] - 8001e74: 431a orrs r2, r3 + 80020dc: 687b ldr r3, [r7, #4] + 80020de: 685a ldr r2, [r3, #4] + 80020e0: 687b ldr r3, [r7, #4] + 80020e2: 689b ldr r3, [r3, #8] + 80020e4: 431a orrs r2, r3 hdma->Init.PeriphInc | hdma->Init.MemInc | - 8001e76: 687b ldr r3, [r7, #4] - 8001e78: 68db ldr r3, [r3, #12] + 80020e6: 687b ldr r3, [r7, #4] + 80020e8: 68db ldr r3, [r3, #12] tmp |= hdma->Init.Channel | hdma->Init.Direction | - 8001e7a: 431a orrs r2, r3 + 80020ea: 431a orrs r2, r3 hdma->Init.PeriphInc | hdma->Init.MemInc | - 8001e7c: 687b ldr r3, [r7, #4] - 8001e7e: 691b ldr r3, [r3, #16] - 8001e80: 431a orrs r2, r3 + 80020ec: 687b ldr r3, [r7, #4] + 80020ee: 691b ldr r3, [r3, #16] + 80020f0: 431a orrs r2, r3 hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | - 8001e82: 687b ldr r3, [r7, #4] - 8001e84: 695b ldr r3, [r3, #20] + 80020f2: 687b ldr r3, [r7, #4] + 80020f4: 695b ldr r3, [r3, #20] hdma->Init.PeriphInc | hdma->Init.MemInc | - 8001e86: 431a orrs r2, r3 + 80020f6: 431a orrs r2, r3 hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | - 8001e88: 687b ldr r3, [r7, #4] - 8001e8a: 699b ldr r3, [r3, #24] - 8001e8c: 431a orrs r2, r3 + 80020f8: 687b ldr r3, [r7, #4] + 80020fa: 699b ldr r3, [r3, #24] + 80020fc: 431a orrs r2, r3 hdma->Init.Mode | hdma->Init.Priority; - 8001e8e: 687b ldr r3, [r7, #4] - 8001e90: 69db ldr r3, [r3, #28] + 80020fe: 687b ldr r3, [r7, #4] + 8002100: 69db ldr r3, [r3, #28] hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | - 8001e92: 431a orrs r2, r3 + 8002102: 431a orrs r2, r3 hdma->Init.Mode | hdma->Init.Priority; - 8001e94: 687b ldr r3, [r7, #4] - 8001e96: 6a1b ldr r3, [r3, #32] - 8001e98: 4313 orrs r3, r2 + 8002104: 687b ldr r3, [r7, #4] + 8002106: 6a1b ldr r3, [r3, #32] + 8002108: 4313 orrs r3, r2 tmp |= hdma->Init.Channel | hdma->Init.Direction | - 8001e9a: 697a ldr r2, [r7, #20] - 8001e9c: 4313 orrs r3, r2 - 8001e9e: 617b str r3, [r7, #20] + 800210a: 697a ldr r2, [r7, #20] + 800210c: 4313 orrs r3, r2 + 800210e: 617b str r3, [r7, #20] /* the Memory burst and peripheral burst are not used when the FIFO is disabled */ if(hdma->Init.FIFOMode == DMA_FIFOMODE_ENABLE) - 8001ea0: 687b ldr r3, [r7, #4] - 8001ea2: 6a5b ldr r3, [r3, #36] @ 0x24 - 8001ea4: 2b04 cmp r3, #4 - 8001ea6: d107 bne.n 8001eb8 + 8002110: 687b ldr r3, [r7, #4] + 8002112: 6a5b ldr r3, [r3, #36] @ 0x24 + 8002114: 2b04 cmp r3, #4 + 8002116: d107 bne.n 8002128 { /* Get memory burst and peripheral burst */ tmp |= hdma->Init.MemBurst | hdma->Init.PeriphBurst; - 8001ea8: 687b ldr r3, [r7, #4] - 8001eaa: 6ada ldr r2, [r3, #44] @ 0x2c - 8001eac: 687b ldr r3, [r7, #4] - 8001eae: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001eb0: 4313 orrs r3, r2 - 8001eb2: 697a ldr r2, [r7, #20] - 8001eb4: 4313 orrs r3, r2 - 8001eb6: 617b str r3, [r7, #20] + 8002118: 687b ldr r3, [r7, #4] + 800211a: 6ada ldr r2, [r3, #44] @ 0x2c + 800211c: 687b ldr r3, [r7, #4] + 800211e: 6b1b ldr r3, [r3, #48] @ 0x30 + 8002120: 4313 orrs r3, r2 + 8002122: 697a ldr r2, [r7, #20] + 8002124: 4313 orrs r3, r2 + 8002126: 617b str r3, [r7, #20] } /* Write to DMA Stream CR register */ hdma->Instance->CR = tmp; - 8001eb8: 687b ldr r3, [r7, #4] - 8001eba: 681b ldr r3, [r3, #0] - 8001ebc: 697a ldr r2, [r7, #20] - 8001ebe: 601a str r2, [r3, #0] + 8002128: 687b ldr r3, [r7, #4] + 800212a: 681b ldr r3, [r3, #0] + 800212c: 697a ldr r2, [r7, #20] + 800212e: 601a str r2, [r3, #0] /* Get the FCR register value */ tmp = hdma->Instance->FCR; - 8001ec0: 687b ldr r3, [r7, #4] - 8001ec2: 681b ldr r3, [r3, #0] - 8001ec4: 695b ldr r3, [r3, #20] - 8001ec6: 617b str r3, [r7, #20] + 8002130: 687b ldr r3, [r7, #4] + 8002132: 681b ldr r3, [r3, #0] + 8002134: 695b ldr r3, [r3, #20] + 8002136: 617b str r3, [r7, #20] /* Clear Direct mode and FIFO threshold bits */ tmp &= (uint32_t)~(DMA_SxFCR_DMDIS | DMA_SxFCR_FTH); - 8001ec8: 697b ldr r3, [r7, #20] - 8001eca: f023 0307 bic.w r3, r3, #7 - 8001ece: 617b str r3, [r7, #20] + 8002138: 697b ldr r3, [r7, #20] + 800213a: f023 0307 bic.w r3, r3, #7 + 800213e: 617b str r3, [r7, #20] /* Prepare the DMA Stream FIFO configuration */ tmp |= hdma->Init.FIFOMode; - 8001ed0: 687b ldr r3, [r7, #4] - 8001ed2: 6a5b ldr r3, [r3, #36] @ 0x24 - 8001ed4: 697a ldr r2, [r7, #20] - 8001ed6: 4313 orrs r3, r2 - 8001ed8: 617b str r3, [r7, #20] + 8002140: 687b ldr r3, [r7, #4] + 8002142: 6a5b ldr r3, [r3, #36] @ 0x24 + 8002144: 697a ldr r2, [r7, #20] + 8002146: 4313 orrs r3, r2 + 8002148: 617b str r3, [r7, #20] /* The FIFO threshold is not used when the FIFO mode is disabled */ if(hdma->Init.FIFOMode == DMA_FIFOMODE_ENABLE) - 8001eda: 687b ldr r3, [r7, #4] - 8001edc: 6a5b ldr r3, [r3, #36] @ 0x24 - 8001ede: 2b04 cmp r3, #4 - 8001ee0: d117 bne.n 8001f12 + 800214a: 687b ldr r3, [r7, #4] + 800214c: 6a5b ldr r3, [r3, #36] @ 0x24 + 800214e: 2b04 cmp r3, #4 + 8002150: d117 bne.n 8002182 { /* Get the FIFO threshold */ tmp |= hdma->Init.FIFOThreshold; - 8001ee2: 687b ldr r3, [r7, #4] - 8001ee4: 6a9b ldr r3, [r3, #40] @ 0x28 - 8001ee6: 697a ldr r2, [r7, #20] - 8001ee8: 4313 orrs r3, r2 - 8001eea: 617b str r3, [r7, #20] + 8002152: 687b ldr r3, [r7, #4] + 8002154: 6a9b ldr r3, [r3, #40] @ 0x28 + 8002156: 697a ldr r2, [r7, #20] + 8002158: 4313 orrs r3, r2 + 800215a: 617b str r3, [r7, #20] /* Check compatibility between FIFO threshold level and size of the memory burst */ /* for INCR4, INCR8, INCR16 bursts */ if (hdma->Init.MemBurst != DMA_MBURST_SINGLE) - 8001eec: 687b ldr r3, [r7, #4] - 8001eee: 6adb ldr r3, [r3, #44] @ 0x2c - 8001ef0: 2b00 cmp r3, #0 - 8001ef2: d00e beq.n 8001f12 + 800215c: 687b ldr r3, [r7, #4] + 800215e: 6adb ldr r3, [r3, #44] @ 0x2c + 8002160: 2b00 cmp r3, #0 + 8002162: d00e beq.n 8002182 { if (DMA_CheckFifoParam(hdma) != HAL_OK) - 8001ef4: 6878 ldr r0, [r7, #4] - 8001ef6: f000 fb01 bl 80024fc - 8001efa: 4603 mov r3, r0 - 8001efc: 2b00 cmp r3, #0 - 8001efe: d008 beq.n 8001f12 + 8002164: 6878 ldr r0, [r7, #4] + 8002166: f000 fb01 bl 800276c + 800216a: 4603 mov r3, r0 + 800216c: 2b00 cmp r3, #0 + 800216e: d008 beq.n 8002182 { /* Update error code */ hdma->ErrorCode = HAL_DMA_ERROR_PARAM; - 8001f00: 687b ldr r3, [r7, #4] - 8001f02: 2240 movs r2, #64 @ 0x40 - 8001f04: 655a str r2, [r3, #84] @ 0x54 + 8002170: 687b ldr r3, [r7, #4] + 8002172: 2240 movs r2, #64 @ 0x40 + 8002174: 655a str r2, [r3, #84] @ 0x54 /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8001f06: 687b ldr r3, [r7, #4] - 8001f08: 2201 movs r2, #1 - 8001f0a: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002176: 687b ldr r3, [r7, #4] + 8002178: 2201 movs r2, #1 + 800217a: f883 2035 strb.w r2, [r3, #53] @ 0x35 return HAL_ERROR; - 8001f0e: 2301 movs r3, #1 - 8001f10: e016 b.n 8001f40 + 800217e: 2301 movs r3, #1 + 8002180: e016 b.n 80021b0 } } } /* Write to DMA Stream FCR */ hdma->Instance->FCR = tmp; - 8001f12: 687b ldr r3, [r7, #4] - 8001f14: 681b ldr r3, [r3, #0] - 8001f16: 697a ldr r2, [r7, #20] - 8001f18: 615a str r2, [r3, #20] + 8002182: 687b ldr r3, [r7, #4] + 8002184: 681b ldr r3, [r3, #0] + 8002186: 697a ldr r2, [r7, #20] + 8002188: 615a str r2, [r3, #20] /* Initialize StreamBaseAddress and StreamIndex parameters to be used to calculate DMA steam Base Address needed by HAL_DMA_IRQHandler() and HAL_DMA_PollForTransfer() */ regs = (DMA_Base_Registers *)DMA_CalcBaseAndBitshift(hdma); - 8001f1a: 6878 ldr r0, [r7, #4] - 8001f1c: f000 fab8 bl 8002490 - 8001f20: 4603 mov r3, r0 - 8001f22: 60fb str r3, [r7, #12] + 800218a: 6878 ldr r0, [r7, #4] + 800218c: f000 fab8 bl 8002700 + 8002190: 4603 mov r3, r0 + 8002192: 60fb str r3, [r7, #12] /* Clear all interrupt flags */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 8001f24: 687b ldr r3, [r7, #4] - 8001f26: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001f28: 223f movs r2, #63 @ 0x3f - 8001f2a: 409a lsls r2, r3 - 8001f2c: 68fb ldr r3, [r7, #12] - 8001f2e: 609a str r2, [r3, #8] + 8002194: 687b ldr r3, [r7, #4] + 8002196: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002198: 223f movs r2, #63 @ 0x3f + 800219a: 409a lsls r2, r3 + 800219c: 68fb ldr r3, [r7, #12] + 800219e: 609a str r2, [r3, #8] /* Initialize the error code */ hdma->ErrorCode = HAL_DMA_ERROR_NONE; - 8001f30: 687b ldr r3, [r7, #4] - 8001f32: 2200 movs r2, #0 - 8001f34: 655a str r2, [r3, #84] @ 0x54 + 80021a0: 687b ldr r3, [r7, #4] + 80021a2: 2200 movs r2, #0 + 80021a4: 655a str r2, [r3, #84] @ 0x54 /* Initialize the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8001f36: 687b ldr r3, [r7, #4] - 8001f38: 2201 movs r2, #1 - 8001f3a: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 80021a6: 687b ldr r3, [r7, #4] + 80021a8: 2201 movs r2, #1 + 80021aa: f883 2035 strb.w r2, [r3, #53] @ 0x35 return HAL_OK; - 8001f3e: 2300 movs r3, #0 + 80021ae: 2300 movs r3, #0 } - 8001f40: 4618 mov r0, r3 - 8001f42: 3718 adds r7, #24 - 8001f44: 46bd mov sp, r7 - 8001f46: bd80 pop {r7, pc} - 8001f48: f010803f .word 0xf010803f + 80021b0: 4618 mov r0, r3 + 80021b2: 3718 adds r7, #24 + 80021b4: 46bd mov sp, r7 + 80021b6: bd80 pop {r7, pc} + 80021b8: f010803f .word 0xf010803f -08001f4c : +080021bc : * @param DstAddress The destination memory Buffer address * @param DataLength The length of data to be transferred from source to destination * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) { - 8001f4c: b580 push {r7, lr} - 8001f4e: b086 sub sp, #24 - 8001f50: af00 add r7, sp, #0 - 8001f52: 60f8 str r0, [r7, #12] - 8001f54: 60b9 str r1, [r7, #8] - 8001f56: 607a str r2, [r7, #4] - 8001f58: 603b str r3, [r7, #0] + 80021bc: b580 push {r7, lr} + 80021be: b086 sub sp, #24 + 80021c0: af00 add r7, sp, #0 + 80021c2: 60f8 str r0, [r7, #12] + 80021c4: 60b9 str r1, [r7, #8] + 80021c6: 607a str r2, [r7, #4] + 80021c8: 603b str r3, [r7, #0] HAL_StatusTypeDef status = HAL_OK; - 8001f5a: 2300 movs r3, #0 - 8001f5c: 75fb strb r3, [r7, #23] + 80021ca: 2300 movs r3, #0 + 80021cc: 75fb strb r3, [r7, #23] /* calculate DMA base and stream number */ DMA_Base_Registers *regs = (DMA_Base_Registers *)hdma->StreamBaseAddress; - 8001f5e: 68fb ldr r3, [r7, #12] - 8001f60: 6d9b ldr r3, [r3, #88] @ 0x58 - 8001f62: 613b str r3, [r7, #16] + 80021ce: 68fb ldr r3, [r7, #12] + 80021d0: 6d9b ldr r3, [r3, #88] @ 0x58 + 80021d2: 613b str r3, [r7, #16] /* Check the parameters */ assert_param(IS_DMA_BUFFER_SIZE(DataLength)); /* Process locked */ __HAL_LOCK(hdma); - 8001f64: 68fb ldr r3, [r7, #12] - 8001f66: f893 3034 ldrb.w r3, [r3, #52] @ 0x34 - 8001f6a: 2b01 cmp r3, #1 - 8001f6c: d101 bne.n 8001f72 - 8001f6e: 2302 movs r3, #2 - 8001f70: e040 b.n 8001ff4 - 8001f72: 68fb ldr r3, [r7, #12] - 8001f74: 2201 movs r2, #1 - 8001f76: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 80021d4: 68fb ldr r3, [r7, #12] + 80021d6: f893 3034 ldrb.w r3, [r3, #52] @ 0x34 + 80021da: 2b01 cmp r3, #1 + 80021dc: d101 bne.n 80021e2 + 80021de: 2302 movs r3, #2 + 80021e0: e040 b.n 8002264 + 80021e2: 68fb ldr r3, [r7, #12] + 80021e4: 2201 movs r2, #1 + 80021e6: f883 2034 strb.w r2, [r3, #52] @ 0x34 if(HAL_DMA_STATE_READY == hdma->State) - 8001f7a: 68fb ldr r3, [r7, #12] - 8001f7c: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 8001f80: b2db uxtb r3, r3 - 8001f82: 2b01 cmp r3, #1 - 8001f84: d12f bne.n 8001fe6 + 80021ea: 68fb ldr r3, [r7, #12] + 80021ec: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 80021f0: b2db uxtb r3, r3 + 80021f2: 2b01 cmp r3, #1 + 80021f4: d12f bne.n 8002256 { /* Change DMA peripheral state */ hdma->State = HAL_DMA_STATE_BUSY; - 8001f86: 68fb ldr r3, [r7, #12] - 8001f88: 2202 movs r2, #2 - 8001f8a: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 80021f6: 68fb ldr r3, [r7, #12] + 80021f8: 2202 movs r2, #2 + 80021fa: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Initialize the error code */ hdma->ErrorCode = HAL_DMA_ERROR_NONE; - 8001f8e: 68fb ldr r3, [r7, #12] - 8001f90: 2200 movs r2, #0 - 8001f92: 655a str r2, [r3, #84] @ 0x54 + 80021fe: 68fb ldr r3, [r7, #12] + 8002200: 2200 movs r2, #0 + 8002202: 655a str r2, [r3, #84] @ 0x54 /* Configure the source, destination address and the data length */ DMA_SetConfig(hdma, SrcAddress, DstAddress, DataLength); - 8001f94: 683b ldr r3, [r7, #0] - 8001f96: 687a ldr r2, [r7, #4] - 8001f98: 68b9 ldr r1, [r7, #8] - 8001f9a: 68f8 ldr r0, [r7, #12] - 8001f9c: f000 fa4a bl 8002434 + 8002204: 683b ldr r3, [r7, #0] + 8002206: 687a ldr r2, [r7, #4] + 8002208: 68b9 ldr r1, [r7, #8] + 800220a: 68f8 ldr r0, [r7, #12] + 800220c: f000 fa4a bl 80026a4 /* Clear all interrupt flags at correct offset within the register */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 8001fa0: 68fb ldr r3, [r7, #12] - 8001fa2: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001fa4: 223f movs r2, #63 @ 0x3f - 8001fa6: 409a lsls r2, r3 - 8001fa8: 693b ldr r3, [r7, #16] - 8001faa: 609a str r2, [r3, #8] + 8002210: 68fb ldr r3, [r7, #12] + 8002212: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002214: 223f movs r2, #63 @ 0x3f + 8002216: 409a lsls r2, r3 + 8002218: 693b ldr r3, [r7, #16] + 800221a: 609a str r2, [r3, #8] /* Enable Common interrupts*/ hdma->Instance->CR |= DMA_IT_TC | DMA_IT_TE | DMA_IT_DME; - 8001fac: 68fb ldr r3, [r7, #12] - 8001fae: 681b ldr r3, [r3, #0] - 8001fb0: 681a ldr r2, [r3, #0] - 8001fb2: 68fb ldr r3, [r7, #12] - 8001fb4: 681b ldr r3, [r3, #0] - 8001fb6: f042 0216 orr.w r2, r2, #22 - 8001fba: 601a str r2, [r3, #0] + 800221c: 68fb ldr r3, [r7, #12] + 800221e: 681b ldr r3, [r3, #0] + 8002220: 681a ldr r2, [r3, #0] + 8002222: 68fb ldr r3, [r7, #12] + 8002224: 681b ldr r3, [r3, #0] + 8002226: f042 0216 orr.w r2, r2, #22 + 800222a: 601a str r2, [r3, #0] if(hdma->XferHalfCpltCallback != NULL) - 8001fbc: 68fb ldr r3, [r7, #12] - 8001fbe: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001fc0: 2b00 cmp r3, #0 - 8001fc2: d007 beq.n 8001fd4 + 800222c: 68fb ldr r3, [r7, #12] + 800222e: 6c1b ldr r3, [r3, #64] @ 0x40 + 8002230: 2b00 cmp r3, #0 + 8002232: d007 beq.n 8002244 { hdma->Instance->CR |= DMA_IT_HT; - 8001fc4: 68fb ldr r3, [r7, #12] - 8001fc6: 681b ldr r3, [r3, #0] - 8001fc8: 681a ldr r2, [r3, #0] - 8001fca: 68fb ldr r3, [r7, #12] - 8001fcc: 681b ldr r3, [r3, #0] - 8001fce: f042 0208 orr.w r2, r2, #8 - 8001fd2: 601a str r2, [r3, #0] + 8002234: 68fb ldr r3, [r7, #12] + 8002236: 681b ldr r3, [r3, #0] + 8002238: 681a ldr r2, [r3, #0] + 800223a: 68fb ldr r3, [r7, #12] + 800223c: 681b ldr r3, [r3, #0] + 800223e: f042 0208 orr.w r2, r2, #8 + 8002242: 601a str r2, [r3, #0] } /* Enable the Peripheral */ __HAL_DMA_ENABLE(hdma); - 8001fd4: 68fb ldr r3, [r7, #12] - 8001fd6: 681b ldr r3, [r3, #0] - 8001fd8: 681a ldr r2, [r3, #0] - 8001fda: 68fb ldr r3, [r7, #12] - 8001fdc: 681b ldr r3, [r3, #0] - 8001fde: f042 0201 orr.w r2, r2, #1 - 8001fe2: 601a str r2, [r3, #0] - 8001fe4: e005 b.n 8001ff2 + 8002244: 68fb ldr r3, [r7, #12] + 8002246: 681b ldr r3, [r3, #0] + 8002248: 681a ldr r2, [r3, #0] + 800224a: 68fb ldr r3, [r7, #12] + 800224c: 681b ldr r3, [r3, #0] + 800224e: f042 0201 orr.w r2, r2, #1 + 8002252: 601a str r2, [r3, #0] + 8002254: e005 b.n 8002262 } else { /* Process unlocked */ __HAL_UNLOCK(hdma); - 8001fe6: 68fb ldr r3, [r7, #12] - 8001fe8: 2200 movs r2, #0 - 8001fea: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8002256: 68fb ldr r3, [r7, #12] + 8002258: 2200 movs r2, #0 + 800225a: f883 2034 strb.w r2, [r3, #52] @ 0x34 /* Return error status */ status = HAL_BUSY; - 8001fee: 2302 movs r3, #2 - 8001ff0: 75fb strb r3, [r7, #23] + 800225e: 2302 movs r3, #2 + 8002260: 75fb strb r3, [r7, #23] } return status; - 8001ff2: 7dfb ldrb r3, [r7, #23] + 8002262: 7dfb ldrb r3, [r7, #23] } - 8001ff4: 4618 mov r0, r3 - 8001ff6: 3718 adds r7, #24 - 8001ff8: 46bd mov sp, r7 - 8001ffa: bd80 pop {r7, pc} + 8002264: 4618 mov r0, r3 + 8002266: 3718 adds r7, #24 + 8002268: 46bd mov sp, r7 + 800226a: bd80 pop {r7, pc} -08001ffc : +0800226c : * and the Stream will be effectively disabled only after the transfer of * this single data is finished. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) { - 8001ffc: b580 push {r7, lr} - 8001ffe: b084 sub sp, #16 - 8002000: af00 add r7, sp, #0 - 8002002: 6078 str r0, [r7, #4] + 800226c: b580 push {r7, lr} + 800226e: b084 sub sp, #16 + 8002270: af00 add r7, sp, #0 + 8002272: 6078 str r0, [r7, #4] /* calculate DMA base and stream number */ DMA_Base_Registers *regs = (DMA_Base_Registers *)hdma->StreamBaseAddress; - 8002004: 687b ldr r3, [r7, #4] - 8002006: 6d9b ldr r3, [r3, #88] @ 0x58 - 8002008: 60fb str r3, [r7, #12] + 8002274: 687b ldr r3, [r7, #4] + 8002276: 6d9b ldr r3, [r3, #88] @ 0x58 + 8002278: 60fb str r3, [r7, #12] uint32_t tickstart = HAL_GetTick(); - 800200a: f7ff fdaf bl 8001b6c - 800200e: 60b8 str r0, [r7, #8] + 800227a: f7ff fdaf bl 8001ddc + 800227e: 60b8 str r0, [r7, #8] if(hdma->State != HAL_DMA_STATE_BUSY) - 8002010: 687b ldr r3, [r7, #4] - 8002012: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 8002016: b2db uxtb r3, r3 - 8002018: 2b02 cmp r3, #2 - 800201a: d008 beq.n 800202e + 8002280: 687b ldr r3, [r7, #4] + 8002282: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 8002286: b2db uxtb r3, r3 + 8002288: 2b02 cmp r3, #2 + 800228a: d008 beq.n 800229e { hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; - 800201c: 687b ldr r3, [r7, #4] - 800201e: 2280 movs r2, #128 @ 0x80 - 8002020: 655a str r2, [r3, #84] @ 0x54 + 800228c: 687b ldr r3, [r7, #4] + 800228e: 2280 movs r2, #128 @ 0x80 + 8002290: 655a str r2, [r3, #84] @ 0x54 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 8002022: 687b ldr r3, [r7, #4] - 8002024: 2200 movs r2, #0 - 8002026: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8002292: 687b ldr r3, [r7, #4] + 8002294: 2200 movs r2, #0 + 8002296: f883 2034 strb.w r2, [r3, #52] @ 0x34 return HAL_ERROR; - 800202a: 2301 movs r3, #1 - 800202c: e052 b.n 80020d4 + 800229a: 2301 movs r3, #1 + 800229c: e052 b.n 8002344 } else { /* Disable all the transfer interrupts */ hdma->Instance->CR &= ~(DMA_IT_TC | DMA_IT_TE | DMA_IT_DME); - 800202e: 687b ldr r3, [r7, #4] - 8002030: 681b ldr r3, [r3, #0] - 8002032: 681a ldr r2, [r3, #0] - 8002034: 687b ldr r3, [r7, #4] - 8002036: 681b ldr r3, [r3, #0] - 8002038: f022 0216 bic.w r2, r2, #22 - 800203c: 601a str r2, [r3, #0] + 800229e: 687b ldr r3, [r7, #4] + 80022a0: 681b ldr r3, [r3, #0] + 80022a2: 681a ldr r2, [r3, #0] + 80022a4: 687b ldr r3, [r7, #4] + 80022a6: 681b ldr r3, [r3, #0] + 80022a8: f022 0216 bic.w r2, r2, #22 + 80022ac: 601a str r2, [r3, #0] hdma->Instance->FCR &= ~(DMA_IT_FE); - 800203e: 687b ldr r3, [r7, #4] - 8002040: 681b ldr r3, [r3, #0] - 8002042: 695a ldr r2, [r3, #20] - 8002044: 687b ldr r3, [r7, #4] - 8002046: 681b ldr r3, [r3, #0] - 8002048: f022 0280 bic.w r2, r2, #128 @ 0x80 - 800204c: 615a str r2, [r3, #20] + 80022ae: 687b ldr r3, [r7, #4] + 80022b0: 681b ldr r3, [r3, #0] + 80022b2: 695a ldr r2, [r3, #20] + 80022b4: 687b ldr r3, [r7, #4] + 80022b6: 681b ldr r3, [r3, #0] + 80022b8: f022 0280 bic.w r2, r2, #128 @ 0x80 + 80022bc: 615a str r2, [r3, #20] if((hdma->XferHalfCpltCallback != NULL) || (hdma->XferM1HalfCpltCallback != NULL)) - 800204e: 687b ldr r3, [r7, #4] - 8002050: 6c1b ldr r3, [r3, #64] @ 0x40 - 8002052: 2b00 cmp r3, #0 - 8002054: d103 bne.n 800205e - 8002056: 687b ldr r3, [r7, #4] - 8002058: 6c9b ldr r3, [r3, #72] @ 0x48 - 800205a: 2b00 cmp r3, #0 - 800205c: d007 beq.n 800206e + 80022be: 687b ldr r3, [r7, #4] + 80022c0: 6c1b ldr r3, [r3, #64] @ 0x40 + 80022c2: 2b00 cmp r3, #0 + 80022c4: d103 bne.n 80022ce + 80022c6: 687b ldr r3, [r7, #4] + 80022c8: 6c9b ldr r3, [r3, #72] @ 0x48 + 80022ca: 2b00 cmp r3, #0 + 80022cc: d007 beq.n 80022de { hdma->Instance->CR &= ~(DMA_IT_HT); - 800205e: 687b ldr r3, [r7, #4] - 8002060: 681b ldr r3, [r3, #0] - 8002062: 681a ldr r2, [r3, #0] - 8002064: 687b ldr r3, [r7, #4] - 8002066: 681b ldr r3, [r3, #0] - 8002068: f022 0208 bic.w r2, r2, #8 - 800206c: 601a str r2, [r3, #0] + 80022ce: 687b ldr r3, [r7, #4] + 80022d0: 681b ldr r3, [r3, #0] + 80022d2: 681a ldr r2, [r3, #0] + 80022d4: 687b ldr r3, [r7, #4] + 80022d6: 681b ldr r3, [r3, #0] + 80022d8: f022 0208 bic.w r2, r2, #8 + 80022dc: 601a str r2, [r3, #0] } /* Disable the stream */ __HAL_DMA_DISABLE(hdma); - 800206e: 687b ldr r3, [r7, #4] - 8002070: 681b ldr r3, [r3, #0] - 8002072: 681a ldr r2, [r3, #0] - 8002074: 687b ldr r3, [r7, #4] - 8002076: 681b ldr r3, [r3, #0] - 8002078: f022 0201 bic.w r2, r2, #1 - 800207c: 601a str r2, [r3, #0] + 80022de: 687b ldr r3, [r7, #4] + 80022e0: 681b ldr r3, [r3, #0] + 80022e2: 681a ldr r2, [r3, #0] + 80022e4: 687b ldr r3, [r7, #4] + 80022e6: 681b ldr r3, [r3, #0] + 80022e8: f022 0201 bic.w r2, r2, #1 + 80022ec: 601a str r2, [r3, #0] /* Check if the DMA Stream is effectively disabled */ while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 800207e: e013 b.n 80020a8 + 80022ee: e013 b.n 8002318 { /* Check for the Timeout */ if((HAL_GetTick() - tickstart ) > HAL_TIMEOUT_DMA_ABORT) - 8002080: f7ff fd74 bl 8001b6c - 8002084: 4602 mov r2, r0 - 8002086: 68bb ldr r3, [r7, #8] - 8002088: 1ad3 subs r3, r2, r3 - 800208a: 2b05 cmp r3, #5 - 800208c: d90c bls.n 80020a8 + 80022f0: f7ff fd74 bl 8001ddc + 80022f4: 4602 mov r2, r0 + 80022f6: 68bb ldr r3, [r7, #8] + 80022f8: 1ad3 subs r3, r2, r3 + 80022fa: 2b05 cmp r3, #5 + 80022fc: d90c bls.n 8002318 { /* Update error code */ hdma->ErrorCode = HAL_DMA_ERROR_TIMEOUT; - 800208e: 687b ldr r3, [r7, #4] - 8002090: 2220 movs r2, #32 - 8002092: 655a str r2, [r3, #84] @ 0x54 + 80022fe: 687b ldr r3, [r7, #4] + 8002300: 2220 movs r2, #32 + 8002302: 655a str r2, [r3, #84] @ 0x54 /* Change the DMA state */ hdma->State = HAL_DMA_STATE_TIMEOUT; - 8002094: 687b ldr r3, [r7, #4] - 8002096: 2203 movs r2, #3 - 8002098: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002304: 687b ldr r3, [r7, #4] + 8002306: 2203 movs r2, #3 + 8002308: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800209c: 687b ldr r3, [r7, #4] - 800209e: 2200 movs r2, #0 - 80020a0: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 800230c: 687b ldr r3, [r7, #4] + 800230e: 2200 movs r2, #0 + 8002310: f883 2034 strb.w r2, [r3, #52] @ 0x34 return HAL_TIMEOUT; - 80020a4: 2303 movs r3, #3 - 80020a6: e015 b.n 80020d4 + 8002314: 2303 movs r3, #3 + 8002316: e015 b.n 8002344 while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 80020a8: 687b ldr r3, [r7, #4] - 80020aa: 681b ldr r3, [r3, #0] - 80020ac: 681b ldr r3, [r3, #0] - 80020ae: f003 0301 and.w r3, r3, #1 - 80020b2: 2b00 cmp r3, #0 - 80020b4: d1e4 bne.n 8002080 + 8002318: 687b ldr r3, [r7, #4] + 800231a: 681b ldr r3, [r3, #0] + 800231c: 681b ldr r3, [r3, #0] + 800231e: f003 0301 and.w r3, r3, #1 + 8002322: 2b00 cmp r3, #0 + 8002324: d1e4 bne.n 80022f0 } } /* Clear all interrupt flags at correct offset within the register */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 80020b6: 687b ldr r3, [r7, #4] - 80020b8: 6ddb ldr r3, [r3, #92] @ 0x5c - 80020ba: 223f movs r2, #63 @ 0x3f - 80020bc: 409a lsls r2, r3 - 80020be: 68fb ldr r3, [r7, #12] - 80020c0: 609a str r2, [r3, #8] + 8002326: 687b ldr r3, [r7, #4] + 8002328: 6ddb ldr r3, [r3, #92] @ 0x5c + 800232a: 223f movs r2, #63 @ 0x3f + 800232c: 409a lsls r2, r3 + 800232e: 68fb ldr r3, [r7, #12] + 8002330: 609a str r2, [r3, #8] /* Change the DMA state*/ hdma->State = HAL_DMA_STATE_READY; - 80020c2: 687b ldr r3, [r7, #4] - 80020c4: 2201 movs r2, #1 - 80020c6: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002332: 687b ldr r3, [r7, #4] + 8002334: 2201 movs r2, #1 + 8002336: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 80020ca: 687b ldr r3, [r7, #4] - 80020cc: 2200 movs r2, #0 - 80020ce: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 800233a: 687b ldr r3, [r7, #4] + 800233c: 2200 movs r2, #0 + 800233e: f883 2034 strb.w r2, [r3, #52] @ 0x34 } return HAL_OK; - 80020d2: 2300 movs r3, #0 + 8002342: 2300 movs r3, #0 } - 80020d4: 4618 mov r0, r3 - 80020d6: 3710 adds r7, #16 - 80020d8: 46bd mov sp, r7 - 80020da: bd80 pop {r7, pc} + 8002344: 4618 mov r0, r3 + 8002346: 3710 adds r7, #16 + 8002348: 46bd mov sp, r7 + 800234a: bd80 pop {r7, pc} -080020dc : +0800234c : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) { - 80020dc: b480 push {r7} - 80020de: b083 sub sp, #12 - 80020e0: af00 add r7, sp, #0 - 80020e2: 6078 str r0, [r7, #4] + 800234c: b480 push {r7} + 800234e: b083 sub sp, #12 + 8002350: af00 add r7, sp, #0 + 8002352: 6078 str r0, [r7, #4] if(hdma->State != HAL_DMA_STATE_BUSY) - 80020e4: 687b ldr r3, [r7, #4] - 80020e6: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 80020ea: b2db uxtb r3, r3 - 80020ec: 2b02 cmp r3, #2 - 80020ee: d004 beq.n 80020fa + 8002354: 687b ldr r3, [r7, #4] + 8002356: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 800235a: b2db uxtb r3, r3 + 800235c: 2b02 cmp r3, #2 + 800235e: d004 beq.n 800236a { hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; - 80020f0: 687b ldr r3, [r7, #4] - 80020f2: 2280 movs r2, #128 @ 0x80 - 80020f4: 655a str r2, [r3, #84] @ 0x54 + 8002360: 687b ldr r3, [r7, #4] + 8002362: 2280 movs r2, #128 @ 0x80 + 8002364: 655a str r2, [r3, #84] @ 0x54 return HAL_ERROR; - 80020f6: 2301 movs r3, #1 - 80020f8: e00c b.n 8002114 + 8002366: 2301 movs r3, #1 + 8002368: e00c b.n 8002384 } else { /* Set Abort State */ hdma->State = HAL_DMA_STATE_ABORT; - 80020fa: 687b ldr r3, [r7, #4] - 80020fc: 2205 movs r2, #5 - 80020fe: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 800236a: 687b ldr r3, [r7, #4] + 800236c: 2205 movs r2, #5 + 800236e: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Disable the stream */ __HAL_DMA_DISABLE(hdma); - 8002102: 687b ldr r3, [r7, #4] - 8002104: 681b ldr r3, [r3, #0] - 8002106: 681a ldr r2, [r3, #0] - 8002108: 687b ldr r3, [r7, #4] - 800210a: 681b ldr r3, [r3, #0] - 800210c: f022 0201 bic.w r2, r2, #1 - 8002110: 601a str r2, [r3, #0] + 8002372: 687b ldr r3, [r7, #4] + 8002374: 681b ldr r3, [r3, #0] + 8002376: 681a ldr r2, [r3, #0] + 8002378: 687b ldr r3, [r7, #4] + 800237a: 681b ldr r3, [r3, #0] + 800237c: f022 0201 bic.w r2, r2, #1 + 8002380: 601a str r2, [r3, #0] } return HAL_OK; - 8002112: 2300 movs r3, #0 + 8002382: 2300 movs r3, #0 } - 8002114: 4618 mov r0, r3 - 8002116: 370c adds r7, #12 - 8002118: 46bd mov sp, r7 - 800211a: f85d 7b04 ldr.w r7, [sp], #4 - 800211e: 4770 bx lr + 8002384: 4618 mov r0, r3 + 8002386: 370c adds r7, #12 + 8002388: 46bd mov sp, r7 + 800238a: f85d 7b04 ldr.w r7, [sp], #4 + 800238e: 4770 bx lr -08002120 : +08002390 : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval None */ void HAL_DMA_IRQHandler(DMA_HandleTypeDef *hdma) { - 8002120: b580 push {r7, lr} - 8002122: b086 sub sp, #24 - 8002124: af00 add r7, sp, #0 - 8002126: 6078 str r0, [r7, #4] + 8002390: b580 push {r7, lr} + 8002392: b086 sub sp, #24 + 8002394: af00 add r7, sp, #0 + 8002396: 6078 str r0, [r7, #4] uint32_t tmpisr; __IO uint32_t count = 0U; - 8002128: 2300 movs r3, #0 - 800212a: 60bb str r3, [r7, #8] + 8002398: 2300 movs r3, #0 + 800239a: 60bb str r3, [r7, #8] uint32_t timeout = SystemCoreClock / 9600U; - 800212c: 4b8e ldr r3, [pc, #568] @ (8002368 ) - 800212e: 681b ldr r3, [r3, #0] - 8002130: 4a8e ldr r2, [pc, #568] @ (800236c ) - 8002132: fba2 2303 umull r2, r3, r2, r3 - 8002136: 0a9b lsrs r3, r3, #10 - 8002138: 617b str r3, [r7, #20] + 800239c: 4b8e ldr r3, [pc, #568] @ (80025d8 ) + 800239e: 681b ldr r3, [r3, #0] + 80023a0: 4a8e ldr r2, [pc, #568] @ (80025dc ) + 80023a2: fba2 2303 umull r2, r3, r2, r3 + 80023a6: 0a9b lsrs r3, r3, #10 + 80023a8: 617b str r3, [r7, #20] /* calculate DMA base and stream number */ DMA_Base_Registers *regs = (DMA_Base_Registers *)hdma->StreamBaseAddress; - 800213a: 687b ldr r3, [r7, #4] - 800213c: 6d9b ldr r3, [r3, #88] @ 0x58 - 800213e: 613b str r3, [r7, #16] + 80023aa: 687b ldr r3, [r7, #4] + 80023ac: 6d9b ldr r3, [r3, #88] @ 0x58 + 80023ae: 613b str r3, [r7, #16] tmpisr = regs->ISR; - 8002140: 693b ldr r3, [r7, #16] - 8002142: 681b ldr r3, [r3, #0] - 8002144: 60fb str r3, [r7, #12] + 80023b0: 693b ldr r3, [r7, #16] + 80023b2: 681b ldr r3, [r3, #0] + 80023b4: 60fb str r3, [r7, #12] /* Transfer Error Interrupt management ***************************************/ if ((tmpisr & (DMA_FLAG_TEIF0_4 << hdma->StreamIndex)) != RESET) - 8002146: 687b ldr r3, [r7, #4] - 8002148: 6ddb ldr r3, [r3, #92] @ 0x5c - 800214a: 2208 movs r2, #8 - 800214c: 409a lsls r2, r3 - 800214e: 68fb ldr r3, [r7, #12] - 8002150: 4013 ands r3, r2 - 8002152: 2b00 cmp r3, #0 - 8002154: d01a beq.n 800218c + 80023b6: 687b ldr r3, [r7, #4] + 80023b8: 6ddb ldr r3, [r3, #92] @ 0x5c + 80023ba: 2208 movs r2, #8 + 80023bc: 409a lsls r2, r3 + 80023be: 68fb ldr r3, [r7, #12] + 80023c0: 4013 ands r3, r2 + 80023c2: 2b00 cmp r3, #0 + 80023c4: d01a beq.n 80023fc { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_TE) != RESET) - 8002156: 687b ldr r3, [r7, #4] - 8002158: 681b ldr r3, [r3, #0] - 800215a: 681b ldr r3, [r3, #0] - 800215c: f003 0304 and.w r3, r3, #4 - 8002160: 2b00 cmp r3, #0 - 8002162: d013 beq.n 800218c + 80023c6: 687b ldr r3, [r7, #4] + 80023c8: 681b ldr r3, [r3, #0] + 80023ca: 681b ldr r3, [r3, #0] + 80023cc: f003 0304 and.w r3, r3, #4 + 80023d0: 2b00 cmp r3, #0 + 80023d2: d013 beq.n 80023fc { /* Disable the transfer error interrupt */ hdma->Instance->CR &= ~(DMA_IT_TE); - 8002164: 687b ldr r3, [r7, #4] - 8002166: 681b ldr r3, [r3, #0] - 8002168: 681a ldr r2, [r3, #0] - 800216a: 687b ldr r3, [r7, #4] - 800216c: 681b ldr r3, [r3, #0] - 800216e: f022 0204 bic.w r2, r2, #4 - 8002172: 601a str r2, [r3, #0] + 80023d4: 687b ldr r3, [r7, #4] + 80023d6: 681b ldr r3, [r3, #0] + 80023d8: 681a ldr r2, [r3, #0] + 80023da: 687b ldr r3, [r7, #4] + 80023dc: 681b ldr r3, [r3, #0] + 80023de: f022 0204 bic.w r2, r2, #4 + 80023e2: 601a str r2, [r3, #0] /* Clear the transfer error flag */ regs->IFCR = DMA_FLAG_TEIF0_4 << hdma->StreamIndex; - 8002174: 687b ldr r3, [r7, #4] - 8002176: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002178: 2208 movs r2, #8 - 800217a: 409a lsls r2, r3 - 800217c: 693b ldr r3, [r7, #16] - 800217e: 609a str r2, [r3, #8] + 80023e4: 687b ldr r3, [r7, #4] + 80023e6: 6ddb ldr r3, [r3, #92] @ 0x5c + 80023e8: 2208 movs r2, #8 + 80023ea: 409a lsls r2, r3 + 80023ec: 693b ldr r3, [r7, #16] + 80023ee: 609a str r2, [r3, #8] /* Update error code */ hdma->ErrorCode |= HAL_DMA_ERROR_TE; - 8002180: 687b ldr r3, [r7, #4] - 8002182: 6d5b ldr r3, [r3, #84] @ 0x54 - 8002184: f043 0201 orr.w r2, r3, #1 - 8002188: 687b ldr r3, [r7, #4] - 800218a: 655a str r2, [r3, #84] @ 0x54 + 80023f0: 687b ldr r3, [r7, #4] + 80023f2: 6d5b ldr r3, [r3, #84] @ 0x54 + 80023f4: f043 0201 orr.w r2, r3, #1 + 80023f8: 687b ldr r3, [r7, #4] + 80023fa: 655a str r2, [r3, #84] @ 0x54 } } /* FIFO Error Interrupt management ******************************************/ if ((tmpisr & (DMA_FLAG_FEIF0_4 << hdma->StreamIndex)) != RESET) - 800218c: 687b ldr r3, [r7, #4] - 800218e: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002190: 2201 movs r2, #1 - 8002192: 409a lsls r2, r3 - 8002194: 68fb ldr r3, [r7, #12] - 8002196: 4013 ands r3, r2 - 8002198: 2b00 cmp r3, #0 - 800219a: d012 beq.n 80021c2 + 80023fc: 687b ldr r3, [r7, #4] + 80023fe: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002400: 2201 movs r2, #1 + 8002402: 409a lsls r2, r3 + 8002404: 68fb ldr r3, [r7, #12] + 8002406: 4013 ands r3, r2 + 8002408: 2b00 cmp r3, #0 + 800240a: d012 beq.n 8002432 { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_FE) != RESET) - 800219c: 687b ldr r3, [r7, #4] - 800219e: 681b ldr r3, [r3, #0] - 80021a0: 695b ldr r3, [r3, #20] - 80021a2: f003 0380 and.w r3, r3, #128 @ 0x80 - 80021a6: 2b00 cmp r3, #0 - 80021a8: d00b beq.n 80021c2 + 800240c: 687b ldr r3, [r7, #4] + 800240e: 681b ldr r3, [r3, #0] + 8002410: 695b ldr r3, [r3, #20] + 8002412: f003 0380 and.w r3, r3, #128 @ 0x80 + 8002416: 2b00 cmp r3, #0 + 8002418: d00b beq.n 8002432 { /* Clear the FIFO error flag */ regs->IFCR = DMA_FLAG_FEIF0_4 << hdma->StreamIndex; - 80021aa: 687b ldr r3, [r7, #4] - 80021ac: 6ddb ldr r3, [r3, #92] @ 0x5c - 80021ae: 2201 movs r2, #1 - 80021b0: 409a lsls r2, r3 - 80021b2: 693b ldr r3, [r7, #16] - 80021b4: 609a str r2, [r3, #8] + 800241a: 687b ldr r3, [r7, #4] + 800241c: 6ddb ldr r3, [r3, #92] @ 0x5c + 800241e: 2201 movs r2, #1 + 8002420: 409a lsls r2, r3 + 8002422: 693b ldr r3, [r7, #16] + 8002424: 609a str r2, [r3, #8] /* Update error code */ hdma->ErrorCode |= HAL_DMA_ERROR_FE; - 80021b6: 687b ldr r3, [r7, #4] - 80021b8: 6d5b ldr r3, [r3, #84] @ 0x54 - 80021ba: f043 0202 orr.w r2, r3, #2 - 80021be: 687b ldr r3, [r7, #4] - 80021c0: 655a str r2, [r3, #84] @ 0x54 + 8002426: 687b ldr r3, [r7, #4] + 8002428: 6d5b ldr r3, [r3, #84] @ 0x54 + 800242a: f043 0202 orr.w r2, r3, #2 + 800242e: 687b ldr r3, [r7, #4] + 8002430: 655a str r2, [r3, #84] @ 0x54 } } /* Direct Mode Error Interrupt management ***********************************/ if ((tmpisr & (DMA_FLAG_DMEIF0_4 << hdma->StreamIndex)) != RESET) - 80021c2: 687b ldr r3, [r7, #4] - 80021c4: 6ddb ldr r3, [r3, #92] @ 0x5c - 80021c6: 2204 movs r2, #4 - 80021c8: 409a lsls r2, r3 - 80021ca: 68fb ldr r3, [r7, #12] - 80021cc: 4013 ands r3, r2 - 80021ce: 2b00 cmp r3, #0 - 80021d0: d012 beq.n 80021f8 + 8002432: 687b ldr r3, [r7, #4] + 8002434: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002436: 2204 movs r2, #4 + 8002438: 409a lsls r2, r3 + 800243a: 68fb ldr r3, [r7, #12] + 800243c: 4013 ands r3, r2 + 800243e: 2b00 cmp r3, #0 + 8002440: d012 beq.n 8002468 { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_DME) != RESET) - 80021d2: 687b ldr r3, [r7, #4] - 80021d4: 681b ldr r3, [r3, #0] - 80021d6: 681b ldr r3, [r3, #0] - 80021d8: f003 0302 and.w r3, r3, #2 - 80021dc: 2b00 cmp r3, #0 - 80021de: d00b beq.n 80021f8 + 8002442: 687b ldr r3, [r7, #4] + 8002444: 681b ldr r3, [r3, #0] + 8002446: 681b ldr r3, [r3, #0] + 8002448: f003 0302 and.w r3, r3, #2 + 800244c: 2b00 cmp r3, #0 + 800244e: d00b beq.n 8002468 { /* Clear the direct mode error flag */ regs->IFCR = DMA_FLAG_DMEIF0_4 << hdma->StreamIndex; - 80021e0: 687b ldr r3, [r7, #4] - 80021e2: 6ddb ldr r3, [r3, #92] @ 0x5c - 80021e4: 2204 movs r2, #4 - 80021e6: 409a lsls r2, r3 - 80021e8: 693b ldr r3, [r7, #16] - 80021ea: 609a str r2, [r3, #8] + 8002450: 687b ldr r3, [r7, #4] + 8002452: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002454: 2204 movs r2, #4 + 8002456: 409a lsls r2, r3 + 8002458: 693b ldr r3, [r7, #16] + 800245a: 609a str r2, [r3, #8] /* Update error code */ hdma->ErrorCode |= HAL_DMA_ERROR_DME; - 80021ec: 687b ldr r3, [r7, #4] - 80021ee: 6d5b ldr r3, [r3, #84] @ 0x54 - 80021f0: f043 0204 orr.w r2, r3, #4 - 80021f4: 687b ldr r3, [r7, #4] - 80021f6: 655a str r2, [r3, #84] @ 0x54 + 800245c: 687b ldr r3, [r7, #4] + 800245e: 6d5b ldr r3, [r3, #84] @ 0x54 + 8002460: f043 0204 orr.w r2, r3, #4 + 8002464: 687b ldr r3, [r7, #4] + 8002466: 655a str r2, [r3, #84] @ 0x54 } } /* Half Transfer Complete Interrupt management ******************************/ if ((tmpisr & (DMA_FLAG_HTIF0_4 << hdma->StreamIndex)) != RESET) - 80021f8: 687b ldr r3, [r7, #4] - 80021fa: 6ddb ldr r3, [r3, #92] @ 0x5c - 80021fc: 2210 movs r2, #16 - 80021fe: 409a lsls r2, r3 - 8002200: 68fb ldr r3, [r7, #12] - 8002202: 4013 ands r3, r2 - 8002204: 2b00 cmp r3, #0 - 8002206: d043 beq.n 8002290 + 8002468: 687b ldr r3, [r7, #4] + 800246a: 6ddb ldr r3, [r3, #92] @ 0x5c + 800246c: 2210 movs r2, #16 + 800246e: 409a lsls r2, r3 + 8002470: 68fb ldr r3, [r7, #12] + 8002472: 4013 ands r3, r2 + 8002474: 2b00 cmp r3, #0 + 8002476: d043 beq.n 8002500 { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_HT) != RESET) - 8002208: 687b ldr r3, [r7, #4] - 800220a: 681b ldr r3, [r3, #0] - 800220c: 681b ldr r3, [r3, #0] - 800220e: f003 0308 and.w r3, r3, #8 - 8002212: 2b00 cmp r3, #0 - 8002214: d03c beq.n 8002290 + 8002478: 687b ldr r3, [r7, #4] + 800247a: 681b ldr r3, [r3, #0] + 800247c: 681b ldr r3, [r3, #0] + 800247e: f003 0308 and.w r3, r3, #8 + 8002482: 2b00 cmp r3, #0 + 8002484: d03c beq.n 8002500 { /* Clear the half transfer complete flag */ regs->IFCR = DMA_FLAG_HTIF0_4 << hdma->StreamIndex; - 8002216: 687b ldr r3, [r7, #4] - 8002218: 6ddb ldr r3, [r3, #92] @ 0x5c - 800221a: 2210 movs r2, #16 - 800221c: 409a lsls r2, r3 - 800221e: 693b ldr r3, [r7, #16] - 8002220: 609a str r2, [r3, #8] + 8002486: 687b ldr r3, [r7, #4] + 8002488: 6ddb ldr r3, [r3, #92] @ 0x5c + 800248a: 2210 movs r2, #16 + 800248c: 409a lsls r2, r3 + 800248e: 693b ldr r3, [r7, #16] + 8002490: 609a str r2, [r3, #8] /* Multi_Buffering mode enabled */ if(((hdma->Instance->CR) & (uint32_t)(DMA_SxCR_DBM)) != RESET) - 8002222: 687b ldr r3, [r7, #4] - 8002224: 681b ldr r3, [r3, #0] - 8002226: 681b ldr r3, [r3, #0] - 8002228: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 800222c: 2b00 cmp r3, #0 - 800222e: d018 beq.n 8002262 + 8002492: 687b ldr r3, [r7, #4] + 8002494: 681b ldr r3, [r3, #0] + 8002496: 681b ldr r3, [r3, #0] + 8002498: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 800249c: 2b00 cmp r3, #0 + 800249e: d018 beq.n 80024d2 { /* Current memory buffer used is Memory 0 */ if((hdma->Instance->CR & DMA_SxCR_CT) == RESET) - 8002230: 687b ldr r3, [r7, #4] - 8002232: 681b ldr r3, [r3, #0] - 8002234: 681b ldr r3, [r3, #0] - 8002236: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 800223a: 2b00 cmp r3, #0 - 800223c: d108 bne.n 8002250 + 80024a0: 687b ldr r3, [r7, #4] + 80024a2: 681b ldr r3, [r3, #0] + 80024a4: 681b ldr r3, [r3, #0] + 80024a6: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 80024aa: 2b00 cmp r3, #0 + 80024ac: d108 bne.n 80024c0 { if(hdma->XferHalfCpltCallback != NULL) - 800223e: 687b ldr r3, [r7, #4] - 8002240: 6c1b ldr r3, [r3, #64] @ 0x40 - 8002242: 2b00 cmp r3, #0 - 8002244: d024 beq.n 8002290 + 80024ae: 687b ldr r3, [r7, #4] + 80024b0: 6c1b ldr r3, [r3, #64] @ 0x40 + 80024b2: 2b00 cmp r3, #0 + 80024b4: d024 beq.n 8002500 { /* Half transfer callback */ hdma->XferHalfCpltCallback(hdma); - 8002246: 687b ldr r3, [r7, #4] - 8002248: 6c1b ldr r3, [r3, #64] @ 0x40 - 800224a: 6878 ldr r0, [r7, #4] - 800224c: 4798 blx r3 - 800224e: e01f b.n 8002290 + 80024b6: 687b ldr r3, [r7, #4] + 80024b8: 6c1b ldr r3, [r3, #64] @ 0x40 + 80024ba: 6878 ldr r0, [r7, #4] + 80024bc: 4798 blx r3 + 80024be: e01f b.n 8002500 } } /* Current memory buffer used is Memory 1 */ else { if(hdma->XferM1HalfCpltCallback != NULL) - 8002250: 687b ldr r3, [r7, #4] - 8002252: 6c9b ldr r3, [r3, #72] @ 0x48 - 8002254: 2b00 cmp r3, #0 - 8002256: d01b beq.n 8002290 + 80024c0: 687b ldr r3, [r7, #4] + 80024c2: 6c9b ldr r3, [r3, #72] @ 0x48 + 80024c4: 2b00 cmp r3, #0 + 80024c6: d01b beq.n 8002500 { /* Half transfer callback */ hdma->XferM1HalfCpltCallback(hdma); - 8002258: 687b ldr r3, [r7, #4] - 800225a: 6c9b ldr r3, [r3, #72] @ 0x48 - 800225c: 6878 ldr r0, [r7, #4] - 800225e: 4798 blx r3 - 8002260: e016 b.n 8002290 + 80024c8: 687b ldr r3, [r7, #4] + 80024ca: 6c9b ldr r3, [r3, #72] @ 0x48 + 80024cc: 6878 ldr r0, [r7, #4] + 80024ce: 4798 blx r3 + 80024d0: e016 b.n 8002500 } } else { /* Disable the half transfer interrupt if the DMA mode is not CIRCULAR */ if((hdma->Instance->CR & DMA_SxCR_CIRC) == RESET) - 8002262: 687b ldr r3, [r7, #4] - 8002264: 681b ldr r3, [r3, #0] - 8002266: 681b ldr r3, [r3, #0] - 8002268: f403 7380 and.w r3, r3, #256 @ 0x100 - 800226c: 2b00 cmp r3, #0 - 800226e: d107 bne.n 8002280 + 80024d2: 687b ldr r3, [r7, #4] + 80024d4: 681b ldr r3, [r3, #0] + 80024d6: 681b ldr r3, [r3, #0] + 80024d8: f403 7380 and.w r3, r3, #256 @ 0x100 + 80024dc: 2b00 cmp r3, #0 + 80024de: d107 bne.n 80024f0 { /* Disable the half transfer interrupt */ hdma->Instance->CR &= ~(DMA_IT_HT); - 8002270: 687b ldr r3, [r7, #4] - 8002272: 681b ldr r3, [r3, #0] - 8002274: 681a ldr r2, [r3, #0] - 8002276: 687b ldr r3, [r7, #4] - 8002278: 681b ldr r3, [r3, #0] - 800227a: f022 0208 bic.w r2, r2, #8 - 800227e: 601a str r2, [r3, #0] + 80024e0: 687b ldr r3, [r7, #4] + 80024e2: 681b ldr r3, [r3, #0] + 80024e4: 681a ldr r2, [r3, #0] + 80024e6: 687b ldr r3, [r7, #4] + 80024e8: 681b ldr r3, [r3, #0] + 80024ea: f022 0208 bic.w r2, r2, #8 + 80024ee: 601a str r2, [r3, #0] } if(hdma->XferHalfCpltCallback != NULL) - 8002280: 687b ldr r3, [r7, #4] - 8002282: 6c1b ldr r3, [r3, #64] @ 0x40 - 8002284: 2b00 cmp r3, #0 - 8002286: d003 beq.n 8002290 + 80024f0: 687b ldr r3, [r7, #4] + 80024f2: 6c1b ldr r3, [r3, #64] @ 0x40 + 80024f4: 2b00 cmp r3, #0 + 80024f6: d003 beq.n 8002500 { /* Half transfer callback */ hdma->XferHalfCpltCallback(hdma); - 8002288: 687b ldr r3, [r7, #4] - 800228a: 6c1b ldr r3, [r3, #64] @ 0x40 - 800228c: 6878 ldr r0, [r7, #4] - 800228e: 4798 blx r3 + 80024f8: 687b ldr r3, [r7, #4] + 80024fa: 6c1b ldr r3, [r3, #64] @ 0x40 + 80024fc: 6878 ldr r0, [r7, #4] + 80024fe: 4798 blx r3 } } } } /* Transfer Complete Interrupt management ***********************************/ if ((tmpisr & (DMA_FLAG_TCIF0_4 << hdma->StreamIndex)) != RESET) - 8002290: 687b ldr r3, [r7, #4] - 8002292: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002294: 2220 movs r2, #32 - 8002296: 409a lsls r2, r3 - 8002298: 68fb ldr r3, [r7, #12] - 800229a: 4013 ands r3, r2 - 800229c: 2b00 cmp r3, #0 - 800229e: f000 808f beq.w 80023c0 + 8002500: 687b ldr r3, [r7, #4] + 8002502: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002504: 2220 movs r2, #32 + 8002506: 409a lsls r2, r3 + 8002508: 68fb ldr r3, [r7, #12] + 800250a: 4013 ands r3, r2 + 800250c: 2b00 cmp r3, #0 + 800250e: f000 808f beq.w 8002630 { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_TC) != RESET) - 80022a2: 687b ldr r3, [r7, #4] - 80022a4: 681b ldr r3, [r3, #0] - 80022a6: 681b ldr r3, [r3, #0] - 80022a8: f003 0310 and.w r3, r3, #16 - 80022ac: 2b00 cmp r3, #0 - 80022ae: f000 8087 beq.w 80023c0 + 8002512: 687b ldr r3, [r7, #4] + 8002514: 681b ldr r3, [r3, #0] + 8002516: 681b ldr r3, [r3, #0] + 8002518: f003 0310 and.w r3, r3, #16 + 800251c: 2b00 cmp r3, #0 + 800251e: f000 8087 beq.w 8002630 { /* Clear the transfer complete flag */ regs->IFCR = DMA_FLAG_TCIF0_4 << hdma->StreamIndex; - 80022b2: 687b ldr r3, [r7, #4] - 80022b4: 6ddb ldr r3, [r3, #92] @ 0x5c - 80022b6: 2220 movs r2, #32 - 80022b8: 409a lsls r2, r3 - 80022ba: 693b ldr r3, [r7, #16] - 80022bc: 609a str r2, [r3, #8] + 8002522: 687b ldr r3, [r7, #4] + 8002524: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002526: 2220 movs r2, #32 + 8002528: 409a lsls r2, r3 + 800252a: 693b ldr r3, [r7, #16] + 800252c: 609a str r2, [r3, #8] if(HAL_DMA_STATE_ABORT == hdma->State) - 80022be: 687b ldr r3, [r7, #4] - 80022c0: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 80022c4: b2db uxtb r3, r3 - 80022c6: 2b05 cmp r3, #5 - 80022c8: d136 bne.n 8002338 + 800252e: 687b ldr r3, [r7, #4] + 8002530: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 8002534: b2db uxtb r3, r3 + 8002536: 2b05 cmp r3, #5 + 8002538: d136 bne.n 80025a8 { /* Disable all the transfer interrupts */ hdma->Instance->CR &= ~(DMA_IT_TC | DMA_IT_TE | DMA_IT_DME); - 80022ca: 687b ldr r3, [r7, #4] - 80022cc: 681b ldr r3, [r3, #0] - 80022ce: 681a ldr r2, [r3, #0] - 80022d0: 687b ldr r3, [r7, #4] - 80022d2: 681b ldr r3, [r3, #0] - 80022d4: f022 0216 bic.w r2, r2, #22 - 80022d8: 601a str r2, [r3, #0] + 800253a: 687b ldr r3, [r7, #4] + 800253c: 681b ldr r3, [r3, #0] + 800253e: 681a ldr r2, [r3, #0] + 8002540: 687b ldr r3, [r7, #4] + 8002542: 681b ldr r3, [r3, #0] + 8002544: f022 0216 bic.w r2, r2, #22 + 8002548: 601a str r2, [r3, #0] hdma->Instance->FCR &= ~(DMA_IT_FE); - 80022da: 687b ldr r3, [r7, #4] - 80022dc: 681b ldr r3, [r3, #0] - 80022de: 695a ldr r2, [r3, #20] - 80022e0: 687b ldr r3, [r7, #4] - 80022e2: 681b ldr r3, [r3, #0] - 80022e4: f022 0280 bic.w r2, r2, #128 @ 0x80 - 80022e8: 615a str r2, [r3, #20] + 800254a: 687b ldr r3, [r7, #4] + 800254c: 681b ldr r3, [r3, #0] + 800254e: 695a ldr r2, [r3, #20] + 8002550: 687b ldr r3, [r7, #4] + 8002552: 681b ldr r3, [r3, #0] + 8002554: f022 0280 bic.w r2, r2, #128 @ 0x80 + 8002558: 615a str r2, [r3, #20] if((hdma->XferHalfCpltCallback != NULL) || (hdma->XferM1HalfCpltCallback != NULL)) - 80022ea: 687b ldr r3, [r7, #4] - 80022ec: 6c1b ldr r3, [r3, #64] @ 0x40 - 80022ee: 2b00 cmp r3, #0 - 80022f0: d103 bne.n 80022fa - 80022f2: 687b ldr r3, [r7, #4] - 80022f4: 6c9b ldr r3, [r3, #72] @ 0x48 - 80022f6: 2b00 cmp r3, #0 - 80022f8: d007 beq.n 800230a + 800255a: 687b ldr r3, [r7, #4] + 800255c: 6c1b ldr r3, [r3, #64] @ 0x40 + 800255e: 2b00 cmp r3, #0 + 8002560: d103 bne.n 800256a + 8002562: 687b ldr r3, [r7, #4] + 8002564: 6c9b ldr r3, [r3, #72] @ 0x48 + 8002566: 2b00 cmp r3, #0 + 8002568: d007 beq.n 800257a { hdma->Instance->CR &= ~(DMA_IT_HT); - 80022fa: 687b ldr r3, [r7, #4] - 80022fc: 681b ldr r3, [r3, #0] - 80022fe: 681a ldr r2, [r3, #0] - 8002300: 687b ldr r3, [r7, #4] - 8002302: 681b ldr r3, [r3, #0] - 8002304: f022 0208 bic.w r2, r2, #8 - 8002308: 601a str r2, [r3, #0] + 800256a: 687b ldr r3, [r7, #4] + 800256c: 681b ldr r3, [r3, #0] + 800256e: 681a ldr r2, [r3, #0] + 8002570: 687b ldr r3, [r7, #4] + 8002572: 681b ldr r3, [r3, #0] + 8002574: f022 0208 bic.w r2, r2, #8 + 8002578: 601a str r2, [r3, #0] } /* Clear all interrupt flags at correct offset within the register */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 800230a: 687b ldr r3, [r7, #4] - 800230c: 6ddb ldr r3, [r3, #92] @ 0x5c - 800230e: 223f movs r2, #63 @ 0x3f - 8002310: 409a lsls r2, r3 - 8002312: 693b ldr r3, [r7, #16] - 8002314: 609a str r2, [r3, #8] + 800257a: 687b ldr r3, [r7, #4] + 800257c: 6ddb ldr r3, [r3, #92] @ 0x5c + 800257e: 223f movs r2, #63 @ 0x3f + 8002580: 409a lsls r2, r3 + 8002582: 693b ldr r3, [r7, #16] + 8002584: 609a str r2, [r3, #8] /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8002316: 687b ldr r3, [r7, #4] - 8002318: 2201 movs r2, #1 - 800231a: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002586: 687b ldr r3, [r7, #4] + 8002588: 2201 movs r2, #1 + 800258a: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800231e: 687b ldr r3, [r7, #4] - 8002320: 2200 movs r2, #0 - 8002322: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 800258e: 687b ldr r3, [r7, #4] + 8002590: 2200 movs r2, #0 + 8002592: f883 2034 strb.w r2, [r3, #52] @ 0x34 if(hdma->XferAbortCallback != NULL) - 8002326: 687b ldr r3, [r7, #4] - 8002328: 6d1b ldr r3, [r3, #80] @ 0x50 - 800232a: 2b00 cmp r3, #0 - 800232c: d07e beq.n 800242c + 8002596: 687b ldr r3, [r7, #4] + 8002598: 6d1b ldr r3, [r3, #80] @ 0x50 + 800259a: 2b00 cmp r3, #0 + 800259c: d07e beq.n 800269c { hdma->XferAbortCallback(hdma); - 800232e: 687b ldr r3, [r7, #4] - 8002330: 6d1b ldr r3, [r3, #80] @ 0x50 - 8002332: 6878 ldr r0, [r7, #4] - 8002334: 4798 blx r3 + 800259e: 687b ldr r3, [r7, #4] + 80025a0: 6d1b ldr r3, [r3, #80] @ 0x50 + 80025a2: 6878 ldr r0, [r7, #4] + 80025a4: 4798 blx r3 } return; - 8002336: e079 b.n 800242c + 80025a6: e079 b.n 800269c } if(((hdma->Instance->CR) & (uint32_t)(DMA_SxCR_DBM)) != RESET) - 8002338: 687b ldr r3, [r7, #4] - 800233a: 681b ldr r3, [r3, #0] - 800233c: 681b ldr r3, [r3, #0] - 800233e: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 8002342: 2b00 cmp r3, #0 - 8002344: d01d beq.n 8002382 + 80025a8: 687b ldr r3, [r7, #4] + 80025aa: 681b ldr r3, [r3, #0] + 80025ac: 681b ldr r3, [r3, #0] + 80025ae: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 80025b2: 2b00 cmp r3, #0 + 80025b4: d01d beq.n 80025f2 { /* Current memory buffer used is Memory 0 */ if((hdma->Instance->CR & DMA_SxCR_CT) == RESET) - 8002346: 687b ldr r3, [r7, #4] - 8002348: 681b ldr r3, [r3, #0] - 800234a: 681b ldr r3, [r3, #0] - 800234c: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 8002350: 2b00 cmp r3, #0 - 8002352: d10d bne.n 8002370 + 80025b6: 687b ldr r3, [r7, #4] + 80025b8: 681b ldr r3, [r3, #0] + 80025ba: 681b ldr r3, [r3, #0] + 80025bc: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 80025c0: 2b00 cmp r3, #0 + 80025c2: d10d bne.n 80025e0 { if(hdma->XferM1CpltCallback != NULL) - 8002354: 687b ldr r3, [r7, #4] - 8002356: 6c5b ldr r3, [r3, #68] @ 0x44 - 8002358: 2b00 cmp r3, #0 - 800235a: d031 beq.n 80023c0 + 80025c4: 687b ldr r3, [r7, #4] + 80025c6: 6c5b ldr r3, [r3, #68] @ 0x44 + 80025c8: 2b00 cmp r3, #0 + 80025ca: d031 beq.n 8002630 { /* Transfer complete Callback for memory1 */ hdma->XferM1CpltCallback(hdma); - 800235c: 687b ldr r3, [r7, #4] - 800235e: 6c5b ldr r3, [r3, #68] @ 0x44 - 8002360: 6878 ldr r0, [r7, #4] - 8002362: 4798 blx r3 - 8002364: e02c b.n 80023c0 - 8002366: bf00 nop - 8002368: 20000090 .word 0x20000090 - 800236c: 1b4e81b5 .word 0x1b4e81b5 + 80025cc: 687b ldr r3, [r7, #4] + 80025ce: 6c5b ldr r3, [r3, #68] @ 0x44 + 80025d0: 6878 ldr r0, [r7, #4] + 80025d2: 4798 blx r3 + 80025d4: e02c b.n 8002630 + 80025d6: bf00 nop + 80025d8: 20000090 .word 0x20000090 + 80025dc: 1b4e81b5 .word 0x1b4e81b5 } } /* Current memory buffer used is Memory 1 */ else { if(hdma->XferCpltCallback != NULL) - 8002370: 687b ldr r3, [r7, #4] - 8002372: 6bdb ldr r3, [r3, #60] @ 0x3c - 8002374: 2b00 cmp r3, #0 - 8002376: d023 beq.n 80023c0 + 80025e0: 687b ldr r3, [r7, #4] + 80025e2: 6bdb ldr r3, [r3, #60] @ 0x3c + 80025e4: 2b00 cmp r3, #0 + 80025e6: d023 beq.n 8002630 { /* Transfer complete Callback for memory0 */ hdma->XferCpltCallback(hdma); - 8002378: 687b ldr r3, [r7, #4] - 800237a: 6bdb ldr r3, [r3, #60] @ 0x3c - 800237c: 6878 ldr r0, [r7, #4] - 800237e: 4798 blx r3 - 8002380: e01e b.n 80023c0 + 80025e8: 687b ldr r3, [r7, #4] + 80025ea: 6bdb ldr r3, [r3, #60] @ 0x3c + 80025ec: 6878 ldr r0, [r7, #4] + 80025ee: 4798 blx r3 + 80025f0: e01e b.n 8002630 } } /* Disable the transfer complete interrupt if the DMA mode is not CIRCULAR */ else { if((hdma->Instance->CR & DMA_SxCR_CIRC) == RESET) - 8002382: 687b ldr r3, [r7, #4] - 8002384: 681b ldr r3, [r3, #0] - 8002386: 681b ldr r3, [r3, #0] - 8002388: f403 7380 and.w r3, r3, #256 @ 0x100 - 800238c: 2b00 cmp r3, #0 - 800238e: d10f bne.n 80023b0 + 80025f2: 687b ldr r3, [r7, #4] + 80025f4: 681b ldr r3, [r3, #0] + 80025f6: 681b ldr r3, [r3, #0] + 80025f8: f403 7380 and.w r3, r3, #256 @ 0x100 + 80025fc: 2b00 cmp r3, #0 + 80025fe: d10f bne.n 8002620 { /* Disable the transfer complete interrupt */ hdma->Instance->CR &= ~(DMA_IT_TC); - 8002390: 687b ldr r3, [r7, #4] - 8002392: 681b ldr r3, [r3, #0] - 8002394: 681a ldr r2, [r3, #0] - 8002396: 687b ldr r3, [r7, #4] - 8002398: 681b ldr r3, [r3, #0] - 800239a: f022 0210 bic.w r2, r2, #16 - 800239e: 601a str r2, [r3, #0] + 8002600: 687b ldr r3, [r7, #4] + 8002602: 681b ldr r3, [r3, #0] + 8002604: 681a ldr r2, [r3, #0] + 8002606: 687b ldr r3, [r7, #4] + 8002608: 681b ldr r3, [r3, #0] + 800260a: f022 0210 bic.w r2, r2, #16 + 800260e: 601a str r2, [r3, #0] /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 80023a0: 687b ldr r3, [r7, #4] - 80023a2: 2201 movs r2, #1 - 80023a4: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002610: 687b ldr r3, [r7, #4] + 8002612: 2201 movs r2, #1 + 8002614: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 80023a8: 687b ldr r3, [r7, #4] - 80023aa: 2200 movs r2, #0 - 80023ac: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8002618: 687b ldr r3, [r7, #4] + 800261a: 2200 movs r2, #0 + 800261c: f883 2034 strb.w r2, [r3, #52] @ 0x34 } if(hdma->XferCpltCallback != NULL) - 80023b0: 687b ldr r3, [r7, #4] - 80023b2: 6bdb ldr r3, [r3, #60] @ 0x3c - 80023b4: 2b00 cmp r3, #0 - 80023b6: d003 beq.n 80023c0 + 8002620: 687b ldr r3, [r7, #4] + 8002622: 6bdb ldr r3, [r3, #60] @ 0x3c + 8002624: 2b00 cmp r3, #0 + 8002626: d003 beq.n 8002630 { /* Transfer complete callback */ hdma->XferCpltCallback(hdma); - 80023b8: 687b ldr r3, [r7, #4] - 80023ba: 6bdb ldr r3, [r3, #60] @ 0x3c - 80023bc: 6878 ldr r0, [r7, #4] - 80023be: 4798 blx r3 + 8002628: 687b ldr r3, [r7, #4] + 800262a: 6bdb ldr r3, [r3, #60] @ 0x3c + 800262c: 6878 ldr r0, [r7, #4] + 800262e: 4798 blx r3 } } } /* manage error case */ if(hdma->ErrorCode != HAL_DMA_ERROR_NONE) - 80023c0: 687b ldr r3, [r7, #4] - 80023c2: 6d5b ldr r3, [r3, #84] @ 0x54 - 80023c4: 2b00 cmp r3, #0 - 80023c6: d032 beq.n 800242e + 8002630: 687b ldr r3, [r7, #4] + 8002632: 6d5b ldr r3, [r3, #84] @ 0x54 + 8002634: 2b00 cmp r3, #0 + 8002636: d032 beq.n 800269e { if((hdma->ErrorCode & HAL_DMA_ERROR_TE) != RESET) - 80023c8: 687b ldr r3, [r7, #4] - 80023ca: 6d5b ldr r3, [r3, #84] @ 0x54 - 80023cc: f003 0301 and.w r3, r3, #1 - 80023d0: 2b00 cmp r3, #0 - 80023d2: d022 beq.n 800241a + 8002638: 687b ldr r3, [r7, #4] + 800263a: 6d5b ldr r3, [r3, #84] @ 0x54 + 800263c: f003 0301 and.w r3, r3, #1 + 8002640: 2b00 cmp r3, #0 + 8002642: d022 beq.n 800268a { hdma->State = HAL_DMA_STATE_ABORT; - 80023d4: 687b ldr r3, [r7, #4] - 80023d6: 2205 movs r2, #5 - 80023d8: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002644: 687b ldr r3, [r7, #4] + 8002646: 2205 movs r2, #5 + 8002648: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Disable the stream */ __HAL_DMA_DISABLE(hdma); - 80023dc: 687b ldr r3, [r7, #4] - 80023de: 681b ldr r3, [r3, #0] - 80023e0: 681a ldr r2, [r3, #0] - 80023e2: 687b ldr r3, [r7, #4] - 80023e4: 681b ldr r3, [r3, #0] - 80023e6: f022 0201 bic.w r2, r2, #1 - 80023ea: 601a str r2, [r3, #0] + 800264c: 687b ldr r3, [r7, #4] + 800264e: 681b ldr r3, [r3, #0] + 8002650: 681a ldr r2, [r3, #0] + 8002652: 687b ldr r3, [r7, #4] + 8002654: 681b ldr r3, [r3, #0] + 8002656: f022 0201 bic.w r2, r2, #1 + 800265a: 601a str r2, [r3, #0] do { if (++count > timeout) - 80023ec: 68bb ldr r3, [r7, #8] - 80023ee: 3301 adds r3, #1 - 80023f0: 60bb str r3, [r7, #8] - 80023f2: 697a ldr r2, [r7, #20] - 80023f4: 429a cmp r2, r3 - 80023f6: d307 bcc.n 8002408 + 800265c: 68bb ldr r3, [r7, #8] + 800265e: 3301 adds r3, #1 + 8002660: 60bb str r3, [r7, #8] + 8002662: 697a ldr r2, [r7, #20] + 8002664: 429a cmp r2, r3 + 8002666: d307 bcc.n 8002678 { break; } } while((hdma->Instance->CR & DMA_SxCR_EN) != RESET); - 80023f8: 687b ldr r3, [r7, #4] - 80023fa: 681b ldr r3, [r3, #0] - 80023fc: 681b ldr r3, [r3, #0] - 80023fe: f003 0301 and.w r3, r3, #1 - 8002402: 2b00 cmp r3, #0 - 8002404: d1f2 bne.n 80023ec - 8002406: e000 b.n 800240a + 8002668: 687b ldr r3, [r7, #4] + 800266a: 681b ldr r3, [r3, #0] + 800266c: 681b ldr r3, [r3, #0] + 800266e: f003 0301 and.w r3, r3, #1 + 8002672: 2b00 cmp r3, #0 + 8002674: d1f2 bne.n 800265c + 8002676: e000 b.n 800267a break; - 8002408: bf00 nop + 8002678: bf00 nop /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 800240a: 687b ldr r3, [r7, #4] - 800240c: 2201 movs r2, #1 - 800240e: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 800267a: 687b ldr r3, [r7, #4] + 800267c: 2201 movs r2, #1 + 800267e: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 8002412: 687b ldr r3, [r7, #4] - 8002414: 2200 movs r2, #0 - 8002416: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8002682: 687b ldr r3, [r7, #4] + 8002684: 2200 movs r2, #0 + 8002686: f883 2034 strb.w r2, [r3, #52] @ 0x34 } if(hdma->XferErrorCallback != NULL) - 800241a: 687b ldr r3, [r7, #4] - 800241c: 6cdb ldr r3, [r3, #76] @ 0x4c - 800241e: 2b00 cmp r3, #0 - 8002420: d005 beq.n 800242e + 800268a: 687b ldr r3, [r7, #4] + 800268c: 6cdb ldr r3, [r3, #76] @ 0x4c + 800268e: 2b00 cmp r3, #0 + 8002690: d005 beq.n 800269e { /* Transfer error callback */ hdma->XferErrorCallback(hdma); - 8002422: 687b ldr r3, [r7, #4] - 8002424: 6cdb ldr r3, [r3, #76] @ 0x4c - 8002426: 6878 ldr r0, [r7, #4] - 8002428: 4798 blx r3 - 800242a: e000 b.n 800242e + 8002692: 687b ldr r3, [r7, #4] + 8002694: 6cdb ldr r3, [r3, #76] @ 0x4c + 8002696: 6878 ldr r0, [r7, #4] + 8002698: 4798 blx r3 + 800269a: e000 b.n 800269e return; - 800242c: bf00 nop + 800269c: bf00 nop } } } - 800242e: 3718 adds r7, #24 - 8002430: 46bd mov sp, r7 - 8002432: bd80 pop {r7, pc} + 800269e: 3718 adds r7, #24 + 80026a0: 46bd mov sp, r7 + 80026a2: bd80 pop {r7, pc} -08002434 : +080026a4 : * @param DstAddress The destination memory Buffer address * @param DataLength The length of data to be transferred from source to destination * @retval HAL status */ static void DMA_SetConfig(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) { - 8002434: b480 push {r7} - 8002436: b085 sub sp, #20 - 8002438: af00 add r7, sp, #0 - 800243a: 60f8 str r0, [r7, #12] - 800243c: 60b9 str r1, [r7, #8] - 800243e: 607a str r2, [r7, #4] - 8002440: 603b str r3, [r7, #0] + 80026a4: b480 push {r7} + 80026a6: b085 sub sp, #20 + 80026a8: af00 add r7, sp, #0 + 80026aa: 60f8 str r0, [r7, #12] + 80026ac: 60b9 str r1, [r7, #8] + 80026ae: 607a str r2, [r7, #4] + 80026b0: 603b str r3, [r7, #0] /* Clear DBM bit */ hdma->Instance->CR &= (uint32_t)(~DMA_SxCR_DBM); - 8002442: 68fb ldr r3, [r7, #12] - 8002444: 681b ldr r3, [r3, #0] - 8002446: 681a ldr r2, [r3, #0] - 8002448: 68fb ldr r3, [r7, #12] - 800244a: 681b ldr r3, [r3, #0] - 800244c: f422 2280 bic.w r2, r2, #262144 @ 0x40000 - 8002450: 601a str r2, [r3, #0] + 80026b2: 68fb ldr r3, [r7, #12] + 80026b4: 681b ldr r3, [r3, #0] + 80026b6: 681a ldr r2, [r3, #0] + 80026b8: 68fb ldr r3, [r7, #12] + 80026ba: 681b ldr r3, [r3, #0] + 80026bc: f422 2280 bic.w r2, r2, #262144 @ 0x40000 + 80026c0: 601a str r2, [r3, #0] /* Configure DMA Stream data length */ hdma->Instance->NDTR = DataLength; - 8002452: 68fb ldr r3, [r7, #12] - 8002454: 681b ldr r3, [r3, #0] - 8002456: 683a ldr r2, [r7, #0] - 8002458: 605a str r2, [r3, #4] + 80026c2: 68fb ldr r3, [r7, #12] + 80026c4: 681b ldr r3, [r3, #0] + 80026c6: 683a ldr r2, [r7, #0] + 80026c8: 605a str r2, [r3, #4] /* Memory to Peripheral */ if((hdma->Init.Direction) == DMA_MEMORY_TO_PERIPH) - 800245a: 68fb ldr r3, [r7, #12] - 800245c: 689b ldr r3, [r3, #8] - 800245e: 2b40 cmp r3, #64 @ 0x40 - 8002460: d108 bne.n 8002474 + 80026ca: 68fb ldr r3, [r7, #12] + 80026cc: 689b ldr r3, [r3, #8] + 80026ce: 2b40 cmp r3, #64 @ 0x40 + 80026d0: d108 bne.n 80026e4 { /* Configure DMA Stream destination address */ hdma->Instance->PAR = DstAddress; - 8002462: 68fb ldr r3, [r7, #12] - 8002464: 681b ldr r3, [r3, #0] - 8002466: 687a ldr r2, [r7, #4] - 8002468: 609a str r2, [r3, #8] + 80026d2: 68fb ldr r3, [r7, #12] + 80026d4: 681b ldr r3, [r3, #0] + 80026d6: 687a ldr r2, [r7, #4] + 80026d8: 609a str r2, [r3, #8] /* Configure DMA Stream source address */ hdma->Instance->M0AR = SrcAddress; - 800246a: 68fb ldr r3, [r7, #12] - 800246c: 681b ldr r3, [r3, #0] - 800246e: 68ba ldr r2, [r7, #8] - 8002470: 60da str r2, [r3, #12] + 80026da: 68fb ldr r3, [r7, #12] + 80026dc: 681b ldr r3, [r3, #0] + 80026de: 68ba ldr r2, [r7, #8] + 80026e0: 60da str r2, [r3, #12] hdma->Instance->PAR = SrcAddress; /* Configure DMA Stream destination address */ hdma->Instance->M0AR = DstAddress; } } - 8002472: e007 b.n 8002484 + 80026e2: e007 b.n 80026f4 hdma->Instance->PAR = SrcAddress; - 8002474: 68fb ldr r3, [r7, #12] - 8002476: 681b ldr r3, [r3, #0] - 8002478: 68ba ldr r2, [r7, #8] - 800247a: 609a str r2, [r3, #8] + 80026e4: 68fb ldr r3, [r7, #12] + 80026e6: 681b ldr r3, [r3, #0] + 80026e8: 68ba ldr r2, [r7, #8] + 80026ea: 609a str r2, [r3, #8] hdma->Instance->M0AR = DstAddress; - 800247c: 68fb ldr r3, [r7, #12] - 800247e: 681b ldr r3, [r3, #0] - 8002480: 687a ldr r2, [r7, #4] - 8002482: 60da str r2, [r3, #12] + 80026ec: 68fb ldr r3, [r7, #12] + 80026ee: 681b ldr r3, [r3, #0] + 80026f0: 687a ldr r2, [r7, #4] + 80026f2: 60da str r2, [r3, #12] } - 8002484: bf00 nop - 8002486: 3714 adds r7, #20 - 8002488: 46bd mov sp, r7 - 800248a: f85d 7b04 ldr.w r7, [sp], #4 - 800248e: 4770 bx lr + 80026f4: bf00 nop + 80026f6: 3714 adds r7, #20 + 80026f8: 46bd mov sp, r7 + 80026fa: f85d 7b04 ldr.w r7, [sp], #4 + 80026fe: 4770 bx lr -08002490 : +08002700 : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval Stream base address */ static uint32_t DMA_CalcBaseAndBitshift(DMA_HandleTypeDef *hdma) { - 8002490: b480 push {r7} - 8002492: b085 sub sp, #20 - 8002494: af00 add r7, sp, #0 - 8002496: 6078 str r0, [r7, #4] + 8002700: b480 push {r7} + 8002702: b085 sub sp, #20 + 8002704: af00 add r7, sp, #0 + 8002706: 6078 str r0, [r7, #4] uint32_t stream_number = (((uint32_t)hdma->Instance & 0xFFU) - 16U) / 24U; - 8002498: 687b ldr r3, [r7, #4] - 800249a: 681b ldr r3, [r3, #0] - 800249c: b2db uxtb r3, r3 - 800249e: 3b10 subs r3, #16 - 80024a0: 4a14 ldr r2, [pc, #80] @ (80024f4 ) - 80024a2: fba2 2303 umull r2, r3, r2, r3 - 80024a6: 091b lsrs r3, r3, #4 - 80024a8: 60fb str r3, [r7, #12] + 8002708: 687b ldr r3, [r7, #4] + 800270a: 681b ldr r3, [r3, #0] + 800270c: b2db uxtb r3, r3 + 800270e: 3b10 subs r3, #16 + 8002710: 4a14 ldr r2, [pc, #80] @ (8002764 ) + 8002712: fba2 2303 umull r2, r3, r2, r3 + 8002716: 091b lsrs r3, r3, #4 + 8002718: 60fb str r3, [r7, #12] /* lookup table for necessary bitshift of flags within status registers */ static const uint8_t flagBitshiftOffset[8U] = {0U, 6U, 16U, 22U, 0U, 6U, 16U, 22U}; hdma->StreamIndex = flagBitshiftOffset[stream_number]; - 80024aa: 4a13 ldr r2, [pc, #76] @ (80024f8 ) - 80024ac: 68fb ldr r3, [r7, #12] - 80024ae: 4413 add r3, r2 - 80024b0: 781b ldrb r3, [r3, #0] - 80024b2: 461a mov r2, r3 - 80024b4: 687b ldr r3, [r7, #4] - 80024b6: 65da str r2, [r3, #92] @ 0x5c + 800271a: 4a13 ldr r2, [pc, #76] @ (8002768 ) + 800271c: 68fb ldr r3, [r7, #12] + 800271e: 4413 add r3, r2 + 8002720: 781b ldrb r3, [r3, #0] + 8002722: 461a mov r2, r3 + 8002724: 687b ldr r3, [r7, #4] + 8002726: 65da str r2, [r3, #92] @ 0x5c if (stream_number > 3U) - 80024b8: 68fb ldr r3, [r7, #12] - 80024ba: 2b03 cmp r3, #3 - 80024bc: d909 bls.n 80024d2 + 8002728: 68fb ldr r3, [r7, #12] + 800272a: 2b03 cmp r3, #3 + 800272c: d909 bls.n 8002742 { /* return pointer to HISR and HIFCR */ hdma->StreamBaseAddress = (((uint32_t)hdma->Instance & (uint32_t)(~0x3FFU)) + 4U); - 80024be: 687b ldr r3, [r7, #4] - 80024c0: 681b ldr r3, [r3, #0] - 80024c2: f423 737f bic.w r3, r3, #1020 @ 0x3fc - 80024c6: f023 0303 bic.w r3, r3, #3 - 80024ca: 1d1a adds r2, r3, #4 - 80024cc: 687b ldr r3, [r7, #4] - 80024ce: 659a str r2, [r3, #88] @ 0x58 - 80024d0: e007 b.n 80024e2 + 800272e: 687b ldr r3, [r7, #4] + 8002730: 681b ldr r3, [r3, #0] + 8002732: f423 737f bic.w r3, r3, #1020 @ 0x3fc + 8002736: f023 0303 bic.w r3, r3, #3 + 800273a: 1d1a adds r2, r3, #4 + 800273c: 687b ldr r3, [r7, #4] + 800273e: 659a str r2, [r3, #88] @ 0x58 + 8002740: e007 b.n 8002752 } else { /* return pointer to LISR and LIFCR */ hdma->StreamBaseAddress = ((uint32_t)hdma->Instance & (uint32_t)(~0x3FFU)); - 80024d2: 687b ldr r3, [r7, #4] - 80024d4: 681b ldr r3, [r3, #0] - 80024d6: f423 737f bic.w r3, r3, #1020 @ 0x3fc - 80024da: f023 0303 bic.w r3, r3, #3 - 80024de: 687a ldr r2, [r7, #4] - 80024e0: 6593 str r3, [r2, #88] @ 0x58 + 8002742: 687b ldr r3, [r7, #4] + 8002744: 681b ldr r3, [r3, #0] + 8002746: f423 737f bic.w r3, r3, #1020 @ 0x3fc + 800274a: f023 0303 bic.w r3, r3, #3 + 800274e: 687a ldr r2, [r7, #4] + 8002750: 6593 str r3, [r2, #88] @ 0x58 } return hdma->StreamBaseAddress; - 80024e2: 687b ldr r3, [r7, #4] - 80024e4: 6d9b ldr r3, [r3, #88] @ 0x58 + 8002752: 687b ldr r3, [r7, #4] + 8002754: 6d9b ldr r3, [r3, #88] @ 0x58 } - 80024e6: 4618 mov r0, r3 - 80024e8: 3714 adds r7, #20 - 80024ea: 46bd mov sp, r7 - 80024ec: f85d 7b04 ldr.w r7, [sp], #4 - 80024f0: 4770 bx lr - 80024f2: bf00 nop - 80024f4: aaaaaaab .word 0xaaaaaaab - 80024f8: 0800ab2c .word 0x0800ab2c + 8002756: 4618 mov r0, r3 + 8002758: 3714 adds r7, #20 + 800275a: 46bd mov sp, r7 + 800275c: f85d 7b04 ldr.w r7, [sp], #4 + 8002760: 4770 bx lr + 8002762: bf00 nop + 8002764: aaaaaaab .word 0xaaaaaaab + 8002768: 0800af20 .word 0x0800af20 -080024fc : +0800276c : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval HAL status */ static HAL_StatusTypeDef DMA_CheckFifoParam(DMA_HandleTypeDef *hdma) { - 80024fc: b480 push {r7} - 80024fe: b085 sub sp, #20 - 8002500: af00 add r7, sp, #0 - 8002502: 6078 str r0, [r7, #4] + 800276c: b480 push {r7} + 800276e: b085 sub sp, #20 + 8002770: af00 add r7, sp, #0 + 8002772: 6078 str r0, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 8002504: 2300 movs r3, #0 - 8002506: 73fb strb r3, [r7, #15] + 8002774: 2300 movs r3, #0 + 8002776: 73fb strb r3, [r7, #15] uint32_t tmp = hdma->Init.FIFOThreshold; - 8002508: 687b ldr r3, [r7, #4] - 800250a: 6a9b ldr r3, [r3, #40] @ 0x28 - 800250c: 60bb str r3, [r7, #8] + 8002778: 687b ldr r3, [r7, #4] + 800277a: 6a9b ldr r3, [r3, #40] @ 0x28 + 800277c: 60bb str r3, [r7, #8] /* Memory Data size equal to Byte */ if(hdma->Init.MemDataAlignment == DMA_MDATAALIGN_BYTE) - 800250e: 687b ldr r3, [r7, #4] - 8002510: 699b ldr r3, [r3, #24] - 8002512: 2b00 cmp r3, #0 - 8002514: d11f bne.n 8002556 + 800277e: 687b ldr r3, [r7, #4] + 8002780: 699b ldr r3, [r3, #24] + 8002782: 2b00 cmp r3, #0 + 8002784: d11f bne.n 80027c6 { switch (tmp) - 8002516: 68bb ldr r3, [r7, #8] - 8002518: 2b03 cmp r3, #3 - 800251a: d856 bhi.n 80025ca - 800251c: a201 add r2, pc, #4 @ (adr r2, 8002524 ) - 800251e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8002522: bf00 nop - 8002524: 08002535 .word 0x08002535 - 8002528: 08002547 .word 0x08002547 - 800252c: 08002535 .word 0x08002535 - 8002530: 080025cb .word 0x080025cb + 8002786: 68bb ldr r3, [r7, #8] + 8002788: 2b03 cmp r3, #3 + 800278a: d856 bhi.n 800283a + 800278c: a201 add r2, pc, #4 @ (adr r2, 8002794 ) + 800278e: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8002792: bf00 nop + 8002794: 080027a5 .word 0x080027a5 + 8002798: 080027b7 .word 0x080027b7 + 800279c: 080027a5 .word 0x080027a5 + 80027a0: 0800283b .word 0x0800283b { case DMA_FIFO_THRESHOLD_1QUARTERFULL: case DMA_FIFO_THRESHOLD_3QUARTERSFULL: if ((hdma->Init.MemBurst & DMA_SxCR_MBURST_1) == DMA_SxCR_MBURST_1) - 8002534: 687b ldr r3, [r7, #4] - 8002536: 6adb ldr r3, [r3, #44] @ 0x2c - 8002538: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 800253c: 2b00 cmp r3, #0 - 800253e: d046 beq.n 80025ce + 80027a4: 687b ldr r3, [r7, #4] + 80027a6: 6adb ldr r3, [r3, #44] @ 0x2c + 80027a8: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 80027ac: 2b00 cmp r3, #0 + 80027ae: d046 beq.n 800283e { status = HAL_ERROR; - 8002540: 2301 movs r3, #1 - 8002542: 73fb strb r3, [r7, #15] + 80027b0: 2301 movs r3, #1 + 80027b2: 73fb strb r3, [r7, #15] } break; - 8002544: e043 b.n 80025ce + 80027b4: e043 b.n 800283e case DMA_FIFO_THRESHOLD_HALFFULL: if (hdma->Init.MemBurst == DMA_MBURST_INC16) - 8002546: 687b ldr r3, [r7, #4] - 8002548: 6adb ldr r3, [r3, #44] @ 0x2c - 800254a: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 - 800254e: d140 bne.n 80025d2 + 80027b6: 687b ldr r3, [r7, #4] + 80027b8: 6adb ldr r3, [r3, #44] @ 0x2c + 80027ba: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 + 80027be: d140 bne.n 8002842 { status = HAL_ERROR; - 8002550: 2301 movs r3, #1 - 8002552: 73fb strb r3, [r7, #15] + 80027c0: 2301 movs r3, #1 + 80027c2: 73fb strb r3, [r7, #15] } break; - 8002554: e03d b.n 80025d2 + 80027c4: e03d b.n 8002842 break; } } /* Memory Data size equal to Half-Word */ else if (hdma->Init.MemDataAlignment == DMA_MDATAALIGN_HALFWORD) - 8002556: 687b ldr r3, [r7, #4] - 8002558: 699b ldr r3, [r3, #24] - 800255a: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 - 800255e: d121 bne.n 80025a4 + 80027c6: 687b ldr r3, [r7, #4] + 80027c8: 699b ldr r3, [r3, #24] + 80027ca: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 + 80027ce: d121 bne.n 8002814 { switch (tmp) - 8002560: 68bb ldr r3, [r7, #8] - 8002562: 2b03 cmp r3, #3 - 8002564: d837 bhi.n 80025d6 - 8002566: a201 add r2, pc, #4 @ (adr r2, 800256c ) - 8002568: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800256c: 0800257d .word 0x0800257d - 8002570: 08002583 .word 0x08002583 - 8002574: 0800257d .word 0x0800257d - 8002578: 08002595 .word 0x08002595 + 80027d0: 68bb ldr r3, [r7, #8] + 80027d2: 2b03 cmp r3, #3 + 80027d4: d837 bhi.n 8002846 + 80027d6: a201 add r2, pc, #4 @ (adr r2, 80027dc ) + 80027d8: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80027dc: 080027ed .word 0x080027ed + 80027e0: 080027f3 .word 0x080027f3 + 80027e4: 080027ed .word 0x080027ed + 80027e8: 08002805 .word 0x08002805 { case DMA_FIFO_THRESHOLD_1QUARTERFULL: case DMA_FIFO_THRESHOLD_3QUARTERSFULL: status = HAL_ERROR; - 800257c: 2301 movs r3, #1 - 800257e: 73fb strb r3, [r7, #15] + 80027ec: 2301 movs r3, #1 + 80027ee: 73fb strb r3, [r7, #15] break; - 8002580: e030 b.n 80025e4 + 80027f0: e030 b.n 8002854 case DMA_FIFO_THRESHOLD_HALFFULL: if ((hdma->Init.MemBurst & DMA_SxCR_MBURST_1) == DMA_SxCR_MBURST_1) - 8002582: 687b ldr r3, [r7, #4] - 8002584: 6adb ldr r3, [r3, #44] @ 0x2c - 8002586: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 800258a: 2b00 cmp r3, #0 - 800258c: d025 beq.n 80025da + 80027f2: 687b ldr r3, [r7, #4] + 80027f4: 6adb ldr r3, [r3, #44] @ 0x2c + 80027f6: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 80027fa: 2b00 cmp r3, #0 + 80027fc: d025 beq.n 800284a { status = HAL_ERROR; - 800258e: 2301 movs r3, #1 - 8002590: 73fb strb r3, [r7, #15] + 80027fe: 2301 movs r3, #1 + 8002800: 73fb strb r3, [r7, #15] } break; - 8002592: e022 b.n 80025da + 8002802: e022 b.n 800284a case DMA_FIFO_THRESHOLD_FULL: if (hdma->Init.MemBurst == DMA_MBURST_INC16) - 8002594: 687b ldr r3, [r7, #4] - 8002596: 6adb ldr r3, [r3, #44] @ 0x2c - 8002598: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 - 800259c: d11f bne.n 80025de + 8002804: 687b ldr r3, [r7, #4] + 8002806: 6adb ldr r3, [r3, #44] @ 0x2c + 8002808: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 + 800280c: d11f bne.n 800284e { status = HAL_ERROR; - 800259e: 2301 movs r3, #1 - 80025a0: 73fb strb r3, [r7, #15] + 800280e: 2301 movs r3, #1 + 8002810: 73fb strb r3, [r7, #15] } break; - 80025a2: e01c b.n 80025de + 8002812: e01c b.n 800284e } /* Memory Data size equal to Word */ else { switch (tmp) - 80025a4: 68bb ldr r3, [r7, #8] - 80025a6: 2b02 cmp r3, #2 - 80025a8: d903 bls.n 80025b2 - 80025aa: 68bb ldr r3, [r7, #8] - 80025ac: 2b03 cmp r3, #3 - 80025ae: d003 beq.n 80025b8 + 8002814: 68bb ldr r3, [r7, #8] + 8002816: 2b02 cmp r3, #2 + 8002818: d903 bls.n 8002822 + 800281a: 68bb ldr r3, [r7, #8] + 800281c: 2b03 cmp r3, #3 + 800281e: d003 beq.n 8002828 { status = HAL_ERROR; } break; default: break; - 80025b0: e018 b.n 80025e4 + 8002820: e018 b.n 8002854 status = HAL_ERROR; - 80025b2: 2301 movs r3, #1 - 80025b4: 73fb strb r3, [r7, #15] + 8002822: 2301 movs r3, #1 + 8002824: 73fb strb r3, [r7, #15] break; - 80025b6: e015 b.n 80025e4 + 8002826: e015 b.n 8002854 if ((hdma->Init.MemBurst & DMA_SxCR_MBURST_1) == DMA_SxCR_MBURST_1) - 80025b8: 687b ldr r3, [r7, #4] - 80025ba: 6adb ldr r3, [r3, #44] @ 0x2c - 80025bc: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 80025c0: 2b00 cmp r3, #0 - 80025c2: d00e beq.n 80025e2 + 8002828: 687b ldr r3, [r7, #4] + 800282a: 6adb ldr r3, [r3, #44] @ 0x2c + 800282c: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 8002830: 2b00 cmp r3, #0 + 8002832: d00e beq.n 8002852 status = HAL_ERROR; - 80025c4: 2301 movs r3, #1 - 80025c6: 73fb strb r3, [r7, #15] + 8002834: 2301 movs r3, #1 + 8002836: 73fb strb r3, [r7, #15] break; - 80025c8: e00b b.n 80025e2 + 8002838: e00b b.n 8002852 break; - 80025ca: bf00 nop - 80025cc: e00a b.n 80025e4 + 800283a: bf00 nop + 800283c: e00a b.n 8002854 break; - 80025ce: bf00 nop - 80025d0: e008 b.n 80025e4 + 800283e: bf00 nop + 8002840: e008 b.n 8002854 break; - 80025d2: bf00 nop - 80025d4: e006 b.n 80025e4 + 8002842: bf00 nop + 8002844: e006 b.n 8002854 break; - 80025d6: bf00 nop - 80025d8: e004 b.n 80025e4 + 8002846: bf00 nop + 8002848: e004 b.n 8002854 break; - 80025da: bf00 nop - 80025dc: e002 b.n 80025e4 + 800284a: bf00 nop + 800284c: e002 b.n 8002854 break; - 80025de: bf00 nop - 80025e0: e000 b.n 80025e4 + 800284e: bf00 nop + 8002850: e000 b.n 8002854 break; - 80025e2: bf00 nop + 8002852: bf00 nop } } return status; - 80025e4: 7bfb ldrb r3, [r7, #15] + 8002854: 7bfb ldrb r3, [r7, #15] } - 80025e6: 4618 mov r0, r3 - 80025e8: 3714 adds r7, #20 - 80025ea: 46bd mov sp, r7 - 80025ec: f85d 7b04 ldr.w r7, [sp], #4 - 80025f0: 4770 bx lr - 80025f2: bf00 nop + 8002856: 4618 mov r0, r3 + 8002858: 3714 adds r7, #20 + 800285a: 46bd mov sp, r7 + 800285c: f85d 7b04 ldr.w r7, [sp], #4 + 8002860: 4770 bx lr + 8002862: bf00 nop -080025f4 : +08002864 : * @param GPIO_Init pointer to a GPIO_InitTypeDef structure that contains * the configuration information for the specified GPIO peripheral. * @retval None */ void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init) { - 80025f4: b480 push {r7} - 80025f6: b089 sub sp, #36 @ 0x24 - 80025f8: af00 add r7, sp, #0 - 80025fa: 6078 str r0, [r7, #4] - 80025fc: 6039 str r1, [r7, #0] + 8002864: b480 push {r7} + 8002866: b089 sub sp, #36 @ 0x24 + 8002868: af00 add r7, sp, #0 + 800286a: 6078 str r0, [r7, #4] + 800286c: 6039 str r1, [r7, #0] uint32_t position; uint32_t ioposition = 0x00U; - 80025fe: 2300 movs r3, #0 - 8002600: 617b str r3, [r7, #20] + 800286e: 2300 movs r3, #0 + 8002870: 617b str r3, [r7, #20] uint32_t iocurrent = 0x00U; - 8002602: 2300 movs r3, #0 - 8002604: 613b str r3, [r7, #16] + 8002872: 2300 movs r3, #0 + 8002874: 613b str r3, [r7, #16] uint32_t temp = 0x00U; - 8002606: 2300 movs r3, #0 - 8002608: 61bb str r3, [r7, #24] + 8002876: 2300 movs r3, #0 + 8002878: 61bb str r3, [r7, #24] assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); assert_param(IS_GPIO_PIN(GPIO_Init->Pin)); assert_param(IS_GPIO_MODE(GPIO_Init->Mode)); /* Configure the port pins */ for(position = 0U; position < GPIO_NUMBER; position++) - 800260a: 2300 movs r3, #0 - 800260c: 61fb str r3, [r7, #28] - 800260e: e165 b.n 80028dc + 800287a: 2300 movs r3, #0 + 800287c: 61fb str r3, [r7, #28] + 800287e: e165 b.n 8002b4c { /* Get the IO position */ ioposition = 0x01U << position; - 8002610: 2201 movs r2, #1 - 8002612: 69fb ldr r3, [r7, #28] - 8002614: fa02 f303 lsl.w r3, r2, r3 - 8002618: 617b str r3, [r7, #20] + 8002880: 2201 movs r2, #1 + 8002882: 69fb ldr r3, [r7, #28] + 8002884: fa02 f303 lsl.w r3, r2, r3 + 8002888: 617b str r3, [r7, #20] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 800261a: 683b ldr r3, [r7, #0] - 800261c: 681b ldr r3, [r3, #0] - 800261e: 697a ldr r2, [r7, #20] - 8002620: 4013 ands r3, r2 - 8002622: 613b str r3, [r7, #16] + 800288a: 683b ldr r3, [r7, #0] + 800288c: 681b ldr r3, [r3, #0] + 800288e: 697a ldr r2, [r7, #20] + 8002890: 4013 ands r3, r2 + 8002892: 613b str r3, [r7, #16] if(iocurrent == ioposition) - 8002624: 693a ldr r2, [r7, #16] - 8002626: 697b ldr r3, [r7, #20] - 8002628: 429a cmp r2, r3 - 800262a: f040 8154 bne.w 80028d6 + 8002894: 693a ldr r2, [r7, #16] + 8002896: 697b ldr r3, [r7, #20] + 8002898: 429a cmp r2, r3 + 800289a: f040 8154 bne.w 8002b46 { /*--------------------- GPIO Mode Configuration ------------------------*/ /* In case of Output or Alternate function mode selection */ if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 800262e: 683b ldr r3, [r7, #0] - 8002630: 685b ldr r3, [r3, #4] - 8002632: f003 0303 and.w r3, r3, #3 - 8002636: 2b01 cmp r3, #1 - 8002638: d005 beq.n 8002646 + 800289e: 683b ldr r3, [r7, #0] + 80028a0: 685b ldr r3, [r3, #4] + 80028a2: f003 0303 and.w r3, r3, #3 + 80028a6: 2b01 cmp r3, #1 + 80028a8: d005 beq.n 80028b6 (GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 800263a: 683b ldr r3, [r7, #0] - 800263c: 685b ldr r3, [r3, #4] - 800263e: f003 0303 and.w r3, r3, #3 + 80028aa: 683b ldr r3, [r7, #0] + 80028ac: 685b ldr r3, [r3, #4] + 80028ae: f003 0303 and.w r3, r3, #3 if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 8002642: 2b02 cmp r3, #2 - 8002644: d130 bne.n 80026a8 + 80028b2: 2b02 cmp r3, #2 + 80028b4: d130 bne.n 8002918 { /* Check the Speed parameter */ assert_param(IS_GPIO_SPEED(GPIO_Init->Speed)); /* Configure the IO Speed */ temp = GPIOx->OSPEEDR; - 8002646: 687b ldr r3, [r7, #4] - 8002648: 689b ldr r3, [r3, #8] - 800264a: 61bb str r3, [r7, #24] + 80028b6: 687b ldr r3, [r7, #4] + 80028b8: 689b ldr r3, [r3, #8] + 80028ba: 61bb str r3, [r7, #24] temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); - 800264c: 69fb ldr r3, [r7, #28] - 800264e: 005b lsls r3, r3, #1 - 8002650: 2203 movs r2, #3 - 8002652: fa02 f303 lsl.w r3, r2, r3 - 8002656: 43db mvns r3, r3 - 8002658: 69ba ldr r2, [r7, #24] - 800265a: 4013 ands r3, r2 - 800265c: 61bb str r3, [r7, #24] + 80028bc: 69fb ldr r3, [r7, #28] + 80028be: 005b lsls r3, r3, #1 + 80028c0: 2203 movs r2, #3 + 80028c2: fa02 f303 lsl.w r3, r2, r3 + 80028c6: 43db mvns r3, r3 + 80028c8: 69ba ldr r2, [r7, #24] + 80028ca: 4013 ands r3, r2 + 80028cc: 61bb str r3, [r7, #24] temp |= (GPIO_Init->Speed << (position * 2U)); - 800265e: 683b ldr r3, [r7, #0] - 8002660: 68da ldr r2, [r3, #12] - 8002662: 69fb ldr r3, [r7, #28] - 8002664: 005b lsls r3, r3, #1 - 8002666: fa02 f303 lsl.w r3, r2, r3 - 800266a: 69ba ldr r2, [r7, #24] - 800266c: 4313 orrs r3, r2 - 800266e: 61bb str r3, [r7, #24] + 80028ce: 683b ldr r3, [r7, #0] + 80028d0: 68da ldr r2, [r3, #12] + 80028d2: 69fb ldr r3, [r7, #28] + 80028d4: 005b lsls r3, r3, #1 + 80028d6: fa02 f303 lsl.w r3, r2, r3 + 80028da: 69ba ldr r2, [r7, #24] + 80028dc: 4313 orrs r3, r2 + 80028de: 61bb str r3, [r7, #24] GPIOx->OSPEEDR = temp; - 8002670: 687b ldr r3, [r7, #4] - 8002672: 69ba ldr r2, [r7, #24] - 8002674: 609a str r2, [r3, #8] + 80028e0: 687b ldr r3, [r7, #4] + 80028e2: 69ba ldr r2, [r7, #24] + 80028e4: 609a str r2, [r3, #8] /* Configure the IO Output Type */ temp = GPIOx->OTYPER; - 8002676: 687b ldr r3, [r7, #4] - 8002678: 685b ldr r3, [r3, #4] - 800267a: 61bb str r3, [r7, #24] + 80028e6: 687b ldr r3, [r7, #4] + 80028e8: 685b ldr r3, [r3, #4] + 80028ea: 61bb str r3, [r7, #24] temp &= ~(GPIO_OTYPER_OT_0 << position) ; - 800267c: 2201 movs r2, #1 - 800267e: 69fb ldr r3, [r7, #28] - 8002680: fa02 f303 lsl.w r3, r2, r3 - 8002684: 43db mvns r3, r3 - 8002686: 69ba ldr r2, [r7, #24] - 8002688: 4013 ands r3, r2 - 800268a: 61bb str r3, [r7, #24] + 80028ec: 2201 movs r2, #1 + 80028ee: 69fb ldr r3, [r7, #28] + 80028f0: fa02 f303 lsl.w r3, r2, r3 + 80028f4: 43db mvns r3, r3 + 80028f6: 69ba ldr r2, [r7, #24] + 80028f8: 4013 ands r3, r2 + 80028fa: 61bb str r3, [r7, #24] temp |= (((GPIO_Init->Mode & OUTPUT_TYPE) >> OUTPUT_TYPE_Pos) << position); - 800268c: 683b ldr r3, [r7, #0] - 800268e: 685b ldr r3, [r3, #4] - 8002690: 091b lsrs r3, r3, #4 - 8002692: f003 0201 and.w r2, r3, #1 - 8002696: 69fb ldr r3, [r7, #28] - 8002698: fa02 f303 lsl.w r3, r2, r3 - 800269c: 69ba ldr r2, [r7, #24] - 800269e: 4313 orrs r3, r2 - 80026a0: 61bb str r3, [r7, #24] + 80028fc: 683b ldr r3, [r7, #0] + 80028fe: 685b ldr r3, [r3, #4] + 8002900: 091b lsrs r3, r3, #4 + 8002902: f003 0201 and.w r2, r3, #1 + 8002906: 69fb ldr r3, [r7, #28] + 8002908: fa02 f303 lsl.w r3, r2, r3 + 800290c: 69ba ldr r2, [r7, #24] + 800290e: 4313 orrs r3, r2 + 8002910: 61bb str r3, [r7, #24] GPIOx->OTYPER = temp; - 80026a2: 687b ldr r3, [r7, #4] - 80026a4: 69ba ldr r2, [r7, #24] - 80026a6: 605a str r2, [r3, #4] + 8002912: 687b ldr r3, [r7, #4] + 8002914: 69ba ldr r2, [r7, #24] + 8002916: 605a str r2, [r3, #4] } if((GPIO_Init->Mode & GPIO_MODE) != MODE_ANALOG) - 80026a8: 683b ldr r3, [r7, #0] - 80026aa: 685b ldr r3, [r3, #4] - 80026ac: f003 0303 and.w r3, r3, #3 - 80026b0: 2b03 cmp r3, #3 - 80026b2: d017 beq.n 80026e4 + 8002918: 683b ldr r3, [r7, #0] + 800291a: 685b ldr r3, [r3, #4] + 800291c: f003 0303 and.w r3, r3, #3 + 8002920: 2b03 cmp r3, #3 + 8002922: d017 beq.n 8002954 { /* Check the parameters */ assert_param(IS_GPIO_PULL(GPIO_Init->Pull)); /* Activate the Pull-up or Pull down resistor for the current IO */ temp = GPIOx->PUPDR; - 80026b4: 687b ldr r3, [r7, #4] - 80026b6: 68db ldr r3, [r3, #12] - 80026b8: 61bb str r3, [r7, #24] + 8002924: 687b ldr r3, [r7, #4] + 8002926: 68db ldr r3, [r3, #12] + 8002928: 61bb str r3, [r7, #24] temp &= ~(GPIO_PUPDR_PUPDR0 << (position * 2U)); - 80026ba: 69fb ldr r3, [r7, #28] - 80026bc: 005b lsls r3, r3, #1 - 80026be: 2203 movs r2, #3 - 80026c0: fa02 f303 lsl.w r3, r2, r3 - 80026c4: 43db mvns r3, r3 - 80026c6: 69ba ldr r2, [r7, #24] - 80026c8: 4013 ands r3, r2 - 80026ca: 61bb str r3, [r7, #24] + 800292a: 69fb ldr r3, [r7, #28] + 800292c: 005b lsls r3, r3, #1 + 800292e: 2203 movs r2, #3 + 8002930: fa02 f303 lsl.w r3, r2, r3 + 8002934: 43db mvns r3, r3 + 8002936: 69ba ldr r2, [r7, #24] + 8002938: 4013 ands r3, r2 + 800293a: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Pull) << (position * 2U)); - 80026cc: 683b ldr r3, [r7, #0] - 80026ce: 689a ldr r2, [r3, #8] - 80026d0: 69fb ldr r3, [r7, #28] - 80026d2: 005b lsls r3, r3, #1 - 80026d4: fa02 f303 lsl.w r3, r2, r3 - 80026d8: 69ba ldr r2, [r7, #24] - 80026da: 4313 orrs r3, r2 - 80026dc: 61bb str r3, [r7, #24] + 800293c: 683b ldr r3, [r7, #0] + 800293e: 689a ldr r2, [r3, #8] + 8002940: 69fb ldr r3, [r7, #28] + 8002942: 005b lsls r3, r3, #1 + 8002944: fa02 f303 lsl.w r3, r2, r3 + 8002948: 69ba ldr r2, [r7, #24] + 800294a: 4313 orrs r3, r2 + 800294c: 61bb str r3, [r7, #24] GPIOx->PUPDR = temp; - 80026de: 687b ldr r3, [r7, #4] - 80026e0: 69ba ldr r2, [r7, #24] - 80026e2: 60da str r2, [r3, #12] + 800294e: 687b ldr r3, [r7, #4] + 8002950: 69ba ldr r2, [r7, #24] + 8002952: 60da str r2, [r3, #12] } /* In case of Alternate function mode selection */ if((GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 80026e4: 683b ldr r3, [r7, #0] - 80026e6: 685b ldr r3, [r3, #4] - 80026e8: f003 0303 and.w r3, r3, #3 - 80026ec: 2b02 cmp r3, #2 - 80026ee: d123 bne.n 8002738 + 8002954: 683b ldr r3, [r7, #0] + 8002956: 685b ldr r3, [r3, #4] + 8002958: f003 0303 and.w r3, r3, #3 + 800295c: 2b02 cmp r3, #2 + 800295e: d123 bne.n 80029a8 { /* Check the Alternate function parameter */ assert_param(IS_GPIO_AF(GPIO_Init->Alternate)); /* Configure Alternate function mapped with the current IO */ temp = GPIOx->AFR[position >> 3U]; - 80026f0: 69fb ldr r3, [r7, #28] - 80026f2: 08da lsrs r2, r3, #3 - 80026f4: 687b ldr r3, [r7, #4] - 80026f6: 3208 adds r2, #8 - 80026f8: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80026fc: 61bb str r3, [r7, #24] + 8002960: 69fb ldr r3, [r7, #28] + 8002962: 08da lsrs r2, r3, #3 + 8002964: 687b ldr r3, [r7, #4] + 8002966: 3208 adds r2, #8 + 8002968: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800296c: 61bb str r3, [r7, #24] temp &= ~(0xFU << ((uint32_t)(position & 0x07U) * 4U)) ; - 80026fe: 69fb ldr r3, [r7, #28] - 8002700: f003 0307 and.w r3, r3, #7 - 8002704: 009b lsls r3, r3, #2 - 8002706: 220f movs r2, #15 - 8002708: fa02 f303 lsl.w r3, r2, r3 - 800270c: 43db mvns r3, r3 - 800270e: 69ba ldr r2, [r7, #24] - 8002710: 4013 ands r3, r2 - 8002712: 61bb str r3, [r7, #24] + 800296e: 69fb ldr r3, [r7, #28] + 8002970: f003 0307 and.w r3, r3, #7 + 8002974: 009b lsls r3, r3, #2 + 8002976: 220f movs r2, #15 + 8002978: fa02 f303 lsl.w r3, r2, r3 + 800297c: 43db mvns r3, r3 + 800297e: 69ba ldr r2, [r7, #24] + 8002980: 4013 ands r3, r2 + 8002982: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & 0x07U) * 4U)); - 8002714: 683b ldr r3, [r7, #0] - 8002716: 691a ldr r2, [r3, #16] - 8002718: 69fb ldr r3, [r7, #28] - 800271a: f003 0307 and.w r3, r3, #7 - 800271e: 009b lsls r3, r3, #2 - 8002720: fa02 f303 lsl.w r3, r2, r3 - 8002724: 69ba ldr r2, [r7, #24] - 8002726: 4313 orrs r3, r2 - 8002728: 61bb str r3, [r7, #24] + 8002984: 683b ldr r3, [r7, #0] + 8002986: 691a ldr r2, [r3, #16] + 8002988: 69fb ldr r3, [r7, #28] + 800298a: f003 0307 and.w r3, r3, #7 + 800298e: 009b lsls r3, r3, #2 + 8002990: fa02 f303 lsl.w r3, r2, r3 + 8002994: 69ba ldr r2, [r7, #24] + 8002996: 4313 orrs r3, r2 + 8002998: 61bb str r3, [r7, #24] GPIOx->AFR[position >> 3U] = temp; - 800272a: 69fb ldr r3, [r7, #28] - 800272c: 08da lsrs r2, r3, #3 - 800272e: 687b ldr r3, [r7, #4] - 8002730: 3208 adds r2, #8 - 8002732: 69b9 ldr r1, [r7, #24] - 8002734: f843 1022 str.w r1, [r3, r2, lsl #2] + 800299a: 69fb ldr r3, [r7, #28] + 800299c: 08da lsrs r2, r3, #3 + 800299e: 687b ldr r3, [r7, #4] + 80029a0: 3208 adds r2, #8 + 80029a2: 69b9 ldr r1, [r7, #24] + 80029a4: f843 1022 str.w r1, [r3, r2, lsl #2] } /* Configure IO Direction mode (Input, Output, Alternate or Analog) */ temp = GPIOx->MODER; - 8002738: 687b ldr r3, [r7, #4] - 800273a: 681b ldr r3, [r3, #0] - 800273c: 61bb str r3, [r7, #24] + 80029a8: 687b ldr r3, [r7, #4] + 80029aa: 681b ldr r3, [r3, #0] + 80029ac: 61bb str r3, [r7, #24] temp &= ~(GPIO_MODER_MODER0 << (position * 2U)); - 800273e: 69fb ldr r3, [r7, #28] - 8002740: 005b lsls r3, r3, #1 - 8002742: 2203 movs r2, #3 - 8002744: fa02 f303 lsl.w r3, r2, r3 - 8002748: 43db mvns r3, r3 - 800274a: 69ba ldr r2, [r7, #24] - 800274c: 4013 ands r3, r2 - 800274e: 61bb str r3, [r7, #24] + 80029ae: 69fb ldr r3, [r7, #28] + 80029b0: 005b lsls r3, r3, #1 + 80029b2: 2203 movs r2, #3 + 80029b4: fa02 f303 lsl.w r3, r2, r3 + 80029b8: 43db mvns r3, r3 + 80029ba: 69ba ldr r2, [r7, #24] + 80029bc: 4013 ands r3, r2 + 80029be: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); - 8002750: 683b ldr r3, [r7, #0] - 8002752: 685b ldr r3, [r3, #4] - 8002754: f003 0203 and.w r2, r3, #3 - 8002758: 69fb ldr r3, [r7, #28] - 800275a: 005b lsls r3, r3, #1 - 800275c: fa02 f303 lsl.w r3, r2, r3 - 8002760: 69ba ldr r2, [r7, #24] - 8002762: 4313 orrs r3, r2 - 8002764: 61bb str r3, [r7, #24] + 80029c0: 683b ldr r3, [r7, #0] + 80029c2: 685b ldr r3, [r3, #4] + 80029c4: f003 0203 and.w r2, r3, #3 + 80029c8: 69fb ldr r3, [r7, #28] + 80029ca: 005b lsls r3, r3, #1 + 80029cc: fa02 f303 lsl.w r3, r2, r3 + 80029d0: 69ba ldr r2, [r7, #24] + 80029d2: 4313 orrs r3, r2 + 80029d4: 61bb str r3, [r7, #24] GPIOx->MODER = temp; - 8002766: 687b ldr r3, [r7, #4] - 8002768: 69ba ldr r2, [r7, #24] - 800276a: 601a str r2, [r3, #0] + 80029d6: 687b ldr r3, [r7, #4] + 80029d8: 69ba ldr r2, [r7, #24] + 80029da: 601a str r2, [r3, #0] /*--------------------- EXTI Mode Configuration ------------------------*/ /* Configure the External Interrupt or event for the current IO */ if((GPIO_Init->Mode & EXTI_MODE) != 0x00U) - 800276c: 683b ldr r3, [r7, #0] - 800276e: 685b ldr r3, [r3, #4] - 8002770: f403 3340 and.w r3, r3, #196608 @ 0x30000 - 8002774: 2b00 cmp r3, #0 - 8002776: f000 80ae beq.w 80028d6 + 80029dc: 683b ldr r3, [r7, #0] + 80029de: 685b ldr r3, [r3, #4] + 80029e0: f403 3340 and.w r3, r3, #196608 @ 0x30000 + 80029e4: 2b00 cmp r3, #0 + 80029e6: f000 80ae beq.w 8002b46 { /* Enable SYSCFG Clock */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 800277a: 2300 movs r3, #0 - 800277c: 60fb str r3, [r7, #12] - 800277e: 4b5d ldr r3, [pc, #372] @ (80028f4 ) - 8002780: 6c5b ldr r3, [r3, #68] @ 0x44 - 8002782: 4a5c ldr r2, [pc, #368] @ (80028f4 ) - 8002784: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 8002788: 6453 str r3, [r2, #68] @ 0x44 - 800278a: 4b5a ldr r3, [pc, #360] @ (80028f4 ) - 800278c: 6c5b ldr r3, [r3, #68] @ 0x44 - 800278e: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 8002792: 60fb str r3, [r7, #12] - 8002794: 68fb ldr r3, [r7, #12] + 80029ea: 2300 movs r3, #0 + 80029ec: 60fb str r3, [r7, #12] + 80029ee: 4b5d ldr r3, [pc, #372] @ (8002b64 ) + 80029f0: 6c5b ldr r3, [r3, #68] @ 0x44 + 80029f2: 4a5c ldr r2, [pc, #368] @ (8002b64 ) + 80029f4: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 80029f8: 6453 str r3, [r2, #68] @ 0x44 + 80029fa: 4b5a ldr r3, [pc, #360] @ (8002b64 ) + 80029fc: 6c5b ldr r3, [r3, #68] @ 0x44 + 80029fe: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 8002a02: 60fb str r3, [r7, #12] + 8002a04: 68fb ldr r3, [r7, #12] temp = SYSCFG->EXTICR[position >> 2U]; - 8002796: 4a58 ldr r2, [pc, #352] @ (80028f8 ) - 8002798: 69fb ldr r3, [r7, #28] - 800279a: 089b lsrs r3, r3, #2 - 800279c: 3302 adds r3, #2 - 800279e: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 80027a2: 61bb str r3, [r7, #24] + 8002a06: 4a58 ldr r2, [pc, #352] @ (8002b68 ) + 8002a08: 69fb ldr r3, [r7, #28] + 8002a0a: 089b lsrs r3, r3, #2 + 8002a0c: 3302 adds r3, #2 + 8002a0e: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8002a12: 61bb str r3, [r7, #24] temp &= ~(0x0FU << (4U * (position & 0x03U))); - 80027a4: 69fb ldr r3, [r7, #28] - 80027a6: f003 0303 and.w r3, r3, #3 - 80027aa: 009b lsls r3, r3, #2 - 80027ac: 220f movs r2, #15 - 80027ae: fa02 f303 lsl.w r3, r2, r3 - 80027b2: 43db mvns r3, r3 - 80027b4: 69ba ldr r2, [r7, #24] - 80027b6: 4013 ands r3, r2 - 80027b8: 61bb str r3, [r7, #24] + 8002a14: 69fb ldr r3, [r7, #28] + 8002a16: f003 0303 and.w r3, r3, #3 + 8002a1a: 009b lsls r3, r3, #2 + 8002a1c: 220f movs r2, #15 + 8002a1e: fa02 f303 lsl.w r3, r2, r3 + 8002a22: 43db mvns r3, r3 + 8002a24: 69ba ldr r2, [r7, #24] + 8002a26: 4013 ands r3, r2 + 8002a28: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4U * (position & 0x03U))); - 80027ba: 687b ldr r3, [r7, #4] - 80027bc: 4a4f ldr r2, [pc, #316] @ (80028fc ) - 80027be: 4293 cmp r3, r2 - 80027c0: d025 beq.n 800280e - 80027c2: 687b ldr r3, [r7, #4] - 80027c4: 4a4e ldr r2, [pc, #312] @ (8002900 ) - 80027c6: 4293 cmp r3, r2 - 80027c8: d01f beq.n 800280a - 80027ca: 687b ldr r3, [r7, #4] - 80027cc: 4a4d ldr r2, [pc, #308] @ (8002904 ) - 80027ce: 4293 cmp r3, r2 - 80027d0: d019 beq.n 8002806 - 80027d2: 687b ldr r3, [r7, #4] - 80027d4: 4a4c ldr r2, [pc, #304] @ (8002908 ) - 80027d6: 4293 cmp r3, r2 - 80027d8: d013 beq.n 8002802 - 80027da: 687b ldr r3, [r7, #4] - 80027dc: 4a4b ldr r2, [pc, #300] @ (800290c ) - 80027de: 4293 cmp r3, r2 - 80027e0: d00d beq.n 80027fe - 80027e2: 687b ldr r3, [r7, #4] - 80027e4: 4a4a ldr r2, [pc, #296] @ (8002910 ) - 80027e6: 4293 cmp r3, r2 - 80027e8: d007 beq.n 80027fa - 80027ea: 687b ldr r3, [r7, #4] - 80027ec: 4a49 ldr r2, [pc, #292] @ (8002914 ) - 80027ee: 4293 cmp r3, r2 - 80027f0: d101 bne.n 80027f6 - 80027f2: 2306 movs r3, #6 - 80027f4: e00c b.n 8002810 - 80027f6: 2307 movs r3, #7 - 80027f8: e00a b.n 8002810 - 80027fa: 2305 movs r3, #5 - 80027fc: e008 b.n 8002810 - 80027fe: 2304 movs r3, #4 - 8002800: e006 b.n 8002810 - 8002802: 2303 movs r3, #3 - 8002804: e004 b.n 8002810 - 8002806: 2302 movs r3, #2 - 8002808: e002 b.n 8002810 - 800280a: 2301 movs r3, #1 - 800280c: e000 b.n 8002810 - 800280e: 2300 movs r3, #0 - 8002810: 69fa ldr r2, [r7, #28] - 8002812: f002 0203 and.w r2, r2, #3 - 8002816: 0092 lsls r2, r2, #2 - 8002818: 4093 lsls r3, r2 - 800281a: 69ba ldr r2, [r7, #24] - 800281c: 4313 orrs r3, r2 - 800281e: 61bb str r3, [r7, #24] + 8002a2a: 687b ldr r3, [r7, #4] + 8002a2c: 4a4f ldr r2, [pc, #316] @ (8002b6c ) + 8002a2e: 4293 cmp r3, r2 + 8002a30: d025 beq.n 8002a7e + 8002a32: 687b ldr r3, [r7, #4] + 8002a34: 4a4e ldr r2, [pc, #312] @ (8002b70 ) + 8002a36: 4293 cmp r3, r2 + 8002a38: d01f beq.n 8002a7a + 8002a3a: 687b ldr r3, [r7, #4] + 8002a3c: 4a4d ldr r2, [pc, #308] @ (8002b74 ) + 8002a3e: 4293 cmp r3, r2 + 8002a40: d019 beq.n 8002a76 + 8002a42: 687b ldr r3, [r7, #4] + 8002a44: 4a4c ldr r2, [pc, #304] @ (8002b78 ) + 8002a46: 4293 cmp r3, r2 + 8002a48: d013 beq.n 8002a72 + 8002a4a: 687b ldr r3, [r7, #4] + 8002a4c: 4a4b ldr r2, [pc, #300] @ (8002b7c ) + 8002a4e: 4293 cmp r3, r2 + 8002a50: d00d beq.n 8002a6e + 8002a52: 687b ldr r3, [r7, #4] + 8002a54: 4a4a ldr r2, [pc, #296] @ (8002b80 ) + 8002a56: 4293 cmp r3, r2 + 8002a58: d007 beq.n 8002a6a + 8002a5a: 687b ldr r3, [r7, #4] + 8002a5c: 4a49 ldr r2, [pc, #292] @ (8002b84 ) + 8002a5e: 4293 cmp r3, r2 + 8002a60: d101 bne.n 8002a66 + 8002a62: 2306 movs r3, #6 + 8002a64: e00c b.n 8002a80 + 8002a66: 2307 movs r3, #7 + 8002a68: e00a b.n 8002a80 + 8002a6a: 2305 movs r3, #5 + 8002a6c: e008 b.n 8002a80 + 8002a6e: 2304 movs r3, #4 + 8002a70: e006 b.n 8002a80 + 8002a72: 2303 movs r3, #3 + 8002a74: e004 b.n 8002a80 + 8002a76: 2302 movs r3, #2 + 8002a78: e002 b.n 8002a80 + 8002a7a: 2301 movs r3, #1 + 8002a7c: e000 b.n 8002a80 + 8002a7e: 2300 movs r3, #0 + 8002a80: 69fa ldr r2, [r7, #28] + 8002a82: f002 0203 and.w r2, r2, #3 + 8002a86: 0092 lsls r2, r2, #2 + 8002a88: 4093 lsls r3, r2 + 8002a8a: 69ba ldr r2, [r7, #24] + 8002a8c: 4313 orrs r3, r2 + 8002a8e: 61bb str r3, [r7, #24] SYSCFG->EXTICR[position >> 2U] = temp; - 8002820: 4935 ldr r1, [pc, #212] @ (80028f8 ) - 8002822: 69fb ldr r3, [r7, #28] - 8002824: 089b lsrs r3, r3, #2 - 8002826: 3302 adds r3, #2 - 8002828: 69ba ldr r2, [r7, #24] - 800282a: f841 2023 str.w r2, [r1, r3, lsl #2] + 8002a90: 4935 ldr r1, [pc, #212] @ (8002b68 ) + 8002a92: 69fb ldr r3, [r7, #28] + 8002a94: 089b lsrs r3, r3, #2 + 8002a96: 3302 adds r3, #2 + 8002a98: 69ba ldr r2, [r7, #24] + 8002a9a: f841 2023 str.w r2, [r1, r3, lsl #2] /* Clear Rising Falling edge configuration */ temp = EXTI->RTSR; - 800282e: 4b3a ldr r3, [pc, #232] @ (8002918 ) - 8002830: 689b ldr r3, [r3, #8] - 8002832: 61bb str r3, [r7, #24] + 8002a9e: 4b3a ldr r3, [pc, #232] @ (8002b88 ) + 8002aa0: 689b ldr r3, [r3, #8] + 8002aa2: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8002834: 693b ldr r3, [r7, #16] - 8002836: 43db mvns r3, r3 - 8002838: 69ba ldr r2, [r7, #24] - 800283a: 4013 ands r3, r2 - 800283c: 61bb str r3, [r7, #24] + 8002aa4: 693b ldr r3, [r7, #16] + 8002aa6: 43db mvns r3, r3 + 8002aa8: 69ba ldr r2, [r7, #24] + 8002aaa: 4013 ands r3, r2 + 8002aac: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_RISING) != 0x00U) - 800283e: 683b ldr r3, [r7, #0] - 8002840: 685b ldr r3, [r3, #4] - 8002842: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 8002846: 2b00 cmp r3, #0 - 8002848: d003 beq.n 8002852 + 8002aae: 683b ldr r3, [r7, #0] + 8002ab0: 685b ldr r3, [r3, #4] + 8002ab2: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 8002ab6: 2b00 cmp r3, #0 + 8002ab8: d003 beq.n 8002ac2 { temp |= iocurrent; - 800284a: 69ba ldr r2, [r7, #24] - 800284c: 693b ldr r3, [r7, #16] - 800284e: 4313 orrs r3, r2 - 8002850: 61bb str r3, [r7, #24] + 8002aba: 69ba ldr r2, [r7, #24] + 8002abc: 693b ldr r3, [r7, #16] + 8002abe: 4313 orrs r3, r2 + 8002ac0: 61bb str r3, [r7, #24] } EXTI->RTSR = temp; - 8002852: 4a31 ldr r2, [pc, #196] @ (8002918 ) - 8002854: 69bb ldr r3, [r7, #24] - 8002856: 6093 str r3, [r2, #8] + 8002ac2: 4a31 ldr r2, [pc, #196] @ (8002b88 ) + 8002ac4: 69bb ldr r3, [r7, #24] + 8002ac6: 6093 str r3, [r2, #8] temp = EXTI->FTSR; - 8002858: 4b2f ldr r3, [pc, #188] @ (8002918 ) - 800285a: 68db ldr r3, [r3, #12] - 800285c: 61bb str r3, [r7, #24] + 8002ac8: 4b2f ldr r3, [pc, #188] @ (8002b88 ) + 8002aca: 68db ldr r3, [r3, #12] + 8002acc: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 800285e: 693b ldr r3, [r7, #16] - 8002860: 43db mvns r3, r3 - 8002862: 69ba ldr r2, [r7, #24] - 8002864: 4013 ands r3, r2 - 8002866: 61bb str r3, [r7, #24] + 8002ace: 693b ldr r3, [r7, #16] + 8002ad0: 43db mvns r3, r3 + 8002ad2: 69ba ldr r2, [r7, #24] + 8002ad4: 4013 ands r3, r2 + 8002ad6: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_FALLING) != 0x00U) - 8002868: 683b ldr r3, [r7, #0] - 800286a: 685b ldr r3, [r3, #4] - 800286c: f403 1300 and.w r3, r3, #2097152 @ 0x200000 - 8002870: 2b00 cmp r3, #0 - 8002872: d003 beq.n 800287c + 8002ad8: 683b ldr r3, [r7, #0] + 8002ada: 685b ldr r3, [r3, #4] + 8002adc: f403 1300 and.w r3, r3, #2097152 @ 0x200000 + 8002ae0: 2b00 cmp r3, #0 + 8002ae2: d003 beq.n 8002aec { temp |= iocurrent; - 8002874: 69ba ldr r2, [r7, #24] - 8002876: 693b ldr r3, [r7, #16] - 8002878: 4313 orrs r3, r2 - 800287a: 61bb str r3, [r7, #24] + 8002ae4: 69ba ldr r2, [r7, #24] + 8002ae6: 693b ldr r3, [r7, #16] + 8002ae8: 4313 orrs r3, r2 + 8002aea: 61bb str r3, [r7, #24] } EXTI->FTSR = temp; - 800287c: 4a26 ldr r2, [pc, #152] @ (8002918 ) - 800287e: 69bb ldr r3, [r7, #24] - 8002880: 60d3 str r3, [r2, #12] + 8002aec: 4a26 ldr r2, [pc, #152] @ (8002b88 ) + 8002aee: 69bb ldr r3, [r7, #24] + 8002af0: 60d3 str r3, [r2, #12] temp = EXTI->EMR; - 8002882: 4b25 ldr r3, [pc, #148] @ (8002918 ) - 8002884: 685b ldr r3, [r3, #4] - 8002886: 61bb str r3, [r7, #24] + 8002af2: 4b25 ldr r3, [pc, #148] @ (8002b88 ) + 8002af4: 685b ldr r3, [r3, #4] + 8002af6: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8002888: 693b ldr r3, [r7, #16] - 800288a: 43db mvns r3, r3 - 800288c: 69ba ldr r2, [r7, #24] - 800288e: 4013 ands r3, r2 - 8002890: 61bb str r3, [r7, #24] + 8002af8: 693b ldr r3, [r7, #16] + 8002afa: 43db mvns r3, r3 + 8002afc: 69ba ldr r2, [r7, #24] + 8002afe: 4013 ands r3, r2 + 8002b00: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_EVT) != 0x00U) - 8002892: 683b ldr r3, [r7, #0] - 8002894: 685b ldr r3, [r3, #4] - 8002896: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800289a: 2b00 cmp r3, #0 - 800289c: d003 beq.n 80028a6 + 8002b02: 683b ldr r3, [r7, #0] + 8002b04: 685b ldr r3, [r3, #4] + 8002b06: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8002b0a: 2b00 cmp r3, #0 + 8002b0c: d003 beq.n 8002b16 { temp |= iocurrent; - 800289e: 69ba ldr r2, [r7, #24] - 80028a0: 693b ldr r3, [r7, #16] - 80028a2: 4313 orrs r3, r2 - 80028a4: 61bb str r3, [r7, #24] + 8002b0e: 69ba ldr r2, [r7, #24] + 8002b10: 693b ldr r3, [r7, #16] + 8002b12: 4313 orrs r3, r2 + 8002b14: 61bb str r3, [r7, #24] } EXTI->EMR = temp; - 80028a6: 4a1c ldr r2, [pc, #112] @ (8002918 ) - 80028a8: 69bb ldr r3, [r7, #24] - 80028aa: 6053 str r3, [r2, #4] + 8002b16: 4a1c ldr r2, [pc, #112] @ (8002b88 ) + 8002b18: 69bb ldr r3, [r7, #24] + 8002b1a: 6053 str r3, [r2, #4] /* Clear EXTI line configuration */ temp = EXTI->IMR; - 80028ac: 4b1a ldr r3, [pc, #104] @ (8002918 ) - 80028ae: 681b ldr r3, [r3, #0] - 80028b0: 61bb str r3, [r7, #24] + 8002b1c: 4b1a ldr r3, [pc, #104] @ (8002b88 ) + 8002b1e: 681b ldr r3, [r3, #0] + 8002b20: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 80028b2: 693b ldr r3, [r7, #16] - 80028b4: 43db mvns r3, r3 - 80028b6: 69ba ldr r2, [r7, #24] - 80028b8: 4013 ands r3, r2 - 80028ba: 61bb str r3, [r7, #24] + 8002b22: 693b ldr r3, [r7, #16] + 8002b24: 43db mvns r3, r3 + 8002b26: 69ba ldr r2, [r7, #24] + 8002b28: 4013 ands r3, r2 + 8002b2a: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_IT) != 0x00U) - 80028bc: 683b ldr r3, [r7, #0] - 80028be: 685b ldr r3, [r3, #4] - 80028c0: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 80028c4: 2b00 cmp r3, #0 - 80028c6: d003 beq.n 80028d0 + 8002b2c: 683b ldr r3, [r7, #0] + 8002b2e: 685b ldr r3, [r3, #4] + 8002b30: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 8002b34: 2b00 cmp r3, #0 + 8002b36: d003 beq.n 8002b40 { temp |= iocurrent; - 80028c8: 69ba ldr r2, [r7, #24] - 80028ca: 693b ldr r3, [r7, #16] - 80028cc: 4313 orrs r3, r2 - 80028ce: 61bb str r3, [r7, #24] + 8002b38: 69ba ldr r2, [r7, #24] + 8002b3a: 693b ldr r3, [r7, #16] + 8002b3c: 4313 orrs r3, r2 + 8002b3e: 61bb str r3, [r7, #24] } EXTI->IMR = temp; - 80028d0: 4a11 ldr r2, [pc, #68] @ (8002918 ) - 80028d2: 69bb ldr r3, [r7, #24] - 80028d4: 6013 str r3, [r2, #0] + 8002b40: 4a11 ldr r2, [pc, #68] @ (8002b88 ) + 8002b42: 69bb ldr r3, [r7, #24] + 8002b44: 6013 str r3, [r2, #0] for(position = 0U; position < GPIO_NUMBER; position++) - 80028d6: 69fb ldr r3, [r7, #28] - 80028d8: 3301 adds r3, #1 - 80028da: 61fb str r3, [r7, #28] - 80028dc: 69fb ldr r3, [r7, #28] - 80028de: 2b0f cmp r3, #15 - 80028e0: f67f ae96 bls.w 8002610 + 8002b46: 69fb ldr r3, [r7, #28] + 8002b48: 3301 adds r3, #1 + 8002b4a: 61fb str r3, [r7, #28] + 8002b4c: 69fb ldr r3, [r7, #28] + 8002b4e: 2b0f cmp r3, #15 + 8002b50: f67f ae96 bls.w 8002880 } } } } - 80028e4: bf00 nop - 80028e6: bf00 nop - 80028e8: 3724 adds r7, #36 @ 0x24 - 80028ea: 46bd mov sp, r7 - 80028ec: f85d 7b04 ldr.w r7, [sp], #4 - 80028f0: 4770 bx lr - 80028f2: bf00 nop - 80028f4: 40023800 .word 0x40023800 - 80028f8: 40013800 .word 0x40013800 - 80028fc: 40020000 .word 0x40020000 - 8002900: 40020400 .word 0x40020400 - 8002904: 40020800 .word 0x40020800 - 8002908: 40020c00 .word 0x40020c00 - 800290c: 40021000 .word 0x40021000 - 8002910: 40021400 .word 0x40021400 - 8002914: 40021800 .word 0x40021800 - 8002918: 40013c00 .word 0x40013c00 + 8002b54: bf00 nop + 8002b56: bf00 nop + 8002b58: 3724 adds r7, #36 @ 0x24 + 8002b5a: 46bd mov sp, r7 + 8002b5c: f85d 7b04 ldr.w r7, [sp], #4 + 8002b60: 4770 bx lr + 8002b62: bf00 nop + 8002b64: 40023800 .word 0x40023800 + 8002b68: 40013800 .word 0x40013800 + 8002b6c: 40020000 .word 0x40020000 + 8002b70: 40020400 .word 0x40020400 + 8002b74: 40020800 .word 0x40020800 + 8002b78: 40020c00 .word 0x40020c00 + 8002b7c: 40021000 .word 0x40021000 + 8002b80: 40021400 .word 0x40021400 + 8002b84: 40021800 .word 0x40021800 + 8002b88: 40013c00 .word 0x40013c00 -0800291c : +08002b8c : * @param GPIO_Pin specifies the port bit to read. * This parameter can be GPIO_PIN_x where x can be (0..15). * @retval The input port pin value. */ GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) { - 800291c: b480 push {r7} - 800291e: b085 sub sp, #20 - 8002920: af00 add r7, sp, #0 - 8002922: 6078 str r0, [r7, #4] - 8002924: 460b mov r3, r1 - 8002926: 807b strh r3, [r7, #2] + 8002b8c: b480 push {r7} + 8002b8e: b085 sub sp, #20 + 8002b90: af00 add r7, sp, #0 + 8002b92: 6078 str r0, [r7, #4] + 8002b94: 460b mov r3, r1 + 8002b96: 807b strh r3, [r7, #2] GPIO_PinState bitstatus; /* Check the parameters */ assert_param(IS_GPIO_PIN(GPIO_Pin)); if((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET) - 8002928: 687b ldr r3, [r7, #4] - 800292a: 691a ldr r2, [r3, #16] - 800292c: 887b ldrh r3, [r7, #2] - 800292e: 4013 ands r3, r2 - 8002930: 2b00 cmp r3, #0 - 8002932: d002 beq.n 800293a + 8002b98: 687b ldr r3, [r7, #4] + 8002b9a: 691a ldr r2, [r3, #16] + 8002b9c: 887b ldrh r3, [r7, #2] + 8002b9e: 4013 ands r3, r2 + 8002ba0: 2b00 cmp r3, #0 + 8002ba2: d002 beq.n 8002baa { bitstatus = GPIO_PIN_SET; - 8002934: 2301 movs r3, #1 - 8002936: 73fb strb r3, [r7, #15] - 8002938: e001 b.n 800293e + 8002ba4: 2301 movs r3, #1 + 8002ba6: 73fb strb r3, [r7, #15] + 8002ba8: e001 b.n 8002bae } else { bitstatus = GPIO_PIN_RESET; - 800293a: 2300 movs r3, #0 - 800293c: 73fb strb r3, [r7, #15] + 8002baa: 2300 movs r3, #0 + 8002bac: 73fb strb r3, [r7, #15] } return bitstatus; - 800293e: 7bfb ldrb r3, [r7, #15] + 8002bae: 7bfb ldrb r3, [r7, #15] } - 8002940: 4618 mov r0, r3 - 8002942: 3714 adds r7, #20 - 8002944: 46bd mov sp, r7 - 8002946: f85d 7b04 ldr.w r7, [sp], #4 - 800294a: 4770 bx lr + 8002bb0: 4618 mov r0, r3 + 8002bb2: 3714 adds r7, #20 + 8002bb4: 46bd mov sp, r7 + 8002bb6: f85d 7b04 ldr.w r7, [sp], #4 + 8002bba: 4770 bx lr -0800294c : +08002bbc : * @arg GPIO_PIN_RESET: to clear the port pin * @arg GPIO_PIN_SET: to set the port pin * @retval None */ void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) { - 800294c: b480 push {r7} - 800294e: b083 sub sp, #12 - 8002950: af00 add r7, sp, #0 - 8002952: 6078 str r0, [r7, #4] - 8002954: 460b mov r3, r1 - 8002956: 807b strh r3, [r7, #2] - 8002958: 4613 mov r3, r2 - 800295a: 707b strb r3, [r7, #1] + 8002bbc: b480 push {r7} + 8002bbe: b083 sub sp, #12 + 8002bc0: af00 add r7, sp, #0 + 8002bc2: 6078 str r0, [r7, #4] + 8002bc4: 460b mov r3, r1 + 8002bc6: 807b strh r3, [r7, #2] + 8002bc8: 4613 mov r3, r2 + 8002bca: 707b strb r3, [r7, #1] /* Check the parameters */ assert_param(IS_GPIO_PIN(GPIO_Pin)); assert_param(IS_GPIO_PIN_ACTION(PinState)); if(PinState != GPIO_PIN_RESET) - 800295c: 787b ldrb r3, [r7, #1] - 800295e: 2b00 cmp r3, #0 - 8002960: d003 beq.n 800296a + 8002bcc: 787b ldrb r3, [r7, #1] + 8002bce: 2b00 cmp r3, #0 + 8002bd0: d003 beq.n 8002bda { GPIOx->BSRR = GPIO_Pin; - 8002962: 887a ldrh r2, [r7, #2] - 8002964: 687b ldr r3, [r7, #4] - 8002966: 619a str r2, [r3, #24] + 8002bd2: 887a ldrh r2, [r7, #2] + 8002bd4: 687b ldr r3, [r7, #4] + 8002bd6: 619a str r2, [r3, #24] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; } } - 8002968: e003 b.n 8002972 + 8002bd8: e003 b.n 8002be2 GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; - 800296a: 887b ldrh r3, [r7, #2] - 800296c: 041a lsls r2, r3, #16 - 800296e: 687b ldr r3, [r7, #4] - 8002970: 619a str r2, [r3, #24] + 8002bda: 887b ldrh r3, [r7, #2] + 8002bdc: 041a lsls r2, r3, #16 + 8002bde: 687b ldr r3, [r7, #4] + 8002be0: 619a str r2, [r3, #24] } - 8002972: bf00 nop - 8002974: 370c adds r7, #12 - 8002976: 46bd mov sp, r7 - 8002978: f85d 7b04 ldr.w r7, [sp], #4 - 800297c: 4770 bx lr + 8002be2: bf00 nop + 8002be4: 370c adds r7, #12 + 8002be6: 46bd mov sp, r7 + 8002be8: f85d 7b04 ldr.w r7, [sp], #4 + 8002bec: 4770 bx lr ... -08002980 : +08002bf0 : * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains * the configuration information for the specified I2C. * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c) { - 8002980: b580 push {r7, lr} - 8002982: b084 sub sp, #16 - 8002984: af00 add r7, sp, #0 - 8002986: 6078 str r0, [r7, #4] + 8002bf0: b580 push {r7, lr} + 8002bf2: b084 sub sp, #16 + 8002bf4: af00 add r7, sp, #0 + 8002bf6: 6078 str r0, [r7, #4] uint32_t freqrange; uint32_t pclk1; /* Check the I2C handle allocation */ if (hi2c == NULL) - 8002988: 687b ldr r3, [r7, #4] - 800298a: 2b00 cmp r3, #0 - 800298c: d101 bne.n 8002992 + 8002bf8: 687b ldr r3, [r7, #4] + 8002bfa: 2b00 cmp r3, #0 + 8002bfc: d101 bne.n 8002c02 { return HAL_ERROR; - 800298e: 2301 movs r3, #1 - 8002990: e12b b.n 8002bea + 8002bfe: 2301 movs r3, #1 + 8002c00: e12b b.n 8002e5a assert_param(IS_I2C_DUAL_ADDRESS(hi2c->Init.DualAddressMode)); assert_param(IS_I2C_OWN_ADDRESS2(hi2c->Init.OwnAddress2)); assert_param(IS_I2C_GENERAL_CALL(hi2c->Init.GeneralCallMode)); assert_param(IS_I2C_NO_STRETCH(hi2c->Init.NoStretchMode)); if (hi2c->State == HAL_I2C_STATE_RESET) - 8002992: 687b ldr r3, [r7, #4] - 8002994: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 8002998: b2db uxtb r3, r3 - 800299a: 2b00 cmp r3, #0 - 800299c: d106 bne.n 80029ac + 8002c02: 687b ldr r3, [r7, #4] + 8002c04: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 8002c08: b2db uxtb r3, r3 + 8002c0a: 2b00 cmp r3, #0 + 8002c0c: d106 bne.n 8002c1c { /* Allocate lock resource and initialize it */ hi2c->Lock = HAL_UNLOCKED; - 800299e: 687b ldr r3, [r7, #4] - 80029a0: 2200 movs r2, #0 - 80029a2: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8002c0e: 687b ldr r3, [r7, #4] + 8002c10: 2200 movs r2, #0 + 8002c12: f883 203c strb.w r2, [r3, #60] @ 0x3c /* Init the low level hardware : GPIO, CLOCK, NVIC */ hi2c->MspInitCallback(hi2c); #else /* Init the low level hardware : GPIO, CLOCK, NVIC */ HAL_I2C_MspInit(hi2c); - 80029a6: 6878 ldr r0, [r7, #4] - 80029a8: f7fd fef6 bl 8000798 + 8002c16: 6878 ldr r0, [r7, #4] + 8002c18: f7fd fdbe bl 8000798 #endif /* USE_HAL_I2C_REGISTER_CALLBACKS */ } hi2c->State = HAL_I2C_STATE_BUSY; - 80029ac: 687b ldr r3, [r7, #4] - 80029ae: 2224 movs r2, #36 @ 0x24 - 80029b0: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8002c1c: 687b ldr r3, [r7, #4] + 8002c1e: 2224 movs r2, #36 @ 0x24 + 8002c20: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Disable the selected I2C peripheral */ __HAL_I2C_DISABLE(hi2c); - 80029b4: 687b ldr r3, [r7, #4] - 80029b6: 681b ldr r3, [r3, #0] - 80029b8: 681a ldr r2, [r3, #0] - 80029ba: 687b ldr r3, [r7, #4] - 80029bc: 681b ldr r3, [r3, #0] - 80029be: f022 0201 bic.w r2, r2, #1 - 80029c2: 601a str r2, [r3, #0] + 8002c24: 687b ldr r3, [r7, #4] + 8002c26: 681b ldr r3, [r3, #0] + 8002c28: 681a ldr r2, [r3, #0] + 8002c2a: 687b ldr r3, [r7, #4] + 8002c2c: 681b ldr r3, [r3, #0] + 8002c2e: f022 0201 bic.w r2, r2, #1 + 8002c32: 601a str r2, [r3, #0] /*Reset I2C*/ hi2c->Instance->CR1 |= I2C_CR1_SWRST; - 80029c4: 687b ldr r3, [r7, #4] - 80029c6: 681b ldr r3, [r3, #0] - 80029c8: 681a ldr r2, [r3, #0] - 80029ca: 687b ldr r3, [r7, #4] - 80029cc: 681b ldr r3, [r3, #0] - 80029ce: f442 4200 orr.w r2, r2, #32768 @ 0x8000 - 80029d2: 601a str r2, [r3, #0] + 8002c34: 687b ldr r3, [r7, #4] + 8002c36: 681b ldr r3, [r3, #0] + 8002c38: 681a ldr r2, [r3, #0] + 8002c3a: 687b ldr r3, [r7, #4] + 8002c3c: 681b ldr r3, [r3, #0] + 8002c3e: f442 4200 orr.w r2, r2, #32768 @ 0x8000 + 8002c42: 601a str r2, [r3, #0] hi2c->Instance->CR1 &= ~I2C_CR1_SWRST; - 80029d4: 687b ldr r3, [r7, #4] - 80029d6: 681b ldr r3, [r3, #0] - 80029d8: 681a ldr r2, [r3, #0] - 80029da: 687b ldr r3, [r7, #4] - 80029dc: 681b ldr r3, [r3, #0] - 80029de: f422 4200 bic.w r2, r2, #32768 @ 0x8000 - 80029e2: 601a str r2, [r3, #0] + 8002c44: 687b ldr r3, [r7, #4] + 8002c46: 681b ldr r3, [r3, #0] + 8002c48: 681a ldr r2, [r3, #0] + 8002c4a: 687b ldr r3, [r7, #4] + 8002c4c: 681b ldr r3, [r3, #0] + 8002c4e: f422 4200 bic.w r2, r2, #32768 @ 0x8000 + 8002c52: 601a str r2, [r3, #0] /* Get PCLK1 frequency */ pclk1 = HAL_RCC_GetPCLK1Freq(); - 80029e4: f001 fc88 bl 80042f8 - 80029e8: 60f8 str r0, [r7, #12] + 8002c54: f001 fc88 bl 8004568 + 8002c58: 60f8 str r0, [r7, #12] /* Check the minimum allowed PCLK1 frequency */ if (I2C_MIN_PCLK_FREQ(pclk1, hi2c->Init.ClockSpeed) == 1U) - 80029ea: 687b ldr r3, [r7, #4] - 80029ec: 685b ldr r3, [r3, #4] - 80029ee: 4a81 ldr r2, [pc, #516] @ (8002bf4 ) - 80029f0: 4293 cmp r3, r2 - 80029f2: d807 bhi.n 8002a04 - 80029f4: 68fb ldr r3, [r7, #12] - 80029f6: 4a80 ldr r2, [pc, #512] @ (8002bf8 ) - 80029f8: 4293 cmp r3, r2 - 80029fa: bf94 ite ls - 80029fc: 2301 movls r3, #1 - 80029fe: 2300 movhi r3, #0 - 8002a00: b2db uxtb r3, r3 - 8002a02: e006 b.n 8002a12 - 8002a04: 68fb ldr r3, [r7, #12] - 8002a06: 4a7d ldr r2, [pc, #500] @ (8002bfc ) - 8002a08: 4293 cmp r3, r2 - 8002a0a: bf94 ite ls - 8002a0c: 2301 movls r3, #1 - 8002a0e: 2300 movhi r3, #0 - 8002a10: b2db uxtb r3, r3 - 8002a12: 2b00 cmp r3, #0 - 8002a14: d001 beq.n 8002a1a + 8002c5a: 687b ldr r3, [r7, #4] + 8002c5c: 685b ldr r3, [r3, #4] + 8002c5e: 4a81 ldr r2, [pc, #516] @ (8002e64 ) + 8002c60: 4293 cmp r3, r2 + 8002c62: d807 bhi.n 8002c74 + 8002c64: 68fb ldr r3, [r7, #12] + 8002c66: 4a80 ldr r2, [pc, #512] @ (8002e68 ) + 8002c68: 4293 cmp r3, r2 + 8002c6a: bf94 ite ls + 8002c6c: 2301 movls r3, #1 + 8002c6e: 2300 movhi r3, #0 + 8002c70: b2db uxtb r3, r3 + 8002c72: e006 b.n 8002c82 + 8002c74: 68fb ldr r3, [r7, #12] + 8002c76: 4a7d ldr r2, [pc, #500] @ (8002e6c ) + 8002c78: 4293 cmp r3, r2 + 8002c7a: bf94 ite ls + 8002c7c: 2301 movls r3, #1 + 8002c7e: 2300 movhi r3, #0 + 8002c80: b2db uxtb r3, r3 + 8002c82: 2b00 cmp r3, #0 + 8002c84: d001 beq.n 8002c8a { return HAL_ERROR; - 8002a16: 2301 movs r3, #1 - 8002a18: e0e7 b.n 8002bea + 8002c86: 2301 movs r3, #1 + 8002c88: e0e7 b.n 8002e5a } /* Calculate frequency range */ freqrange = I2C_FREQRANGE(pclk1); - 8002a1a: 68fb ldr r3, [r7, #12] - 8002a1c: 4a78 ldr r2, [pc, #480] @ (8002c00 ) - 8002a1e: fba2 2303 umull r2, r3, r2, r3 - 8002a22: 0c9b lsrs r3, r3, #18 - 8002a24: 60bb str r3, [r7, #8] + 8002c8a: 68fb ldr r3, [r7, #12] + 8002c8c: 4a78 ldr r2, [pc, #480] @ (8002e70 ) + 8002c8e: fba2 2303 umull r2, r3, r2, r3 + 8002c92: 0c9b lsrs r3, r3, #18 + 8002c94: 60bb str r3, [r7, #8] /*---------------------------- I2Cx CR2 Configuration ----------------------*/ /* Configure I2Cx: Frequency range */ MODIFY_REG(hi2c->Instance->CR2, I2C_CR2_FREQ, freqrange); - 8002a26: 687b ldr r3, [r7, #4] - 8002a28: 681b ldr r3, [r3, #0] - 8002a2a: 685b ldr r3, [r3, #4] - 8002a2c: f023 013f bic.w r1, r3, #63 @ 0x3f - 8002a30: 687b ldr r3, [r7, #4] - 8002a32: 681b ldr r3, [r3, #0] - 8002a34: 68ba ldr r2, [r7, #8] - 8002a36: 430a orrs r2, r1 - 8002a38: 605a str r2, [r3, #4] + 8002c96: 687b ldr r3, [r7, #4] + 8002c98: 681b ldr r3, [r3, #0] + 8002c9a: 685b ldr r3, [r3, #4] + 8002c9c: f023 013f bic.w r1, r3, #63 @ 0x3f + 8002ca0: 687b ldr r3, [r7, #4] + 8002ca2: 681b ldr r3, [r3, #0] + 8002ca4: 68ba ldr r2, [r7, #8] + 8002ca6: 430a orrs r2, r1 + 8002ca8: 605a str r2, [r3, #4] /*---------------------------- I2Cx TRISE Configuration --------------------*/ /* Configure I2Cx: Rise Time */ MODIFY_REG(hi2c->Instance->TRISE, I2C_TRISE_TRISE, I2C_RISE_TIME(freqrange, hi2c->Init.ClockSpeed)); - 8002a3a: 687b ldr r3, [r7, #4] - 8002a3c: 681b ldr r3, [r3, #0] - 8002a3e: 6a1b ldr r3, [r3, #32] - 8002a40: f023 013f bic.w r1, r3, #63 @ 0x3f - 8002a44: 687b ldr r3, [r7, #4] - 8002a46: 685b ldr r3, [r3, #4] - 8002a48: 4a6a ldr r2, [pc, #424] @ (8002bf4 ) - 8002a4a: 4293 cmp r3, r2 - 8002a4c: d802 bhi.n 8002a54 - 8002a4e: 68bb ldr r3, [r7, #8] - 8002a50: 3301 adds r3, #1 - 8002a52: e009 b.n 8002a68 - 8002a54: 68bb ldr r3, [r7, #8] - 8002a56: f44f 7296 mov.w r2, #300 @ 0x12c - 8002a5a: fb02 f303 mul.w r3, r2, r3 - 8002a5e: 4a69 ldr r2, [pc, #420] @ (8002c04 ) - 8002a60: fba2 2303 umull r2, r3, r2, r3 - 8002a64: 099b lsrs r3, r3, #6 - 8002a66: 3301 adds r3, #1 - 8002a68: 687a ldr r2, [r7, #4] - 8002a6a: 6812 ldr r2, [r2, #0] - 8002a6c: 430b orrs r3, r1 - 8002a6e: 6213 str r3, [r2, #32] + 8002caa: 687b ldr r3, [r7, #4] + 8002cac: 681b ldr r3, [r3, #0] + 8002cae: 6a1b ldr r3, [r3, #32] + 8002cb0: f023 013f bic.w r1, r3, #63 @ 0x3f + 8002cb4: 687b ldr r3, [r7, #4] + 8002cb6: 685b ldr r3, [r3, #4] + 8002cb8: 4a6a ldr r2, [pc, #424] @ (8002e64 ) + 8002cba: 4293 cmp r3, r2 + 8002cbc: d802 bhi.n 8002cc4 + 8002cbe: 68bb ldr r3, [r7, #8] + 8002cc0: 3301 adds r3, #1 + 8002cc2: e009 b.n 8002cd8 + 8002cc4: 68bb ldr r3, [r7, #8] + 8002cc6: f44f 7296 mov.w r2, #300 @ 0x12c + 8002cca: fb02 f303 mul.w r3, r2, r3 + 8002cce: 4a69 ldr r2, [pc, #420] @ (8002e74 ) + 8002cd0: fba2 2303 umull r2, r3, r2, r3 + 8002cd4: 099b lsrs r3, r3, #6 + 8002cd6: 3301 adds r3, #1 + 8002cd8: 687a ldr r2, [r7, #4] + 8002cda: 6812 ldr r2, [r2, #0] + 8002cdc: 430b orrs r3, r1 + 8002cde: 6213 str r3, [r2, #32] /*---------------------------- I2Cx CCR Configuration ----------------------*/ /* Configure I2Cx: Speed */ MODIFY_REG(hi2c->Instance->CCR, (I2C_CCR_FS | I2C_CCR_DUTY | I2C_CCR_CCR), I2C_SPEED(pclk1, hi2c->Init.ClockSpeed, hi2c->Init.DutyCycle)); - 8002a70: 687b ldr r3, [r7, #4] - 8002a72: 681b ldr r3, [r3, #0] - 8002a74: 69db ldr r3, [r3, #28] - 8002a76: f423 424f bic.w r2, r3, #52992 @ 0xcf00 - 8002a7a: f022 02ff bic.w r2, r2, #255 @ 0xff - 8002a7e: 687b ldr r3, [r7, #4] - 8002a80: 685b ldr r3, [r3, #4] - 8002a82: 495c ldr r1, [pc, #368] @ (8002bf4 ) - 8002a84: 428b cmp r3, r1 - 8002a86: d819 bhi.n 8002abc - 8002a88: 68fb ldr r3, [r7, #12] - 8002a8a: 1e59 subs r1, r3, #1 - 8002a8c: 687b ldr r3, [r7, #4] - 8002a8e: 685b ldr r3, [r3, #4] - 8002a90: 005b lsls r3, r3, #1 - 8002a92: fbb1 f3f3 udiv r3, r1, r3 - 8002a96: 1c59 adds r1, r3, #1 - 8002a98: f640 73fc movw r3, #4092 @ 0xffc - 8002a9c: 400b ands r3, r1 - 8002a9e: 2b00 cmp r3, #0 - 8002aa0: d00a beq.n 8002ab8 - 8002aa2: 68fb ldr r3, [r7, #12] - 8002aa4: 1e59 subs r1, r3, #1 - 8002aa6: 687b ldr r3, [r7, #4] - 8002aa8: 685b ldr r3, [r3, #4] - 8002aaa: 005b lsls r3, r3, #1 - 8002aac: fbb1 f3f3 udiv r3, r1, r3 - 8002ab0: 3301 adds r3, #1 - 8002ab2: f3c3 030b ubfx r3, r3, #0, #12 - 8002ab6: e051 b.n 8002b5c - 8002ab8: 2304 movs r3, #4 - 8002aba: e04f b.n 8002b5c - 8002abc: 687b ldr r3, [r7, #4] - 8002abe: 689b ldr r3, [r3, #8] - 8002ac0: 2b00 cmp r3, #0 - 8002ac2: d111 bne.n 8002ae8 - 8002ac4: 68fb ldr r3, [r7, #12] - 8002ac6: 1e58 subs r0, r3, #1 - 8002ac8: 687b ldr r3, [r7, #4] - 8002aca: 6859 ldr r1, [r3, #4] - 8002acc: 460b mov r3, r1 - 8002ace: 005b lsls r3, r3, #1 - 8002ad0: 440b add r3, r1 - 8002ad2: fbb0 f3f3 udiv r3, r0, r3 - 8002ad6: 3301 adds r3, #1 - 8002ad8: f3c3 030b ubfx r3, r3, #0, #12 - 8002adc: 2b00 cmp r3, #0 - 8002ade: bf0c ite eq - 8002ae0: 2301 moveq r3, #1 - 8002ae2: 2300 movne r3, #0 - 8002ae4: b2db uxtb r3, r3 - 8002ae6: e012 b.n 8002b0e - 8002ae8: 68fb ldr r3, [r7, #12] - 8002aea: 1e58 subs r0, r3, #1 - 8002aec: 687b ldr r3, [r7, #4] - 8002aee: 6859 ldr r1, [r3, #4] - 8002af0: 460b mov r3, r1 - 8002af2: 009b lsls r3, r3, #2 - 8002af4: 440b add r3, r1 - 8002af6: 0099 lsls r1, r3, #2 - 8002af8: 440b add r3, r1 - 8002afa: fbb0 f3f3 udiv r3, r0, r3 - 8002afe: 3301 adds r3, #1 - 8002b00: f3c3 030b ubfx r3, r3, #0, #12 - 8002b04: 2b00 cmp r3, #0 - 8002b06: bf0c ite eq - 8002b08: 2301 moveq r3, #1 - 8002b0a: 2300 movne r3, #0 - 8002b0c: b2db uxtb r3, r3 - 8002b0e: 2b00 cmp r3, #0 - 8002b10: d001 beq.n 8002b16 - 8002b12: 2301 movs r3, #1 - 8002b14: e022 b.n 8002b5c - 8002b16: 687b ldr r3, [r7, #4] - 8002b18: 689b ldr r3, [r3, #8] - 8002b1a: 2b00 cmp r3, #0 - 8002b1c: d10e bne.n 8002b3c - 8002b1e: 68fb ldr r3, [r7, #12] - 8002b20: 1e58 subs r0, r3, #1 - 8002b22: 687b ldr r3, [r7, #4] - 8002b24: 6859 ldr r1, [r3, #4] - 8002b26: 460b mov r3, r1 - 8002b28: 005b lsls r3, r3, #1 - 8002b2a: 440b add r3, r1 - 8002b2c: fbb0 f3f3 udiv r3, r0, r3 - 8002b30: 3301 adds r3, #1 - 8002b32: f3c3 030b ubfx r3, r3, #0, #12 - 8002b36: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 8002b3a: e00f b.n 8002b5c - 8002b3c: 68fb ldr r3, [r7, #12] - 8002b3e: 1e58 subs r0, r3, #1 - 8002b40: 687b ldr r3, [r7, #4] - 8002b42: 6859 ldr r1, [r3, #4] - 8002b44: 460b mov r3, r1 - 8002b46: 009b lsls r3, r3, #2 - 8002b48: 440b add r3, r1 - 8002b4a: 0099 lsls r1, r3, #2 - 8002b4c: 440b add r3, r1 - 8002b4e: fbb0 f3f3 udiv r3, r0, r3 - 8002b52: 3301 adds r3, #1 - 8002b54: f3c3 030b ubfx r3, r3, #0, #12 - 8002b58: f443 4340 orr.w r3, r3, #49152 @ 0xc000 - 8002b5c: 6879 ldr r1, [r7, #4] - 8002b5e: 6809 ldr r1, [r1, #0] - 8002b60: 4313 orrs r3, r2 - 8002b62: 61cb str r3, [r1, #28] + 8002ce0: 687b ldr r3, [r7, #4] + 8002ce2: 681b ldr r3, [r3, #0] + 8002ce4: 69db ldr r3, [r3, #28] + 8002ce6: f423 424f bic.w r2, r3, #52992 @ 0xcf00 + 8002cea: f022 02ff bic.w r2, r2, #255 @ 0xff + 8002cee: 687b ldr r3, [r7, #4] + 8002cf0: 685b ldr r3, [r3, #4] + 8002cf2: 495c ldr r1, [pc, #368] @ (8002e64 ) + 8002cf4: 428b cmp r3, r1 + 8002cf6: d819 bhi.n 8002d2c + 8002cf8: 68fb ldr r3, [r7, #12] + 8002cfa: 1e59 subs r1, r3, #1 + 8002cfc: 687b ldr r3, [r7, #4] + 8002cfe: 685b ldr r3, [r3, #4] + 8002d00: 005b lsls r3, r3, #1 + 8002d02: fbb1 f3f3 udiv r3, r1, r3 + 8002d06: 1c59 adds r1, r3, #1 + 8002d08: f640 73fc movw r3, #4092 @ 0xffc + 8002d0c: 400b ands r3, r1 + 8002d0e: 2b00 cmp r3, #0 + 8002d10: d00a beq.n 8002d28 + 8002d12: 68fb ldr r3, [r7, #12] + 8002d14: 1e59 subs r1, r3, #1 + 8002d16: 687b ldr r3, [r7, #4] + 8002d18: 685b ldr r3, [r3, #4] + 8002d1a: 005b lsls r3, r3, #1 + 8002d1c: fbb1 f3f3 udiv r3, r1, r3 + 8002d20: 3301 adds r3, #1 + 8002d22: f3c3 030b ubfx r3, r3, #0, #12 + 8002d26: e051 b.n 8002dcc + 8002d28: 2304 movs r3, #4 + 8002d2a: e04f b.n 8002dcc + 8002d2c: 687b ldr r3, [r7, #4] + 8002d2e: 689b ldr r3, [r3, #8] + 8002d30: 2b00 cmp r3, #0 + 8002d32: d111 bne.n 8002d58 + 8002d34: 68fb ldr r3, [r7, #12] + 8002d36: 1e58 subs r0, r3, #1 + 8002d38: 687b ldr r3, [r7, #4] + 8002d3a: 6859 ldr r1, [r3, #4] + 8002d3c: 460b mov r3, r1 + 8002d3e: 005b lsls r3, r3, #1 + 8002d40: 440b add r3, r1 + 8002d42: fbb0 f3f3 udiv r3, r0, r3 + 8002d46: 3301 adds r3, #1 + 8002d48: f3c3 030b ubfx r3, r3, #0, #12 + 8002d4c: 2b00 cmp r3, #0 + 8002d4e: bf0c ite eq + 8002d50: 2301 moveq r3, #1 + 8002d52: 2300 movne r3, #0 + 8002d54: b2db uxtb r3, r3 + 8002d56: e012 b.n 8002d7e + 8002d58: 68fb ldr r3, [r7, #12] + 8002d5a: 1e58 subs r0, r3, #1 + 8002d5c: 687b ldr r3, [r7, #4] + 8002d5e: 6859 ldr r1, [r3, #4] + 8002d60: 460b mov r3, r1 + 8002d62: 009b lsls r3, r3, #2 + 8002d64: 440b add r3, r1 + 8002d66: 0099 lsls r1, r3, #2 + 8002d68: 440b add r3, r1 + 8002d6a: fbb0 f3f3 udiv r3, r0, r3 + 8002d6e: 3301 adds r3, #1 + 8002d70: f3c3 030b ubfx r3, r3, #0, #12 + 8002d74: 2b00 cmp r3, #0 + 8002d76: bf0c ite eq + 8002d78: 2301 moveq r3, #1 + 8002d7a: 2300 movne r3, #0 + 8002d7c: b2db uxtb r3, r3 + 8002d7e: 2b00 cmp r3, #0 + 8002d80: d001 beq.n 8002d86 + 8002d82: 2301 movs r3, #1 + 8002d84: e022 b.n 8002dcc + 8002d86: 687b ldr r3, [r7, #4] + 8002d88: 689b ldr r3, [r3, #8] + 8002d8a: 2b00 cmp r3, #0 + 8002d8c: d10e bne.n 8002dac + 8002d8e: 68fb ldr r3, [r7, #12] + 8002d90: 1e58 subs r0, r3, #1 + 8002d92: 687b ldr r3, [r7, #4] + 8002d94: 6859 ldr r1, [r3, #4] + 8002d96: 460b mov r3, r1 + 8002d98: 005b lsls r3, r3, #1 + 8002d9a: 440b add r3, r1 + 8002d9c: fbb0 f3f3 udiv r3, r0, r3 + 8002da0: 3301 adds r3, #1 + 8002da2: f3c3 030b ubfx r3, r3, #0, #12 + 8002da6: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 8002daa: e00f b.n 8002dcc + 8002dac: 68fb ldr r3, [r7, #12] + 8002dae: 1e58 subs r0, r3, #1 + 8002db0: 687b ldr r3, [r7, #4] + 8002db2: 6859 ldr r1, [r3, #4] + 8002db4: 460b mov r3, r1 + 8002db6: 009b lsls r3, r3, #2 + 8002db8: 440b add r3, r1 + 8002dba: 0099 lsls r1, r3, #2 + 8002dbc: 440b add r3, r1 + 8002dbe: fbb0 f3f3 udiv r3, r0, r3 + 8002dc2: 3301 adds r3, #1 + 8002dc4: f3c3 030b ubfx r3, r3, #0, #12 + 8002dc8: f443 4340 orr.w r3, r3, #49152 @ 0xc000 + 8002dcc: 6879 ldr r1, [r7, #4] + 8002dce: 6809 ldr r1, [r1, #0] + 8002dd0: 4313 orrs r3, r2 + 8002dd2: 61cb str r3, [r1, #28] /*---------------------------- I2Cx CR1 Configuration ----------------------*/ /* Configure I2Cx: Generalcall and NoStretch mode */ MODIFY_REG(hi2c->Instance->CR1, (I2C_CR1_ENGC | I2C_CR1_NOSTRETCH), (hi2c->Init.GeneralCallMode | hi2c->Init.NoStretchMode)); - 8002b64: 687b ldr r3, [r7, #4] - 8002b66: 681b ldr r3, [r3, #0] - 8002b68: 681b ldr r3, [r3, #0] - 8002b6a: f023 01c0 bic.w r1, r3, #192 @ 0xc0 - 8002b6e: 687b ldr r3, [r7, #4] - 8002b70: 69da ldr r2, [r3, #28] - 8002b72: 687b ldr r3, [r7, #4] - 8002b74: 6a1b ldr r3, [r3, #32] - 8002b76: 431a orrs r2, r3 - 8002b78: 687b ldr r3, [r7, #4] - 8002b7a: 681b ldr r3, [r3, #0] - 8002b7c: 430a orrs r2, r1 - 8002b7e: 601a str r2, [r3, #0] + 8002dd4: 687b ldr r3, [r7, #4] + 8002dd6: 681b ldr r3, [r3, #0] + 8002dd8: 681b ldr r3, [r3, #0] + 8002dda: f023 01c0 bic.w r1, r3, #192 @ 0xc0 + 8002dde: 687b ldr r3, [r7, #4] + 8002de0: 69da ldr r2, [r3, #28] + 8002de2: 687b ldr r3, [r7, #4] + 8002de4: 6a1b ldr r3, [r3, #32] + 8002de6: 431a orrs r2, r3 + 8002de8: 687b ldr r3, [r7, #4] + 8002dea: 681b ldr r3, [r3, #0] + 8002dec: 430a orrs r2, r1 + 8002dee: 601a str r2, [r3, #0] /*---------------------------- I2Cx OAR1 Configuration ---------------------*/ /* Configure I2Cx: Own Address1 and addressing mode */ MODIFY_REG(hi2c->Instance->OAR1, (I2C_OAR1_ADDMODE | I2C_OAR1_ADD8_9 | I2C_OAR1_ADD1_7 | I2C_OAR1_ADD0), (hi2c->Init.AddressingMode | hi2c->Init.OwnAddress1)); - 8002b80: 687b ldr r3, [r7, #4] - 8002b82: 681b ldr r3, [r3, #0] - 8002b84: 689b ldr r3, [r3, #8] - 8002b86: f423 4303 bic.w r3, r3, #33536 @ 0x8300 - 8002b8a: f023 03ff bic.w r3, r3, #255 @ 0xff - 8002b8e: 687a ldr r2, [r7, #4] - 8002b90: 6911 ldr r1, [r2, #16] - 8002b92: 687a ldr r2, [r7, #4] - 8002b94: 68d2 ldr r2, [r2, #12] - 8002b96: 4311 orrs r1, r2 - 8002b98: 687a ldr r2, [r7, #4] - 8002b9a: 6812 ldr r2, [r2, #0] - 8002b9c: 430b orrs r3, r1 - 8002b9e: 6093 str r3, [r2, #8] + 8002df0: 687b ldr r3, [r7, #4] + 8002df2: 681b ldr r3, [r3, #0] + 8002df4: 689b ldr r3, [r3, #8] + 8002df6: f423 4303 bic.w r3, r3, #33536 @ 0x8300 + 8002dfa: f023 03ff bic.w r3, r3, #255 @ 0xff + 8002dfe: 687a ldr r2, [r7, #4] + 8002e00: 6911 ldr r1, [r2, #16] + 8002e02: 687a ldr r2, [r7, #4] + 8002e04: 68d2 ldr r2, [r2, #12] + 8002e06: 4311 orrs r1, r2 + 8002e08: 687a ldr r2, [r7, #4] + 8002e0a: 6812 ldr r2, [r2, #0] + 8002e0c: 430b orrs r3, r1 + 8002e0e: 6093 str r3, [r2, #8] /*---------------------------- I2Cx OAR2 Configuration ---------------------*/ /* Configure I2Cx: Dual mode and Own Address2 */ MODIFY_REG(hi2c->Instance->OAR2, (I2C_OAR2_ENDUAL | I2C_OAR2_ADD2), (hi2c->Init.DualAddressMode | hi2c->Init.OwnAddress2)); - 8002ba0: 687b ldr r3, [r7, #4] - 8002ba2: 681b ldr r3, [r3, #0] - 8002ba4: 68db ldr r3, [r3, #12] - 8002ba6: f023 01ff bic.w r1, r3, #255 @ 0xff - 8002baa: 687b ldr r3, [r7, #4] - 8002bac: 695a ldr r2, [r3, #20] - 8002bae: 687b ldr r3, [r7, #4] - 8002bb0: 699b ldr r3, [r3, #24] - 8002bb2: 431a orrs r2, r3 - 8002bb4: 687b ldr r3, [r7, #4] - 8002bb6: 681b ldr r3, [r3, #0] - 8002bb8: 430a orrs r2, r1 - 8002bba: 60da str r2, [r3, #12] + 8002e10: 687b ldr r3, [r7, #4] + 8002e12: 681b ldr r3, [r3, #0] + 8002e14: 68db ldr r3, [r3, #12] + 8002e16: f023 01ff bic.w r1, r3, #255 @ 0xff + 8002e1a: 687b ldr r3, [r7, #4] + 8002e1c: 695a ldr r2, [r3, #20] + 8002e1e: 687b ldr r3, [r7, #4] + 8002e20: 699b ldr r3, [r3, #24] + 8002e22: 431a orrs r2, r3 + 8002e24: 687b ldr r3, [r7, #4] + 8002e26: 681b ldr r3, [r3, #0] + 8002e28: 430a orrs r2, r1 + 8002e2a: 60da str r2, [r3, #12] /* Enable the selected I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 8002bbc: 687b ldr r3, [r7, #4] - 8002bbe: 681b ldr r3, [r3, #0] - 8002bc0: 681a ldr r2, [r3, #0] - 8002bc2: 687b ldr r3, [r7, #4] - 8002bc4: 681b ldr r3, [r3, #0] - 8002bc6: f042 0201 orr.w r2, r2, #1 - 8002bca: 601a str r2, [r3, #0] + 8002e2c: 687b ldr r3, [r7, #4] + 8002e2e: 681b ldr r3, [r3, #0] + 8002e30: 681a ldr r2, [r3, #0] + 8002e32: 687b ldr r3, [r7, #4] + 8002e34: 681b ldr r3, [r3, #0] + 8002e36: f042 0201 orr.w r2, r2, #1 + 8002e3a: 601a str r2, [r3, #0] hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 8002bcc: 687b ldr r3, [r7, #4] - 8002bce: 2200 movs r2, #0 - 8002bd0: 641a str r2, [r3, #64] @ 0x40 + 8002e3c: 687b ldr r3, [r7, #4] + 8002e3e: 2200 movs r2, #0 + 8002e40: 641a str r2, [r3, #64] @ 0x40 hi2c->State = HAL_I2C_STATE_READY; - 8002bd2: 687b ldr r3, [r7, #4] - 8002bd4: 2220 movs r2, #32 - 8002bd6: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8002e42: 687b ldr r3, [r7, #4] + 8002e44: 2220 movs r2, #32 + 8002e46: f883 203d strb.w r2, [r3, #61] @ 0x3d hi2c->PreviousState = I2C_STATE_NONE; - 8002bda: 687b ldr r3, [r7, #4] - 8002bdc: 2200 movs r2, #0 - 8002bde: 631a str r2, [r3, #48] @ 0x30 + 8002e4a: 687b ldr r3, [r7, #4] + 8002e4c: 2200 movs r2, #0 + 8002e4e: 631a str r2, [r3, #48] @ 0x30 hi2c->Mode = HAL_I2C_MODE_NONE; - 8002be0: 687b ldr r3, [r7, #4] - 8002be2: 2200 movs r2, #0 - 8002be4: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8002e50: 687b ldr r3, [r7, #4] + 8002e52: 2200 movs r2, #0 + 8002e54: f883 203e strb.w r2, [r3, #62] @ 0x3e return HAL_OK; - 8002be8: 2300 movs r3, #0 + 8002e58: 2300 movs r3, #0 } - 8002bea: 4618 mov r0, r3 - 8002bec: 3710 adds r7, #16 - 8002bee: 46bd mov sp, r7 - 8002bf0: bd80 pop {r7, pc} - 8002bf2: bf00 nop - 8002bf4: 000186a0 .word 0x000186a0 - 8002bf8: 001e847f .word 0x001e847f - 8002bfc: 003d08ff .word 0x003d08ff - 8002c00: 431bde83 .word 0x431bde83 - 8002c04: 10624dd3 .word 0x10624dd3 + 8002e5a: 4618 mov r0, r3 + 8002e5c: 3710 adds r7, #16 + 8002e5e: 46bd mov sp, r7 + 8002e60: bd80 pop {r7, pc} + 8002e62: bf00 nop + 8002e64: 000186a0 .word 0x000186a0 + 8002e68: 001e847f .word 0x001e847f + 8002e6c: 003d08ff .word 0x003d08ff + 8002e70: 431bde83 .word 0x431bde83 + 8002e74: 10624dd3 .word 0x10624dd3 -08002c08 : +08002e78 : * parameters in the PCD_InitTypeDef and initialize the associated handle. * @param hpcd PCD handle * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_Init(PCD_HandleTypeDef *hpcd) { - 8002c08: b580 push {r7, lr} - 8002c0a: b086 sub sp, #24 - 8002c0c: af02 add r7, sp, #8 - 8002c0e: 6078 str r0, [r7, #4] + 8002e78: b580 push {r7, lr} + 8002e7a: b086 sub sp, #24 + 8002e7c: af02 add r7, sp, #8 + 8002e7e: 6078 str r0, [r7, #4] const USB_OTG_GlobalTypeDef *USBx; #endif /* defined (USB_OTG_FS) */ uint8_t i; /* Check the PCD handle allocation */ if (hpcd == NULL) - 8002c10: 687b ldr r3, [r7, #4] - 8002c12: 2b00 cmp r3, #0 - 8002c14: d101 bne.n 8002c1a + 8002e80: 687b ldr r3, [r7, #4] + 8002e82: 2b00 cmp r3, #0 + 8002e84: d101 bne.n 8002e8a { return HAL_ERROR; - 8002c16: 2301 movs r3, #1 - 8002c18: e108 b.n 8002e2c + 8002e86: 2301 movs r3, #1 + 8002e88: e108 b.n 800309c /* Check the parameters */ assert_param(IS_PCD_ALL_INSTANCE(hpcd->Instance)); #if defined (USB_OTG_FS) USBx = hpcd->Instance; - 8002c1a: 687b ldr r3, [r7, #4] - 8002c1c: 681b ldr r3, [r3, #0] - 8002c1e: 60bb str r3, [r7, #8] + 8002e8a: 687b ldr r3, [r7, #4] + 8002e8c: 681b ldr r3, [r3, #0] + 8002e8e: 60bb str r3, [r7, #8] #endif /* defined (USB_OTG_FS) */ if (hpcd->State == HAL_PCD_STATE_RESET) - 8002c20: 687b ldr r3, [r7, #4] - 8002c22: f893 3495 ldrb.w r3, [r3, #1173] @ 0x495 - 8002c26: b2db uxtb r3, r3 - 8002c28: 2b00 cmp r3, #0 - 8002c2a: d106 bne.n 8002c3a + 8002e90: 687b ldr r3, [r7, #4] + 8002e92: f893 3495 ldrb.w r3, [r3, #1173] @ 0x495 + 8002e96: b2db uxtb r3, r3 + 8002e98: 2b00 cmp r3, #0 + 8002e9a: d106 bne.n 8002eaa { /* Allocate lock resource and initialize it */ hpcd->Lock = HAL_UNLOCKED; - 8002c2c: 687b ldr r3, [r7, #4] - 8002c2e: 2200 movs r2, #0 - 8002c30: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8002e9c: 687b ldr r3, [r7, #4] + 8002e9e: 2200 movs r2, #0 + 8002ea0: f883 2494 strb.w r2, [r3, #1172] @ 0x494 /* Init the low level hardware */ hpcd->MspInitCallback(hpcd); #else /* Init the low level hardware : GPIO, CLOCK, NVIC... */ HAL_PCD_MspInit(hpcd); - 8002c34: 6878 ldr r0, [r7, #4] - 8002c36: f007 fbb1 bl 800a39c + 8002ea4: 6878 ldr r0, [r7, #4] + 8002ea6: f007 fc65 bl 800a774 #endif /* (USE_HAL_PCD_REGISTER_CALLBACKS) */ } hpcd->State = HAL_PCD_STATE_BUSY; - 8002c3a: 687b ldr r3, [r7, #4] - 8002c3c: 2203 movs r2, #3 - 8002c3e: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002eaa: 687b ldr r3, [r7, #4] + 8002eac: 2203 movs r2, #3 + 8002eae: f883 2495 strb.w r2, [r3, #1173] @ 0x495 #if defined (USB_OTG_FS) /* Disable DMA mode for FS instance */ if (USBx == USB_OTG_FS) - 8002c42: 68bb ldr r3, [r7, #8] - 8002c44: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 - 8002c48: d102 bne.n 8002c50 + 8002eb2: 68bb ldr r3, [r7, #8] + 8002eb4: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 + 8002eb8: d102 bne.n 8002ec0 { hpcd->Init.dma_enable = 0U; - 8002c4a: 687b ldr r3, [r7, #4] - 8002c4c: 2200 movs r2, #0 - 8002c4e: 719a strb r2, [r3, #6] + 8002eba: 687b ldr r3, [r7, #4] + 8002ebc: 2200 movs r2, #0 + 8002ebe: 719a strb r2, [r3, #6] } #endif /* defined (USB_OTG_FS) */ /* Disable the Interrupts */ __HAL_PCD_DISABLE(hpcd); - 8002c50: 687b ldr r3, [r7, #4] - 8002c52: 681b ldr r3, [r3, #0] - 8002c54: 4618 mov r0, r3 - 8002c56: f004 faa6 bl 80071a6 + 8002ec0: 687b ldr r3, [r7, #4] + 8002ec2: 681b ldr r3, [r3, #0] + 8002ec4: 4618 mov r0, r3 + 8002ec6: f004 fb5a bl 800757e /*Init the Core (common init.) */ if (USB_CoreInit(hpcd->Instance, hpcd->Init) != HAL_OK) - 8002c5a: 687b ldr r3, [r7, #4] - 8002c5c: 6818 ldr r0, [r3, #0] - 8002c5e: 687b ldr r3, [r7, #4] - 8002c60: 7c1a ldrb r2, [r3, #16] - 8002c62: f88d 2000 strb.w r2, [sp] - 8002c66: 3304 adds r3, #4 - 8002c68: cb0e ldmia r3, {r1, r2, r3} - 8002c6a: f004 f985 bl 8006f78 - 8002c6e: 4603 mov r3, r0 - 8002c70: 2b00 cmp r3, #0 - 8002c72: d005 beq.n 8002c80 + 8002eca: 687b ldr r3, [r7, #4] + 8002ecc: 6818 ldr r0, [r3, #0] + 8002ece: 687b ldr r3, [r7, #4] + 8002ed0: 7c1a ldrb r2, [r3, #16] + 8002ed2: f88d 2000 strb.w r2, [sp] + 8002ed6: 3304 adds r3, #4 + 8002ed8: cb0e ldmia r3, {r1, r2, r3} + 8002eda: f004 fa39 bl 8007350 + 8002ede: 4603 mov r3, r0 + 8002ee0: 2b00 cmp r3, #0 + 8002ee2: d005 beq.n 8002ef0 { hpcd->State = HAL_PCD_STATE_ERROR; - 8002c74: 687b ldr r3, [r7, #4] - 8002c76: 2202 movs r2, #2 - 8002c78: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002ee4: 687b ldr r3, [r7, #4] + 8002ee6: 2202 movs r2, #2 + 8002ee8: f883 2495 strb.w r2, [r3, #1173] @ 0x495 return HAL_ERROR; - 8002c7c: 2301 movs r3, #1 - 8002c7e: e0d5 b.n 8002e2c + 8002eec: 2301 movs r3, #1 + 8002eee: e0d5 b.n 800309c } /* Force Device Mode */ if (USB_SetCurrentMode(hpcd->Instance, USB_DEVICE_MODE) != HAL_OK) - 8002c80: 687b ldr r3, [r7, #4] - 8002c82: 681b ldr r3, [r3, #0] - 8002c84: 2100 movs r1, #0 - 8002c86: 4618 mov r0, r3 - 8002c88: f004 fa9e bl 80071c8 - 8002c8c: 4603 mov r3, r0 - 8002c8e: 2b00 cmp r3, #0 - 8002c90: d005 beq.n 8002c9e + 8002ef0: 687b ldr r3, [r7, #4] + 8002ef2: 681b ldr r3, [r3, #0] + 8002ef4: 2100 movs r1, #0 + 8002ef6: 4618 mov r0, r3 + 8002ef8: f004 fb52 bl 80075a0 + 8002efc: 4603 mov r3, r0 + 8002efe: 2b00 cmp r3, #0 + 8002f00: d005 beq.n 8002f0e { hpcd->State = HAL_PCD_STATE_ERROR; - 8002c92: 687b ldr r3, [r7, #4] - 8002c94: 2202 movs r2, #2 - 8002c96: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002f02: 687b ldr r3, [r7, #4] + 8002f04: 2202 movs r2, #2 + 8002f06: f883 2495 strb.w r2, [r3, #1173] @ 0x495 return HAL_ERROR; - 8002c9a: 2301 movs r3, #1 - 8002c9c: e0c6 b.n 8002e2c + 8002f0a: 2301 movs r3, #1 + 8002f0c: e0c6 b.n 800309c } /* Init endpoints structures */ for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002c9e: 2300 movs r3, #0 - 8002ca0: 73fb strb r3, [r7, #15] - 8002ca2: e04a b.n 8002d3a + 8002f0e: 2300 movs r3, #0 + 8002f10: 73fb strb r3, [r7, #15] + 8002f12: e04a b.n 8002faa { /* Init ep structure */ hpcd->IN_ep[i].is_in = 1U; - 8002ca4: 7bfa ldrb r2, [r7, #15] - 8002ca6: 6879 ldr r1, [r7, #4] - 8002ca8: 4613 mov r3, r2 - 8002caa: 00db lsls r3, r3, #3 - 8002cac: 4413 add r3, r2 - 8002cae: 009b lsls r3, r3, #2 - 8002cb0: 440b add r3, r1 - 8002cb2: 3315 adds r3, #21 - 8002cb4: 2201 movs r2, #1 - 8002cb6: 701a strb r2, [r3, #0] + 8002f14: 7bfa ldrb r2, [r7, #15] + 8002f16: 6879 ldr r1, [r7, #4] + 8002f18: 4613 mov r3, r2 + 8002f1a: 00db lsls r3, r3, #3 + 8002f1c: 4413 add r3, r2 + 8002f1e: 009b lsls r3, r3, #2 + 8002f20: 440b add r3, r1 + 8002f22: 3315 adds r3, #21 + 8002f24: 2201 movs r2, #1 + 8002f26: 701a strb r2, [r3, #0] hpcd->IN_ep[i].num = i; - 8002cb8: 7bfa ldrb r2, [r7, #15] - 8002cba: 6879 ldr r1, [r7, #4] - 8002cbc: 4613 mov r3, r2 - 8002cbe: 00db lsls r3, r3, #3 - 8002cc0: 4413 add r3, r2 - 8002cc2: 009b lsls r3, r3, #2 - 8002cc4: 440b add r3, r1 - 8002cc6: 3314 adds r3, #20 - 8002cc8: 7bfa ldrb r2, [r7, #15] - 8002cca: 701a strb r2, [r3, #0] + 8002f28: 7bfa ldrb r2, [r7, #15] + 8002f2a: 6879 ldr r1, [r7, #4] + 8002f2c: 4613 mov r3, r2 + 8002f2e: 00db lsls r3, r3, #3 + 8002f30: 4413 add r3, r2 + 8002f32: 009b lsls r3, r3, #2 + 8002f34: 440b add r3, r1 + 8002f36: 3314 adds r3, #20 + 8002f38: 7bfa ldrb r2, [r7, #15] + 8002f3a: 701a strb r2, [r3, #0] hpcd->IN_ep[i].tx_fifo_num = i; - 8002ccc: 7bfa ldrb r2, [r7, #15] - 8002cce: 7bfb ldrb r3, [r7, #15] - 8002cd0: b298 uxth r0, r3 - 8002cd2: 6879 ldr r1, [r7, #4] - 8002cd4: 4613 mov r3, r2 - 8002cd6: 00db lsls r3, r3, #3 - 8002cd8: 4413 add r3, r2 - 8002cda: 009b lsls r3, r3, #2 - 8002cdc: 440b add r3, r1 - 8002cde: 332e adds r3, #46 @ 0x2e - 8002ce0: 4602 mov r2, r0 - 8002ce2: 801a strh r2, [r3, #0] + 8002f3c: 7bfa ldrb r2, [r7, #15] + 8002f3e: 7bfb ldrb r3, [r7, #15] + 8002f40: b298 uxth r0, r3 + 8002f42: 6879 ldr r1, [r7, #4] + 8002f44: 4613 mov r3, r2 + 8002f46: 00db lsls r3, r3, #3 + 8002f48: 4413 add r3, r2 + 8002f4a: 009b lsls r3, r3, #2 + 8002f4c: 440b add r3, r1 + 8002f4e: 332e adds r3, #46 @ 0x2e + 8002f50: 4602 mov r2, r0 + 8002f52: 801a strh r2, [r3, #0] /* Control until ep is activated */ hpcd->IN_ep[i].type = EP_TYPE_CTRL; - 8002ce4: 7bfa ldrb r2, [r7, #15] - 8002ce6: 6879 ldr r1, [r7, #4] - 8002ce8: 4613 mov r3, r2 - 8002cea: 00db lsls r3, r3, #3 - 8002cec: 4413 add r3, r2 - 8002cee: 009b lsls r3, r3, #2 - 8002cf0: 440b add r3, r1 - 8002cf2: 3318 adds r3, #24 - 8002cf4: 2200 movs r2, #0 - 8002cf6: 701a strb r2, [r3, #0] + 8002f54: 7bfa ldrb r2, [r7, #15] + 8002f56: 6879 ldr r1, [r7, #4] + 8002f58: 4613 mov r3, r2 + 8002f5a: 00db lsls r3, r3, #3 + 8002f5c: 4413 add r3, r2 + 8002f5e: 009b lsls r3, r3, #2 + 8002f60: 440b add r3, r1 + 8002f62: 3318 adds r3, #24 + 8002f64: 2200 movs r2, #0 + 8002f66: 701a strb r2, [r3, #0] hpcd->IN_ep[i].maxpacket = 0U; - 8002cf8: 7bfa ldrb r2, [r7, #15] - 8002cfa: 6879 ldr r1, [r7, #4] - 8002cfc: 4613 mov r3, r2 - 8002cfe: 00db lsls r3, r3, #3 - 8002d00: 4413 add r3, r2 - 8002d02: 009b lsls r3, r3, #2 - 8002d04: 440b add r3, r1 - 8002d06: 331c adds r3, #28 - 8002d08: 2200 movs r2, #0 - 8002d0a: 601a str r2, [r3, #0] + 8002f68: 7bfa ldrb r2, [r7, #15] + 8002f6a: 6879 ldr r1, [r7, #4] + 8002f6c: 4613 mov r3, r2 + 8002f6e: 00db lsls r3, r3, #3 + 8002f70: 4413 add r3, r2 + 8002f72: 009b lsls r3, r3, #2 + 8002f74: 440b add r3, r1 + 8002f76: 331c adds r3, #28 + 8002f78: 2200 movs r2, #0 + 8002f7a: 601a str r2, [r3, #0] hpcd->IN_ep[i].xfer_buff = 0U; - 8002d0c: 7bfa ldrb r2, [r7, #15] - 8002d0e: 6879 ldr r1, [r7, #4] - 8002d10: 4613 mov r3, r2 - 8002d12: 00db lsls r3, r3, #3 - 8002d14: 4413 add r3, r2 - 8002d16: 009b lsls r3, r3, #2 - 8002d18: 440b add r3, r1 - 8002d1a: 3320 adds r3, #32 - 8002d1c: 2200 movs r2, #0 - 8002d1e: 601a str r2, [r3, #0] + 8002f7c: 7bfa ldrb r2, [r7, #15] + 8002f7e: 6879 ldr r1, [r7, #4] + 8002f80: 4613 mov r3, r2 + 8002f82: 00db lsls r3, r3, #3 + 8002f84: 4413 add r3, r2 + 8002f86: 009b lsls r3, r3, #2 + 8002f88: 440b add r3, r1 + 8002f8a: 3320 adds r3, #32 + 8002f8c: 2200 movs r2, #0 + 8002f8e: 601a str r2, [r3, #0] hpcd->IN_ep[i].xfer_len = 0U; - 8002d20: 7bfa ldrb r2, [r7, #15] - 8002d22: 6879 ldr r1, [r7, #4] - 8002d24: 4613 mov r3, r2 - 8002d26: 00db lsls r3, r3, #3 - 8002d28: 4413 add r3, r2 - 8002d2a: 009b lsls r3, r3, #2 - 8002d2c: 440b add r3, r1 - 8002d2e: 3324 adds r3, #36 @ 0x24 - 8002d30: 2200 movs r2, #0 - 8002d32: 601a str r2, [r3, #0] + 8002f90: 7bfa ldrb r2, [r7, #15] + 8002f92: 6879 ldr r1, [r7, #4] + 8002f94: 4613 mov r3, r2 + 8002f96: 00db lsls r3, r3, #3 + 8002f98: 4413 add r3, r2 + 8002f9a: 009b lsls r3, r3, #2 + 8002f9c: 440b add r3, r1 + 8002f9e: 3324 adds r3, #36 @ 0x24 + 8002fa0: 2200 movs r2, #0 + 8002fa2: 601a str r2, [r3, #0] for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002d34: 7bfb ldrb r3, [r7, #15] - 8002d36: 3301 adds r3, #1 - 8002d38: 73fb strb r3, [r7, #15] - 8002d3a: 687b ldr r3, [r7, #4] - 8002d3c: 791b ldrb r3, [r3, #4] - 8002d3e: 7bfa ldrb r2, [r7, #15] - 8002d40: 429a cmp r2, r3 - 8002d42: d3af bcc.n 8002ca4 + 8002fa4: 7bfb ldrb r3, [r7, #15] + 8002fa6: 3301 adds r3, #1 + 8002fa8: 73fb strb r3, [r7, #15] + 8002faa: 687b ldr r3, [r7, #4] + 8002fac: 791b ldrb r3, [r3, #4] + 8002fae: 7bfa ldrb r2, [r7, #15] + 8002fb0: 429a cmp r2, r3 + 8002fb2: d3af bcc.n 8002f14 } for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002d44: 2300 movs r3, #0 - 8002d46: 73fb strb r3, [r7, #15] - 8002d48: e044 b.n 8002dd4 + 8002fb4: 2300 movs r3, #0 + 8002fb6: 73fb strb r3, [r7, #15] + 8002fb8: e044 b.n 8003044 { hpcd->OUT_ep[i].is_in = 0U; - 8002d4a: 7bfa ldrb r2, [r7, #15] - 8002d4c: 6879 ldr r1, [r7, #4] - 8002d4e: 4613 mov r3, r2 - 8002d50: 00db lsls r3, r3, #3 - 8002d52: 4413 add r3, r2 - 8002d54: 009b lsls r3, r3, #2 - 8002d56: 440b add r3, r1 - 8002d58: f203 2355 addw r3, r3, #597 @ 0x255 - 8002d5c: 2200 movs r2, #0 - 8002d5e: 701a strb r2, [r3, #0] + 8002fba: 7bfa ldrb r2, [r7, #15] + 8002fbc: 6879 ldr r1, [r7, #4] + 8002fbe: 4613 mov r3, r2 + 8002fc0: 00db lsls r3, r3, #3 + 8002fc2: 4413 add r3, r2 + 8002fc4: 009b lsls r3, r3, #2 + 8002fc6: 440b add r3, r1 + 8002fc8: f203 2355 addw r3, r3, #597 @ 0x255 + 8002fcc: 2200 movs r2, #0 + 8002fce: 701a strb r2, [r3, #0] hpcd->OUT_ep[i].num = i; - 8002d60: 7bfa ldrb r2, [r7, #15] - 8002d62: 6879 ldr r1, [r7, #4] - 8002d64: 4613 mov r3, r2 - 8002d66: 00db lsls r3, r3, #3 - 8002d68: 4413 add r3, r2 - 8002d6a: 009b lsls r3, r3, #2 - 8002d6c: 440b add r3, r1 - 8002d6e: f503 7315 add.w r3, r3, #596 @ 0x254 - 8002d72: 7bfa ldrb r2, [r7, #15] - 8002d74: 701a strb r2, [r3, #0] + 8002fd0: 7bfa ldrb r2, [r7, #15] + 8002fd2: 6879 ldr r1, [r7, #4] + 8002fd4: 4613 mov r3, r2 + 8002fd6: 00db lsls r3, r3, #3 + 8002fd8: 4413 add r3, r2 + 8002fda: 009b lsls r3, r3, #2 + 8002fdc: 440b add r3, r1 + 8002fde: f503 7315 add.w r3, r3, #596 @ 0x254 + 8002fe2: 7bfa ldrb r2, [r7, #15] + 8002fe4: 701a strb r2, [r3, #0] /* Control until ep is activated */ hpcd->OUT_ep[i].type = EP_TYPE_CTRL; - 8002d76: 7bfa ldrb r2, [r7, #15] - 8002d78: 6879 ldr r1, [r7, #4] - 8002d7a: 4613 mov r3, r2 - 8002d7c: 00db lsls r3, r3, #3 - 8002d7e: 4413 add r3, r2 - 8002d80: 009b lsls r3, r3, #2 - 8002d82: 440b add r3, r1 - 8002d84: f503 7316 add.w r3, r3, #600 @ 0x258 - 8002d88: 2200 movs r2, #0 - 8002d8a: 701a strb r2, [r3, #0] + 8002fe6: 7bfa ldrb r2, [r7, #15] + 8002fe8: 6879 ldr r1, [r7, #4] + 8002fea: 4613 mov r3, r2 + 8002fec: 00db lsls r3, r3, #3 + 8002fee: 4413 add r3, r2 + 8002ff0: 009b lsls r3, r3, #2 + 8002ff2: 440b add r3, r1 + 8002ff4: f503 7316 add.w r3, r3, #600 @ 0x258 + 8002ff8: 2200 movs r2, #0 + 8002ffa: 701a strb r2, [r3, #0] hpcd->OUT_ep[i].maxpacket = 0U; - 8002d8c: 7bfa ldrb r2, [r7, #15] - 8002d8e: 6879 ldr r1, [r7, #4] - 8002d90: 4613 mov r3, r2 - 8002d92: 00db lsls r3, r3, #3 - 8002d94: 4413 add r3, r2 - 8002d96: 009b lsls r3, r3, #2 - 8002d98: 440b add r3, r1 - 8002d9a: f503 7317 add.w r3, r3, #604 @ 0x25c - 8002d9e: 2200 movs r2, #0 - 8002da0: 601a str r2, [r3, #0] + 8002ffc: 7bfa ldrb r2, [r7, #15] + 8002ffe: 6879 ldr r1, [r7, #4] + 8003000: 4613 mov r3, r2 + 8003002: 00db lsls r3, r3, #3 + 8003004: 4413 add r3, r2 + 8003006: 009b lsls r3, r3, #2 + 8003008: 440b add r3, r1 + 800300a: f503 7317 add.w r3, r3, #604 @ 0x25c + 800300e: 2200 movs r2, #0 + 8003010: 601a str r2, [r3, #0] hpcd->OUT_ep[i].xfer_buff = 0U; - 8002da2: 7bfa ldrb r2, [r7, #15] - 8002da4: 6879 ldr r1, [r7, #4] - 8002da6: 4613 mov r3, r2 - 8002da8: 00db lsls r3, r3, #3 - 8002daa: 4413 add r3, r2 - 8002dac: 009b lsls r3, r3, #2 - 8002dae: 440b add r3, r1 - 8002db0: f503 7318 add.w r3, r3, #608 @ 0x260 - 8002db4: 2200 movs r2, #0 - 8002db6: 601a str r2, [r3, #0] + 8003012: 7bfa ldrb r2, [r7, #15] + 8003014: 6879 ldr r1, [r7, #4] + 8003016: 4613 mov r3, r2 + 8003018: 00db lsls r3, r3, #3 + 800301a: 4413 add r3, r2 + 800301c: 009b lsls r3, r3, #2 + 800301e: 440b add r3, r1 + 8003020: f503 7318 add.w r3, r3, #608 @ 0x260 + 8003024: 2200 movs r2, #0 + 8003026: 601a str r2, [r3, #0] hpcd->OUT_ep[i].xfer_len = 0U; - 8002db8: 7bfa ldrb r2, [r7, #15] - 8002dba: 6879 ldr r1, [r7, #4] - 8002dbc: 4613 mov r3, r2 - 8002dbe: 00db lsls r3, r3, #3 - 8002dc0: 4413 add r3, r2 - 8002dc2: 009b lsls r3, r3, #2 - 8002dc4: 440b add r3, r1 - 8002dc6: f503 7319 add.w r3, r3, #612 @ 0x264 - 8002dca: 2200 movs r2, #0 - 8002dcc: 601a str r2, [r3, #0] + 8003028: 7bfa ldrb r2, [r7, #15] + 800302a: 6879 ldr r1, [r7, #4] + 800302c: 4613 mov r3, r2 + 800302e: 00db lsls r3, r3, #3 + 8003030: 4413 add r3, r2 + 8003032: 009b lsls r3, r3, #2 + 8003034: 440b add r3, r1 + 8003036: f503 7319 add.w r3, r3, #612 @ 0x264 + 800303a: 2200 movs r2, #0 + 800303c: 601a str r2, [r3, #0] for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002dce: 7bfb ldrb r3, [r7, #15] - 8002dd0: 3301 adds r3, #1 - 8002dd2: 73fb strb r3, [r7, #15] - 8002dd4: 687b ldr r3, [r7, #4] - 8002dd6: 791b ldrb r3, [r3, #4] - 8002dd8: 7bfa ldrb r2, [r7, #15] - 8002dda: 429a cmp r2, r3 - 8002ddc: d3b5 bcc.n 8002d4a + 800303e: 7bfb ldrb r3, [r7, #15] + 8003040: 3301 adds r3, #1 + 8003042: 73fb strb r3, [r7, #15] + 8003044: 687b ldr r3, [r7, #4] + 8003046: 791b ldrb r3, [r3, #4] + 8003048: 7bfa ldrb r2, [r7, #15] + 800304a: 429a cmp r2, r3 + 800304c: d3b5 bcc.n 8002fba } /* Init Device */ if (USB_DevInit(hpcd->Instance, hpcd->Init) != HAL_OK) - 8002dde: 687b ldr r3, [r7, #4] - 8002de0: 6818 ldr r0, [r3, #0] - 8002de2: 687b ldr r3, [r7, #4] - 8002de4: 7c1a ldrb r2, [r3, #16] - 8002de6: f88d 2000 strb.w r2, [sp] - 8002dea: 3304 adds r3, #4 - 8002dec: cb0e ldmia r3, {r1, r2, r3} - 8002dee: f004 fa37 bl 8007260 - 8002df2: 4603 mov r3, r0 - 8002df4: 2b00 cmp r3, #0 - 8002df6: d005 beq.n 8002e04 + 800304e: 687b ldr r3, [r7, #4] + 8003050: 6818 ldr r0, [r3, #0] + 8003052: 687b ldr r3, [r7, #4] + 8003054: 7c1a ldrb r2, [r3, #16] + 8003056: f88d 2000 strb.w r2, [sp] + 800305a: 3304 adds r3, #4 + 800305c: cb0e ldmia r3, {r1, r2, r3} + 800305e: f004 faeb bl 8007638 + 8003062: 4603 mov r3, r0 + 8003064: 2b00 cmp r3, #0 + 8003066: d005 beq.n 8003074 { hpcd->State = HAL_PCD_STATE_ERROR; - 8002df8: 687b ldr r3, [r7, #4] - 8002dfa: 2202 movs r2, #2 - 8002dfc: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8003068: 687b ldr r3, [r7, #4] + 800306a: 2202 movs r2, #2 + 800306c: f883 2495 strb.w r2, [r3, #1173] @ 0x495 return HAL_ERROR; - 8002e00: 2301 movs r3, #1 - 8002e02: e013 b.n 8002e2c + 8003070: 2301 movs r3, #1 + 8003072: e013 b.n 800309c } hpcd->USB_Address = 0U; - 8002e04: 687b ldr r3, [r7, #4] - 8002e06: 2200 movs r2, #0 - 8002e08: 745a strb r2, [r3, #17] + 8003074: 687b ldr r3, [r7, #4] + 8003076: 2200 movs r2, #0 + 8003078: 745a strb r2, [r3, #17] hpcd->State = HAL_PCD_STATE_READY; - 8002e0a: 687b ldr r3, [r7, #4] - 8002e0c: 2201 movs r2, #1 - 8002e0e: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 800307a: 687b ldr r3, [r7, #4] + 800307c: 2201 movs r2, #1 + 800307e: f883 2495 strb.w r2, [r3, #1173] @ 0x495 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) \ || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) \ || defined(STM32F423xx) /* Activate LPM */ if (hpcd->Init.lpm_enable == 1U) - 8002e12: 687b ldr r3, [r7, #4] - 8002e14: 7b1b ldrb r3, [r3, #12] - 8002e16: 2b01 cmp r3, #1 - 8002e18: d102 bne.n 8002e20 + 8003082: 687b ldr r3, [r7, #4] + 8003084: 7b1b ldrb r3, [r3, #12] + 8003086: 2b01 cmp r3, #1 + 8003088: d102 bne.n 8003090 { (void)HAL_PCDEx_ActivateLPM(hpcd); - 8002e1a: 6878 ldr r0, [r7, #4] - 8002e1c: f001 f956 bl 80040cc + 800308a: 6878 ldr r0, [r7, #4] + 800308c: f001 f956 bl 800433c } #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx) */ (void)USB_DevDisconnect(hpcd->Instance); - 8002e20: 687b ldr r3, [r7, #4] - 8002e22: 681b ldr r3, [r3, #0] - 8002e24: 4618 mov r0, r3 - 8002e26: f005 fa74 bl 8008312 + 8003090: 687b ldr r3, [r7, #4] + 8003092: 681b ldr r3, [r3, #0] + 8003094: 4618 mov r0, r3 + 8003096: f005 fb28 bl 80086ea return HAL_OK; - 8002e2a: 2300 movs r3, #0 + 800309a: 2300 movs r3, #0 } - 8002e2c: 4618 mov r0, r3 - 8002e2e: 3710 adds r7, #16 - 8002e30: 46bd mov sp, r7 - 8002e32: bd80 pop {r7, pc} + 800309c: 4618 mov r0, r3 + 800309e: 3710 adds r7, #16 + 80030a0: 46bd mov sp, r7 + 80030a2: bd80 pop {r7, pc} -08002e34 : +080030a4 : * @brief Start the USB device * @param hpcd PCD handle * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_Start(PCD_HandleTypeDef *hpcd) { - 8002e34: b580 push {r7, lr} - 8002e36: b084 sub sp, #16 - 8002e38: af00 add r7, sp, #0 - 8002e3a: 6078 str r0, [r7, #4] + 80030a4: b580 push {r7, lr} + 80030a6: b084 sub sp, #16 + 80030a8: af00 add r7, sp, #0 + 80030aa: 6078 str r0, [r7, #4] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8002e3c: 687b ldr r3, [r7, #4] - 8002e3e: 681b ldr r3, [r3, #0] - 8002e40: 60fb str r3, [r7, #12] + 80030ac: 687b ldr r3, [r7, #4] + 80030ae: 681b ldr r3, [r3, #0] + 80030b0: 60fb str r3, [r7, #12] __HAL_LOCK(hpcd); - 8002e42: 687b ldr r3, [r7, #4] - 8002e44: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8002e48: 2b01 cmp r3, #1 - 8002e4a: d101 bne.n 8002e50 - 8002e4c: 2302 movs r3, #2 - 8002e4e: e022 b.n 8002e96 - 8002e50: 687b ldr r3, [r7, #4] - 8002e52: 2201 movs r2, #1 - 8002e54: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 80030b2: 687b ldr r3, [r7, #4] + 80030b4: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 80030b8: 2b01 cmp r3, #1 + 80030ba: d101 bne.n 80030c0 + 80030bc: 2302 movs r3, #2 + 80030be: e022 b.n 8003106 + 80030c0: 687b ldr r3, [r7, #4] + 80030c2: 2201 movs r2, #1 + 80030c4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 if (((USBx->GUSBCFG & USB_OTG_GUSBCFG_PHYSEL) != 0U) && - 8002e58: 68fb ldr r3, [r7, #12] - 8002e5a: 68db ldr r3, [r3, #12] - 8002e5c: f003 0340 and.w r3, r3, #64 @ 0x40 - 8002e60: 2b00 cmp r3, #0 - 8002e62: d009 beq.n 8002e78 + 80030c8: 68fb ldr r3, [r7, #12] + 80030ca: 68db ldr r3, [r3, #12] + 80030cc: f003 0340 and.w r3, r3, #64 @ 0x40 + 80030d0: 2b00 cmp r3, #0 + 80030d2: d009 beq.n 80030e8 (hpcd->Init.battery_charging_enable == 1U)) - 8002e64: 687b ldr r3, [r7, #4] - 8002e66: 7b5b ldrb r3, [r3, #13] + 80030d4: 687b ldr r3, [r7, #4] + 80030d6: 7b5b ldrb r3, [r3, #13] if (((USBx->GUSBCFG & USB_OTG_GUSBCFG_PHYSEL) != 0U) && - 8002e68: 2b01 cmp r3, #1 - 8002e6a: d105 bne.n 8002e78 + 80030d8: 2b01 cmp r3, #1 + 80030da: d105 bne.n 80030e8 { /* Enable USB Transceiver */ USBx->GCCFG |= USB_OTG_GCCFG_PWRDWN; - 8002e6c: 68fb ldr r3, [r7, #12] - 8002e6e: 6b9b ldr r3, [r3, #56] @ 0x38 - 8002e70: f443 3280 orr.w r2, r3, #65536 @ 0x10000 - 8002e74: 68fb ldr r3, [r7, #12] - 8002e76: 639a str r2, [r3, #56] @ 0x38 + 80030dc: 68fb ldr r3, [r7, #12] + 80030de: 6b9b ldr r3, [r3, #56] @ 0x38 + 80030e0: f443 3280 orr.w r2, r3, #65536 @ 0x10000 + 80030e4: 68fb ldr r3, [r7, #12] + 80030e6: 639a str r2, [r3, #56] @ 0x38 } __HAL_PCD_ENABLE(hpcd); - 8002e78: 687b ldr r3, [r7, #4] - 8002e7a: 681b ldr r3, [r3, #0] - 8002e7c: 4618 mov r0, r3 - 8002e7e: f004 f981 bl 8007184 + 80030e8: 687b ldr r3, [r7, #4] + 80030ea: 681b ldr r3, [r3, #0] + 80030ec: 4618 mov r0, r3 + 80030ee: f004 fa35 bl 800755c (void)USB_DevConnect(hpcd->Instance); - 8002e82: 687b ldr r3, [r7, #4] - 8002e84: 681b ldr r3, [r3, #0] - 8002e86: 4618 mov r0, r3 - 8002e88: f005 fa22 bl 80082d0 + 80030f2: 687b ldr r3, [r7, #4] + 80030f4: 681b ldr r3, [r3, #0] + 80030f6: 4618 mov r0, r3 + 80030f8: f005 fad6 bl 80086a8 __HAL_UNLOCK(hpcd); - 8002e8c: 687b ldr r3, [r7, #4] - 8002e8e: 2200 movs r2, #0 - 8002e90: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 80030fc: 687b ldr r3, [r7, #4] + 80030fe: 2200 movs r2, #0 + 8003100: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 8002e94: 2300 movs r3, #0 + 8003104: 2300 movs r3, #0 } - 8002e96: 4618 mov r0, r3 - 8002e98: 3710 adds r7, #16 - 8002e9a: 46bd mov sp, r7 - 8002e9c: bd80 pop {r7, pc} + 8003106: 4618 mov r0, r3 + 8003108: 3710 adds r7, #16 + 800310a: 46bd mov sp, r7 + 800310c: bd80 pop {r7, pc} -08002e9e : +0800310e : * @brief Handles PCD interrupt request. * @param hpcd PCD handle * @retval HAL status */ void HAL_PCD_IRQHandler(PCD_HandleTypeDef *hpcd) { - 8002e9e: b590 push {r4, r7, lr} - 8002ea0: b08d sub sp, #52 @ 0x34 - 8002ea2: af00 add r7, sp, #0 - 8002ea4: 6078 str r0, [r7, #4] + 800310e: b590 push {r4, r7, lr} + 8003110: b08d sub sp, #52 @ 0x34 + 8003112: af00 add r7, sp, #0 + 8003114: 6078 str r0, [r7, #4] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8002ea6: 687b ldr r3, [r7, #4] - 8002ea8: 681b ldr r3, [r3, #0] - 8002eaa: 623b str r3, [r7, #32] + 8003116: 687b ldr r3, [r7, #4] + 8003118: 681b ldr r3, [r3, #0] + 800311a: 623b str r3, [r7, #32] uint32_t USBx_BASE = (uint32_t)USBx; - 8002eac: 6a3b ldr r3, [r7, #32] - 8002eae: 61fb str r3, [r7, #28] + 800311c: 6a3b ldr r3, [r7, #32] + 800311e: 61fb str r3, [r7, #28] uint32_t epnum; uint32_t fifoemptymsk; uint32_t RegVal; /* ensure that we are in device mode */ if (USB_GetMode(hpcd->Instance) == USB_OTG_MODE_DEVICE) - 8002eb0: 687b ldr r3, [r7, #4] - 8002eb2: 681b ldr r3, [r3, #0] - 8002eb4: 4618 mov r0, r3 - 8002eb6: f005 fae0 bl 800847a - 8002eba: 4603 mov r3, r0 - 8002ebc: 2b00 cmp r3, #0 - 8002ebe: f040 84b9 bne.w 8003834 + 8003120: 687b ldr r3, [r7, #4] + 8003122: 681b ldr r3, [r3, #0] + 8003124: 4618 mov r0, r3 + 8003126: f005 fb94 bl 8008852 + 800312a: 4603 mov r3, r0 + 800312c: 2b00 cmp r3, #0 + 800312e: f040 84b9 bne.w 8003aa4 { /* avoid spurious interrupt */ if (__HAL_PCD_IS_INVALID_INTERRUPT(hpcd)) - 8002ec2: 687b ldr r3, [r7, #4] - 8002ec4: 681b ldr r3, [r3, #0] - 8002ec6: 4618 mov r0, r3 - 8002ec8: f005 fa44 bl 8008354 - 8002ecc: 4603 mov r3, r0 - 8002ece: 2b00 cmp r3, #0 - 8002ed0: f000 84af beq.w 8003832 + 8003132: 687b ldr r3, [r7, #4] + 8003134: 681b ldr r3, [r3, #0] + 8003136: 4618 mov r0, r3 + 8003138: f005 faf8 bl 800872c + 800313c: 4603 mov r3, r0 + 800313e: 2b00 cmp r3, #0 + 8003140: f000 84af beq.w 8003aa2 { return; } /* store current frame number */ hpcd->FrameNumber = (USBx_DEVICE->DSTS & USB_OTG_DSTS_FNSOF_Msk) >> USB_OTG_DSTS_FNSOF_Pos; - 8002ed4: 69fb ldr r3, [r7, #28] - 8002ed6: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8002eda: 689b ldr r3, [r3, #8] - 8002edc: 0a1b lsrs r3, r3, #8 - 8002ede: f3c3 020d ubfx r2, r3, #0, #14 - 8002ee2: 687b ldr r3, [r7, #4] - 8002ee4: f8c3 24d4 str.w r2, [r3, #1236] @ 0x4d4 + 8003144: 69fb ldr r3, [r7, #28] + 8003146: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800314a: 689b ldr r3, [r3, #8] + 800314c: 0a1b lsrs r3, r3, #8 + 800314e: f3c3 020d ubfx r2, r3, #0, #14 + 8003152: 687b ldr r3, [r7, #4] + 8003154: f8c3 24d4 str.w r2, [r3, #1236] @ 0x4d4 if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_MMIS)) - 8002ee8: 687b ldr r3, [r7, #4] - 8002eea: 681b ldr r3, [r3, #0] - 8002eec: 4618 mov r0, r3 - 8002eee: f005 fa31 bl 8008354 - 8002ef2: 4603 mov r3, r0 - 8002ef4: f003 0302 and.w r3, r3, #2 - 8002ef8: 2b02 cmp r3, #2 - 8002efa: d107 bne.n 8002f0c + 8003158: 687b ldr r3, [r7, #4] + 800315a: 681b ldr r3, [r3, #0] + 800315c: 4618 mov r0, r3 + 800315e: f005 fae5 bl 800872c + 8003162: 4603 mov r3, r0 + 8003164: f003 0302 and.w r3, r3, #2 + 8003168: 2b02 cmp r3, #2 + 800316a: d107 bne.n 800317c { /* incorrect mode, acknowledge the interrupt */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_MMIS); - 8002efc: 687b ldr r3, [r7, #4] - 8002efe: 681b ldr r3, [r3, #0] - 8002f00: 695a ldr r2, [r3, #20] - 8002f02: 687b ldr r3, [r7, #4] - 8002f04: 681b ldr r3, [r3, #0] - 8002f06: f002 0202 and.w r2, r2, #2 - 8002f0a: 615a str r2, [r3, #20] + 800316c: 687b ldr r3, [r7, #4] + 800316e: 681b ldr r3, [r3, #0] + 8003170: 695a ldr r2, [r3, #20] + 8003172: 687b ldr r3, [r7, #4] + 8003174: 681b ldr r3, [r3, #0] + 8003176: f002 0202 and.w r2, r2, #2 + 800317a: 615a str r2, [r3, #20] } /* Handle RxQLevel Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_RXFLVL)) - 8002f0c: 687b ldr r3, [r7, #4] - 8002f0e: 681b ldr r3, [r3, #0] - 8002f10: 4618 mov r0, r3 - 8002f12: f005 fa1f bl 8008354 - 8002f16: 4603 mov r3, r0 - 8002f18: f003 0310 and.w r3, r3, #16 - 8002f1c: 2b10 cmp r3, #16 - 8002f1e: d161 bne.n 8002fe4 + 800317c: 687b ldr r3, [r7, #4] + 800317e: 681b ldr r3, [r3, #0] + 8003180: 4618 mov r0, r3 + 8003182: f005 fad3 bl 800872c + 8003186: 4603 mov r3, r0 + 8003188: f003 0310 and.w r3, r3, #16 + 800318c: 2b10 cmp r3, #16 + 800318e: d161 bne.n 8003254 { USB_MASK_INTERRUPT(hpcd->Instance, USB_OTG_GINTSTS_RXFLVL); - 8002f20: 687b ldr r3, [r7, #4] - 8002f22: 681b ldr r3, [r3, #0] - 8002f24: 699a ldr r2, [r3, #24] - 8002f26: 687b ldr r3, [r7, #4] - 8002f28: 681b ldr r3, [r3, #0] - 8002f2a: f022 0210 bic.w r2, r2, #16 - 8002f2e: 619a str r2, [r3, #24] + 8003190: 687b ldr r3, [r7, #4] + 8003192: 681b ldr r3, [r3, #0] + 8003194: 699a ldr r2, [r3, #24] + 8003196: 687b ldr r3, [r7, #4] + 8003198: 681b ldr r3, [r3, #0] + 800319a: f022 0210 bic.w r2, r2, #16 + 800319e: 619a str r2, [r3, #24] RegVal = USBx->GRXSTSP; - 8002f30: 6a3b ldr r3, [r7, #32] - 8002f32: 6a1b ldr r3, [r3, #32] - 8002f34: 61bb str r3, [r7, #24] + 80031a0: 6a3b ldr r3, [r7, #32] + 80031a2: 6a1b ldr r3, [r3, #32] + 80031a4: 61bb str r3, [r7, #24] ep = &hpcd->OUT_ep[RegVal & USB_OTG_GRXSTSP_EPNUM]; - 8002f36: 69bb ldr r3, [r7, #24] - 8002f38: f003 020f and.w r2, r3, #15 - 8002f3c: 4613 mov r3, r2 - 8002f3e: 00db lsls r3, r3, #3 - 8002f40: 4413 add r3, r2 - 8002f42: 009b lsls r3, r3, #2 - 8002f44: f503 7314 add.w r3, r3, #592 @ 0x250 - 8002f48: 687a ldr r2, [r7, #4] - 8002f4a: 4413 add r3, r2 - 8002f4c: 3304 adds r3, #4 - 8002f4e: 617b str r3, [r7, #20] + 80031a6: 69bb ldr r3, [r7, #24] + 80031a8: f003 020f and.w r2, r3, #15 + 80031ac: 4613 mov r3, r2 + 80031ae: 00db lsls r3, r3, #3 + 80031b0: 4413 add r3, r2 + 80031b2: 009b lsls r3, r3, #2 + 80031b4: f503 7314 add.w r3, r3, #592 @ 0x250 + 80031b8: 687a ldr r2, [r7, #4] + 80031ba: 4413 add r3, r2 + 80031bc: 3304 adds r3, #4 + 80031be: 617b str r3, [r7, #20] if (((RegVal & USB_OTG_GRXSTSP_PKTSTS) >> 17) == STS_DATA_UPDT) - 8002f50: 69bb ldr r3, [r7, #24] - 8002f52: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 - 8002f56: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 - 8002f5a: d124 bne.n 8002fa6 + 80031c0: 69bb ldr r3, [r7, #24] + 80031c2: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 + 80031c6: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 + 80031ca: d124 bne.n 8003216 { if ((RegVal & USB_OTG_GRXSTSP_BCNT) != 0U) - 8002f5c: 69ba ldr r2, [r7, #24] - 8002f5e: f647 73f0 movw r3, #32752 @ 0x7ff0 - 8002f62: 4013 ands r3, r2 - 8002f64: 2b00 cmp r3, #0 - 8002f66: d035 beq.n 8002fd4 + 80031cc: 69ba ldr r2, [r7, #24] + 80031ce: f647 73f0 movw r3, #32752 @ 0x7ff0 + 80031d2: 4013 ands r3, r2 + 80031d4: 2b00 cmp r3, #0 + 80031d6: d035 beq.n 8003244 { (void)USB_ReadPacket(USBx, ep->xfer_buff, - 8002f68: 697b ldr r3, [r7, #20] - 8002f6a: 68d9 ldr r1, [r3, #12] + 80031d8: 697b ldr r3, [r7, #20] + 80031da: 68d9 ldr r1, [r3, #12] (uint16_t)((RegVal & USB_OTG_GRXSTSP_BCNT) >> 4)); - 8002f6c: 69bb ldr r3, [r7, #24] - 8002f6e: 091b lsrs r3, r3, #4 - 8002f70: b29b uxth r3, r3 + 80031dc: 69bb ldr r3, [r7, #24] + 80031de: 091b lsrs r3, r3, #4 + 80031e0: b29b uxth r3, r3 (void)USB_ReadPacket(USBx, ep->xfer_buff, - 8002f72: f3c3 030a ubfx r3, r3, #0, #11 - 8002f76: b29b uxth r3, r3 - 8002f78: 461a mov r2, r3 - 8002f7a: 6a38 ldr r0, [r7, #32] - 8002f7c: f005 f856 bl 800802c + 80031e2: f3c3 030a ubfx r3, r3, #0, #11 + 80031e6: b29b uxth r3, r3 + 80031e8: 461a mov r2, r3 + 80031ea: 6a38 ldr r0, [r7, #32] + 80031ec: f005 f90a bl 8008404 ep->xfer_buff += (RegVal & USB_OTG_GRXSTSP_BCNT) >> 4; - 8002f80: 697b ldr r3, [r7, #20] - 8002f82: 68da ldr r2, [r3, #12] - 8002f84: 69bb ldr r3, [r7, #24] - 8002f86: 091b lsrs r3, r3, #4 - 8002f88: f3c3 030a ubfx r3, r3, #0, #11 - 8002f8c: 441a add r2, r3 - 8002f8e: 697b ldr r3, [r7, #20] - 8002f90: 60da str r2, [r3, #12] + 80031f0: 697b ldr r3, [r7, #20] + 80031f2: 68da ldr r2, [r3, #12] + 80031f4: 69bb ldr r3, [r7, #24] + 80031f6: 091b lsrs r3, r3, #4 + 80031f8: f3c3 030a ubfx r3, r3, #0, #11 + 80031fc: 441a add r2, r3 + 80031fe: 697b ldr r3, [r7, #20] + 8003200: 60da str r2, [r3, #12] ep->xfer_count += (RegVal & USB_OTG_GRXSTSP_BCNT) >> 4; - 8002f92: 697b ldr r3, [r7, #20] - 8002f94: 695a ldr r2, [r3, #20] - 8002f96: 69bb ldr r3, [r7, #24] - 8002f98: 091b lsrs r3, r3, #4 - 8002f9a: f3c3 030a ubfx r3, r3, #0, #11 - 8002f9e: 441a add r2, r3 - 8002fa0: 697b ldr r3, [r7, #20] - 8002fa2: 615a str r2, [r3, #20] - 8002fa4: e016 b.n 8002fd4 + 8003202: 697b ldr r3, [r7, #20] + 8003204: 695a ldr r2, [r3, #20] + 8003206: 69bb ldr r3, [r7, #24] + 8003208: 091b lsrs r3, r3, #4 + 800320a: f3c3 030a ubfx r3, r3, #0, #11 + 800320e: 441a add r2, r3 + 8003210: 697b ldr r3, [r7, #20] + 8003212: 615a str r2, [r3, #20] + 8003214: e016 b.n 8003244 } } else if (((RegVal & USB_OTG_GRXSTSP_PKTSTS) >> 17) == STS_SETUP_UPDT) - 8002fa6: 69bb ldr r3, [r7, #24] - 8002fa8: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 - 8002fac: f5b3 2f40 cmp.w r3, #786432 @ 0xc0000 - 8002fb0: d110 bne.n 8002fd4 + 8003216: 69bb ldr r3, [r7, #24] + 8003218: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 + 800321c: f5b3 2f40 cmp.w r3, #786432 @ 0xc0000 + 8003220: d110 bne.n 8003244 { (void)USB_ReadPacket(USBx, (uint8_t *)hpcd->Setup, 8U); - 8002fb2: 687b ldr r3, [r7, #4] - 8002fb4: f203 439c addw r3, r3, #1180 @ 0x49c - 8002fb8: 2208 movs r2, #8 - 8002fba: 4619 mov r1, r3 - 8002fbc: 6a38 ldr r0, [r7, #32] - 8002fbe: f005 f835 bl 800802c + 8003222: 687b ldr r3, [r7, #4] + 8003224: f203 439c addw r3, r3, #1180 @ 0x49c + 8003228: 2208 movs r2, #8 + 800322a: 4619 mov r1, r3 + 800322c: 6a38 ldr r0, [r7, #32] + 800322e: f005 f8e9 bl 8008404 ep->xfer_count += (RegVal & USB_OTG_GRXSTSP_BCNT) >> 4; - 8002fc2: 697b ldr r3, [r7, #20] - 8002fc4: 695a ldr r2, [r3, #20] - 8002fc6: 69bb ldr r3, [r7, #24] - 8002fc8: 091b lsrs r3, r3, #4 - 8002fca: f3c3 030a ubfx r3, r3, #0, #11 - 8002fce: 441a add r2, r3 - 8002fd0: 697b ldr r3, [r7, #20] - 8002fd2: 615a str r2, [r3, #20] + 8003232: 697b ldr r3, [r7, #20] + 8003234: 695a ldr r2, [r3, #20] + 8003236: 69bb ldr r3, [r7, #24] + 8003238: 091b lsrs r3, r3, #4 + 800323a: f3c3 030a ubfx r3, r3, #0, #11 + 800323e: 441a add r2, r3 + 8003240: 697b ldr r3, [r7, #20] + 8003242: 615a str r2, [r3, #20] else { /* ... */ } USB_UNMASK_INTERRUPT(hpcd->Instance, USB_OTG_GINTSTS_RXFLVL); - 8002fd4: 687b ldr r3, [r7, #4] - 8002fd6: 681b ldr r3, [r3, #0] - 8002fd8: 699a ldr r2, [r3, #24] - 8002fda: 687b ldr r3, [r7, #4] - 8002fdc: 681b ldr r3, [r3, #0] - 8002fde: f042 0210 orr.w r2, r2, #16 - 8002fe2: 619a str r2, [r3, #24] + 8003244: 687b ldr r3, [r7, #4] + 8003246: 681b ldr r3, [r3, #0] + 8003248: 699a ldr r2, [r3, #24] + 800324a: 687b ldr r3, [r7, #4] + 800324c: 681b ldr r3, [r3, #0] + 800324e: f042 0210 orr.w r2, r2, #16 + 8003252: 619a str r2, [r3, #24] } if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_OEPINT)) - 8002fe4: 687b ldr r3, [r7, #4] - 8002fe6: 681b ldr r3, [r3, #0] - 8002fe8: 4618 mov r0, r3 - 8002fea: f005 f9b3 bl 8008354 - 8002fee: 4603 mov r3, r0 - 8002ff0: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 8002ff4: f5b3 2f00 cmp.w r3, #524288 @ 0x80000 - 8002ff8: f040 80a7 bne.w 800314a + 8003254: 687b ldr r3, [r7, #4] + 8003256: 681b ldr r3, [r3, #0] + 8003258: 4618 mov r0, r3 + 800325a: f005 fa67 bl 800872c + 800325e: 4603 mov r3, r0 + 8003260: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 8003264: f5b3 2f00 cmp.w r3, #524288 @ 0x80000 + 8003268: f040 80a7 bne.w 80033ba { epnum = 0U; - 8002ffc: 2300 movs r3, #0 - 8002ffe: 627b str r3, [r7, #36] @ 0x24 + 800326c: 2300 movs r3, #0 + 800326e: 627b str r3, [r7, #36] @ 0x24 /* Read in the device interrupt bits */ ep_intr = USB_ReadDevAllOutEpInterrupt(hpcd->Instance); - 8003000: 687b ldr r3, [r7, #4] - 8003002: 681b ldr r3, [r3, #0] - 8003004: 4618 mov r0, r3 - 8003006: f005 f9b8 bl 800837a - 800300a: 62b8 str r0, [r7, #40] @ 0x28 + 8003270: 687b ldr r3, [r7, #4] + 8003272: 681b ldr r3, [r3, #0] + 8003274: 4618 mov r0, r3 + 8003276: f005 fa6c bl 8008752 + 800327a: 62b8 str r0, [r7, #40] @ 0x28 while (ep_intr != 0U) - 800300c: e099 b.n 8003142 + 800327c: e099 b.n 80033b2 { if ((ep_intr & 0x1U) != 0U) - 800300e: 6abb ldr r3, [r7, #40] @ 0x28 - 8003010: f003 0301 and.w r3, r3, #1 - 8003014: 2b00 cmp r3, #0 - 8003016: f000 808e beq.w 8003136 + 800327e: 6abb ldr r3, [r7, #40] @ 0x28 + 8003280: f003 0301 and.w r3, r3, #1 + 8003284: 2b00 cmp r3, #0 + 8003286: f000 808e beq.w 80033a6 { epint = USB_ReadDevOutEPInterrupt(hpcd->Instance, (uint8_t)epnum); - 800301a: 687b ldr r3, [r7, #4] - 800301c: 681b ldr r3, [r3, #0] - 800301e: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003020: b2d2 uxtb r2, r2 - 8003022: 4611 mov r1, r2 - 8003024: 4618 mov r0, r3 - 8003026: f005 f9dc bl 80083e2 - 800302a: 6138 str r0, [r7, #16] + 800328a: 687b ldr r3, [r7, #4] + 800328c: 681b ldr r3, [r3, #0] + 800328e: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003290: b2d2 uxtb r2, r2 + 8003292: 4611 mov r1, r2 + 8003294: 4618 mov r0, r3 + 8003296: f005 fa90 bl 80087ba + 800329a: 6138 str r0, [r7, #16] if ((epint & USB_OTG_DOEPINT_XFRC) == USB_OTG_DOEPINT_XFRC) - 800302c: 693b ldr r3, [r7, #16] - 800302e: f003 0301 and.w r3, r3, #1 - 8003032: 2b00 cmp r3, #0 - 8003034: d00c beq.n 8003050 + 800329c: 693b ldr r3, [r7, #16] + 800329e: f003 0301 and.w r3, r3, #1 + 80032a2: 2b00 cmp r3, #0 + 80032a4: d00c beq.n 80032c0 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_XFRC); - 8003036: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003038: 015a lsls r2, r3, #5 - 800303a: 69fb ldr r3, [r7, #28] - 800303c: 4413 add r3, r2 - 800303e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003042: 461a mov r2, r3 - 8003044: 2301 movs r3, #1 - 8003046: 6093 str r3, [r2, #8] + 80032a6: 6a7b ldr r3, [r7, #36] @ 0x24 + 80032a8: 015a lsls r2, r3, #5 + 80032aa: 69fb ldr r3, [r7, #28] + 80032ac: 4413 add r3, r2 + 80032ae: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80032b2: 461a mov r2, r3 + 80032b4: 2301 movs r3, #1 + 80032b6: 6093 str r3, [r2, #8] (void)PCD_EP_OutXfrComplete_int(hpcd, epnum); - 8003048: 6a79 ldr r1, [r7, #36] @ 0x24 - 800304a: 6878 ldr r0, [r7, #4] - 800304c: f000 feb8 bl 8003dc0 + 80032b8: 6a79 ldr r1, [r7, #36] @ 0x24 + 80032ba: 6878 ldr r0, [r7, #4] + 80032bc: f000 feb8 bl 8004030 } if ((epint & USB_OTG_DOEPINT_STUP) == USB_OTG_DOEPINT_STUP) - 8003050: 693b ldr r3, [r7, #16] - 8003052: f003 0308 and.w r3, r3, #8 - 8003056: 2b00 cmp r3, #0 - 8003058: d00c beq.n 8003074 + 80032c0: 693b ldr r3, [r7, #16] + 80032c2: f003 0308 and.w r3, r3, #8 + 80032c6: 2b00 cmp r3, #0 + 80032c8: d00c beq.n 80032e4 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STUP); - 800305a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800305c: 015a lsls r2, r3, #5 - 800305e: 69fb ldr r3, [r7, #28] - 8003060: 4413 add r3, r2 - 8003062: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003066: 461a mov r2, r3 - 8003068: 2308 movs r3, #8 - 800306a: 6093 str r3, [r2, #8] + 80032ca: 6a7b ldr r3, [r7, #36] @ 0x24 + 80032cc: 015a lsls r2, r3, #5 + 80032ce: 69fb ldr r3, [r7, #28] + 80032d0: 4413 add r3, r2 + 80032d2: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80032d6: 461a mov r2, r3 + 80032d8: 2308 movs r3, #8 + 80032da: 6093 str r3, [r2, #8] /* Class B setup phase done for previous decoded setup */ (void)PCD_EP_OutSetupPacket_int(hpcd, epnum); - 800306c: 6a79 ldr r1, [r7, #36] @ 0x24 - 800306e: 6878 ldr r0, [r7, #4] - 8003070: f000 ff8e bl 8003f90 + 80032dc: 6a79 ldr r1, [r7, #36] @ 0x24 + 80032de: 6878 ldr r0, [r7, #4] + 80032e0: f000 ff8e bl 8004200 } if ((epint & USB_OTG_DOEPINT_OTEPDIS) == USB_OTG_DOEPINT_OTEPDIS) - 8003074: 693b ldr r3, [r7, #16] - 8003076: f003 0310 and.w r3, r3, #16 - 800307a: 2b00 cmp r3, #0 - 800307c: d008 beq.n 8003090 + 80032e4: 693b ldr r3, [r7, #16] + 80032e6: f003 0310 and.w r3, r3, #16 + 80032ea: 2b00 cmp r3, #0 + 80032ec: d008 beq.n 8003300 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPDIS); - 800307e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003080: 015a lsls r2, r3, #5 - 8003082: 69fb ldr r3, [r7, #28] - 8003084: 4413 add r3, r2 - 8003086: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800308a: 461a mov r2, r3 - 800308c: 2310 movs r3, #16 - 800308e: 6093 str r3, [r2, #8] + 80032ee: 6a7b ldr r3, [r7, #36] @ 0x24 + 80032f0: 015a lsls r2, r3, #5 + 80032f2: 69fb ldr r3, [r7, #28] + 80032f4: 4413 add r3, r2 + 80032f6: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80032fa: 461a mov r2, r3 + 80032fc: 2310 movs r3, #16 + 80032fe: 6093 str r3, [r2, #8] } /* Clear OUT Endpoint disable interrupt */ if ((epint & USB_OTG_DOEPINT_EPDISD) == USB_OTG_DOEPINT_EPDISD) - 8003090: 693b ldr r3, [r7, #16] - 8003092: f003 0302 and.w r3, r3, #2 - 8003096: 2b00 cmp r3, #0 - 8003098: d030 beq.n 80030fc + 8003300: 693b ldr r3, [r7, #16] + 8003302: f003 0302 and.w r3, r3, #2 + 8003306: 2b00 cmp r3, #0 + 8003308: d030 beq.n 800336c { if ((USBx->GINTSTS & USB_OTG_GINTSTS_BOUTNAKEFF) == USB_OTG_GINTSTS_BOUTNAKEFF) - 800309a: 6a3b ldr r3, [r7, #32] - 800309c: 695b ldr r3, [r3, #20] - 800309e: f003 0380 and.w r3, r3, #128 @ 0x80 - 80030a2: 2b80 cmp r3, #128 @ 0x80 - 80030a4: d109 bne.n 80030ba + 800330a: 6a3b ldr r3, [r7, #32] + 800330c: 695b ldr r3, [r3, #20] + 800330e: f003 0380 and.w r3, r3, #128 @ 0x80 + 8003312: 2b80 cmp r3, #128 @ 0x80 + 8003314: d109 bne.n 800332a { USBx_DEVICE->DCTL |= USB_OTG_DCTL_CGONAK; - 80030a6: 69fb ldr r3, [r7, #28] - 80030a8: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80030ac: 685b ldr r3, [r3, #4] - 80030ae: 69fa ldr r2, [r7, #28] - 80030b0: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80030b4: f443 6380 orr.w r3, r3, #1024 @ 0x400 - 80030b8: 6053 str r3, [r2, #4] + 8003316: 69fb ldr r3, [r7, #28] + 8003318: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800331c: 685b ldr r3, [r3, #4] + 800331e: 69fa ldr r2, [r7, #28] + 8003320: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8003324: f443 6380 orr.w r3, r3, #1024 @ 0x400 + 8003328: 6053 str r3, [r2, #4] } ep = &hpcd->OUT_ep[epnum]; - 80030ba: 6a7a ldr r2, [r7, #36] @ 0x24 - 80030bc: 4613 mov r3, r2 - 80030be: 00db lsls r3, r3, #3 - 80030c0: 4413 add r3, r2 - 80030c2: 009b lsls r3, r3, #2 - 80030c4: f503 7314 add.w r3, r3, #592 @ 0x250 - 80030c8: 687a ldr r2, [r7, #4] - 80030ca: 4413 add r3, r2 - 80030cc: 3304 adds r3, #4 - 80030ce: 617b str r3, [r7, #20] + 800332a: 6a7a ldr r2, [r7, #36] @ 0x24 + 800332c: 4613 mov r3, r2 + 800332e: 00db lsls r3, r3, #3 + 8003330: 4413 add r3, r2 + 8003332: 009b lsls r3, r3, #2 + 8003334: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003338: 687a ldr r2, [r7, #4] + 800333a: 4413 add r3, r2 + 800333c: 3304 adds r3, #4 + 800333e: 617b str r3, [r7, #20] if (ep->is_iso_incomplete == 1U) - 80030d0: 697b ldr r3, [r7, #20] - 80030d2: 78db ldrb r3, [r3, #3] - 80030d4: 2b01 cmp r3, #1 - 80030d6: d108 bne.n 80030ea + 8003340: 697b ldr r3, [r7, #20] + 8003342: 78db ldrb r3, [r3, #3] + 8003344: 2b01 cmp r3, #1 + 8003346: d108 bne.n 800335a { ep->is_iso_incomplete = 0U; - 80030d8: 697b ldr r3, [r7, #20] - 80030da: 2200 movs r2, #0 - 80030dc: 70da strb r2, [r3, #3] + 8003348: 697b ldr r3, [r7, #20] + 800334a: 2200 movs r2, #0 + 800334c: 70da strb r2, [r3, #3] #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ISOOUTIncompleteCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_ISOOUTIncompleteCallback(hpcd, (uint8_t)epnum); - 80030de: 6a7b ldr r3, [r7, #36] @ 0x24 - 80030e0: b2db uxtb r3, r3 - 80030e2: 4619 mov r1, r3 - 80030e4: 6878 ldr r0, [r7, #4] - 80030e6: f007 fa75 bl 800a5d4 + 800334e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003350: b2db uxtb r3, r3 + 8003352: 4619 mov r1, r3 + 8003354: 6878 ldr r0, [r7, #4] + 8003356: f007 fb29 bl 800a9ac #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_EPDISD); - 80030ea: 6a7b ldr r3, [r7, #36] @ 0x24 - 80030ec: 015a lsls r2, r3, #5 - 80030ee: 69fb ldr r3, [r7, #28] - 80030f0: 4413 add r3, r2 - 80030f2: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80030f6: 461a mov r2, r3 - 80030f8: 2302 movs r3, #2 - 80030fa: 6093 str r3, [r2, #8] + 800335a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800335c: 015a lsls r2, r3, #5 + 800335e: 69fb ldr r3, [r7, #28] + 8003360: 4413 add r3, r2 + 8003362: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003366: 461a mov r2, r3 + 8003368: 2302 movs r3, #2 + 800336a: 6093 str r3, [r2, #8] } /* Clear Status Phase Received interrupt */ if ((epint & USB_OTG_DOEPINT_OTEPSPR) == USB_OTG_DOEPINT_OTEPSPR) - 80030fc: 693b ldr r3, [r7, #16] - 80030fe: f003 0320 and.w r3, r3, #32 - 8003102: 2b00 cmp r3, #0 - 8003104: d008 beq.n 8003118 + 800336c: 693b ldr r3, [r7, #16] + 800336e: f003 0320 and.w r3, r3, #32 + 8003372: 2b00 cmp r3, #0 + 8003374: d008 beq.n 8003388 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPSPR); - 8003106: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003108: 015a lsls r2, r3, #5 - 800310a: 69fb ldr r3, [r7, #28] - 800310c: 4413 add r3, r2 - 800310e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003112: 461a mov r2, r3 - 8003114: 2320 movs r3, #32 - 8003116: 6093 str r3, [r2, #8] + 8003376: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003378: 015a lsls r2, r3, #5 + 800337a: 69fb ldr r3, [r7, #28] + 800337c: 4413 add r3, r2 + 800337e: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003382: 461a mov r2, r3 + 8003384: 2320 movs r3, #32 + 8003386: 6093 str r3, [r2, #8] } /* Clear OUT NAK interrupt */ if ((epint & USB_OTG_DOEPINT_NAK) == USB_OTG_DOEPINT_NAK) - 8003118: 693b ldr r3, [r7, #16] - 800311a: f403 5300 and.w r3, r3, #8192 @ 0x2000 - 800311e: 2b00 cmp r3, #0 - 8003120: d009 beq.n 8003136 + 8003388: 693b ldr r3, [r7, #16] + 800338a: f403 5300 and.w r3, r3, #8192 @ 0x2000 + 800338e: 2b00 cmp r3, #0 + 8003390: d009 beq.n 80033a6 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_NAK); - 8003122: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003124: 015a lsls r2, r3, #5 - 8003126: 69fb ldr r3, [r7, #28] - 8003128: 4413 add r3, r2 - 800312a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800312e: 461a mov r2, r3 - 8003130: f44f 5300 mov.w r3, #8192 @ 0x2000 - 8003134: 6093 str r3, [r2, #8] + 8003392: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003394: 015a lsls r2, r3, #5 + 8003396: 69fb ldr r3, [r7, #28] + 8003398: 4413 add r3, r2 + 800339a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800339e: 461a mov r2, r3 + 80033a0: f44f 5300 mov.w r3, #8192 @ 0x2000 + 80033a4: 6093 str r3, [r2, #8] } } epnum++; - 8003136: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003138: 3301 adds r3, #1 - 800313a: 627b str r3, [r7, #36] @ 0x24 + 80033a6: 6a7b ldr r3, [r7, #36] @ 0x24 + 80033a8: 3301 adds r3, #1 + 80033aa: 627b str r3, [r7, #36] @ 0x24 ep_intr >>= 1U; - 800313c: 6abb ldr r3, [r7, #40] @ 0x28 - 800313e: 085b lsrs r3, r3, #1 - 8003140: 62bb str r3, [r7, #40] @ 0x28 + 80033ac: 6abb ldr r3, [r7, #40] @ 0x28 + 80033ae: 085b lsrs r3, r3, #1 + 80033b0: 62bb str r3, [r7, #40] @ 0x28 while (ep_intr != 0U) - 8003142: 6abb ldr r3, [r7, #40] @ 0x28 - 8003144: 2b00 cmp r3, #0 - 8003146: f47f af62 bne.w 800300e + 80033b2: 6abb ldr r3, [r7, #40] @ 0x28 + 80033b4: 2b00 cmp r3, #0 + 80033b6: f47f af62 bne.w 800327e } } if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_IEPINT)) - 800314a: 687b ldr r3, [r7, #4] - 800314c: 681b ldr r3, [r3, #0] - 800314e: 4618 mov r0, r3 - 8003150: f005 f900 bl 8008354 - 8003154: 4603 mov r3, r0 - 8003156: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 800315a: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 - 800315e: f040 80db bne.w 8003318 + 80033ba: 687b ldr r3, [r7, #4] + 80033bc: 681b ldr r3, [r3, #0] + 80033be: 4618 mov r0, r3 + 80033c0: f005 f9b4 bl 800872c + 80033c4: 4603 mov r3, r0 + 80033c6: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 80033ca: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 + 80033ce: f040 80db bne.w 8003588 { /* Read in the device interrupt bits */ ep_intr = USB_ReadDevAllInEpInterrupt(hpcd->Instance); - 8003162: 687b ldr r3, [r7, #4] - 8003164: 681b ldr r3, [r3, #0] - 8003166: 4618 mov r0, r3 - 8003168: f005 f921 bl 80083ae - 800316c: 62b8 str r0, [r7, #40] @ 0x28 + 80033d2: 687b ldr r3, [r7, #4] + 80033d4: 681b ldr r3, [r3, #0] + 80033d6: 4618 mov r0, r3 + 80033d8: f005 f9d5 bl 8008786 + 80033dc: 62b8 str r0, [r7, #40] @ 0x28 epnum = 0U; - 800316e: 2300 movs r3, #0 - 8003170: 627b str r3, [r7, #36] @ 0x24 + 80033de: 2300 movs r3, #0 + 80033e0: 627b str r3, [r7, #36] @ 0x24 while (ep_intr != 0U) - 8003172: e0cd b.n 8003310 + 80033e2: e0cd b.n 8003580 { if ((ep_intr & 0x1U) != 0U) /* In ITR */ - 8003174: 6abb ldr r3, [r7, #40] @ 0x28 - 8003176: f003 0301 and.w r3, r3, #1 - 800317a: 2b00 cmp r3, #0 - 800317c: f000 80c2 beq.w 8003304 + 80033e4: 6abb ldr r3, [r7, #40] @ 0x28 + 80033e6: f003 0301 and.w r3, r3, #1 + 80033ea: 2b00 cmp r3, #0 + 80033ec: f000 80c2 beq.w 8003574 { epint = USB_ReadDevInEPInterrupt(hpcd->Instance, (uint8_t)epnum); - 8003180: 687b ldr r3, [r7, #4] - 8003182: 681b ldr r3, [r3, #0] - 8003184: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003186: b2d2 uxtb r2, r2 - 8003188: 4611 mov r1, r2 - 800318a: 4618 mov r0, r3 - 800318c: f005 f947 bl 800841e - 8003190: 6138 str r0, [r7, #16] + 80033f0: 687b ldr r3, [r7, #4] + 80033f2: 681b ldr r3, [r3, #0] + 80033f4: 6a7a ldr r2, [r7, #36] @ 0x24 + 80033f6: b2d2 uxtb r2, r2 + 80033f8: 4611 mov r1, r2 + 80033fa: 4618 mov r0, r3 + 80033fc: f005 f9fb bl 80087f6 + 8003400: 6138 str r0, [r7, #16] if ((epint & USB_OTG_DIEPINT_XFRC) == USB_OTG_DIEPINT_XFRC) - 8003192: 693b ldr r3, [r7, #16] - 8003194: f003 0301 and.w r3, r3, #1 - 8003198: 2b00 cmp r3, #0 - 800319a: d057 beq.n 800324c + 8003402: 693b ldr r3, [r7, #16] + 8003404: f003 0301 and.w r3, r3, #1 + 8003408: 2b00 cmp r3, #0 + 800340a: d057 beq.n 80034bc { fifoemptymsk = (uint32_t)(0x1UL << (epnum & EP_ADDR_MSK)); - 800319c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800319e: f003 030f and.w r3, r3, #15 - 80031a2: 2201 movs r2, #1 - 80031a4: fa02 f303 lsl.w r3, r2, r3 - 80031a8: 60fb str r3, [r7, #12] + 800340c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800340e: f003 030f and.w r3, r3, #15 + 8003412: 2201 movs r2, #1 + 8003414: fa02 f303 lsl.w r3, r2, r3 + 8003418: 60fb str r3, [r7, #12] USBx_DEVICE->DIEPEMPMSK &= ~fifoemptymsk; - 80031aa: 69fb ldr r3, [r7, #28] - 80031ac: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80031b0: 6b5a ldr r2, [r3, #52] @ 0x34 - 80031b2: 68fb ldr r3, [r7, #12] - 80031b4: 43db mvns r3, r3 - 80031b6: 69f9 ldr r1, [r7, #28] - 80031b8: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80031bc: 4013 ands r3, r2 - 80031be: 634b str r3, [r1, #52] @ 0x34 + 800341a: 69fb ldr r3, [r7, #28] + 800341c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003420: 6b5a ldr r2, [r3, #52] @ 0x34 + 8003422: 68fb ldr r3, [r7, #12] + 8003424: 43db mvns r3, r3 + 8003426: 69f9 ldr r1, [r7, #28] + 8003428: f501 6100 add.w r1, r1, #2048 @ 0x800 + 800342c: 4013 ands r3, r2 + 800342e: 634b str r3, [r1, #52] @ 0x34 CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_XFRC); - 80031c0: 6a7b ldr r3, [r7, #36] @ 0x24 - 80031c2: 015a lsls r2, r3, #5 - 80031c4: 69fb ldr r3, [r7, #28] - 80031c6: 4413 add r3, r2 - 80031c8: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80031cc: 461a mov r2, r3 - 80031ce: 2301 movs r3, #1 - 80031d0: 6093 str r3, [r2, #8] + 8003430: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003432: 015a lsls r2, r3, #5 + 8003434: 69fb ldr r3, [r7, #28] + 8003436: 4413 add r3, r2 + 8003438: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800343c: 461a mov r2, r3 + 800343e: 2301 movs r3, #1 + 8003440: 6093 str r3, [r2, #8] if (hpcd->Init.dma_enable == 1U) - 80031d2: 687b ldr r3, [r7, #4] - 80031d4: 799b ldrb r3, [r3, #6] - 80031d6: 2b01 cmp r3, #1 - 80031d8: d132 bne.n 8003240 + 8003442: 687b ldr r3, [r7, #4] + 8003444: 799b ldrb r3, [r3, #6] + 8003446: 2b01 cmp r3, #1 + 8003448: d132 bne.n 80034b0 { hpcd->IN_ep[epnum].xfer_buff += hpcd->IN_ep[epnum].maxpacket; - 80031da: 6879 ldr r1, [r7, #4] - 80031dc: 6a7a ldr r2, [r7, #36] @ 0x24 - 80031de: 4613 mov r3, r2 - 80031e0: 00db lsls r3, r3, #3 - 80031e2: 4413 add r3, r2 - 80031e4: 009b lsls r3, r3, #2 - 80031e6: 440b add r3, r1 - 80031e8: 3320 adds r3, #32 - 80031ea: 6819 ldr r1, [r3, #0] - 80031ec: 6878 ldr r0, [r7, #4] - 80031ee: 6a7a ldr r2, [r7, #36] @ 0x24 - 80031f0: 4613 mov r3, r2 - 80031f2: 00db lsls r3, r3, #3 - 80031f4: 4413 add r3, r2 - 80031f6: 009b lsls r3, r3, #2 - 80031f8: 4403 add r3, r0 - 80031fa: 331c adds r3, #28 - 80031fc: 681b ldr r3, [r3, #0] - 80031fe: 4419 add r1, r3 - 8003200: 6878 ldr r0, [r7, #4] - 8003202: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003204: 4613 mov r3, r2 - 8003206: 00db lsls r3, r3, #3 - 8003208: 4413 add r3, r2 - 800320a: 009b lsls r3, r3, #2 - 800320c: 4403 add r3, r0 - 800320e: 3320 adds r3, #32 - 8003210: 6019 str r1, [r3, #0] + 800344a: 6879 ldr r1, [r7, #4] + 800344c: 6a7a ldr r2, [r7, #36] @ 0x24 + 800344e: 4613 mov r3, r2 + 8003450: 00db lsls r3, r3, #3 + 8003452: 4413 add r3, r2 + 8003454: 009b lsls r3, r3, #2 + 8003456: 440b add r3, r1 + 8003458: 3320 adds r3, #32 + 800345a: 6819 ldr r1, [r3, #0] + 800345c: 6878 ldr r0, [r7, #4] + 800345e: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003460: 4613 mov r3, r2 + 8003462: 00db lsls r3, r3, #3 + 8003464: 4413 add r3, r2 + 8003466: 009b lsls r3, r3, #2 + 8003468: 4403 add r3, r0 + 800346a: 331c adds r3, #28 + 800346c: 681b ldr r3, [r3, #0] + 800346e: 4419 add r1, r3 + 8003470: 6878 ldr r0, [r7, #4] + 8003472: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003474: 4613 mov r3, r2 + 8003476: 00db lsls r3, r3, #3 + 8003478: 4413 add r3, r2 + 800347a: 009b lsls r3, r3, #2 + 800347c: 4403 add r3, r0 + 800347e: 3320 adds r3, #32 + 8003480: 6019 str r1, [r3, #0] /* this is ZLP, so prepare EP0 for next setup */ if ((epnum == 0U) && (hpcd->IN_ep[epnum].xfer_len == 0U)) - 8003212: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003214: 2b00 cmp r3, #0 - 8003216: d113 bne.n 8003240 - 8003218: 6879 ldr r1, [r7, #4] - 800321a: 6a7a ldr r2, [r7, #36] @ 0x24 - 800321c: 4613 mov r3, r2 - 800321e: 00db lsls r3, r3, #3 - 8003220: 4413 add r3, r2 - 8003222: 009b lsls r3, r3, #2 - 8003224: 440b add r3, r1 - 8003226: 3324 adds r3, #36 @ 0x24 - 8003228: 681b ldr r3, [r3, #0] - 800322a: 2b00 cmp r3, #0 - 800322c: d108 bne.n 8003240 + 8003482: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003484: 2b00 cmp r3, #0 + 8003486: d113 bne.n 80034b0 + 8003488: 6879 ldr r1, [r7, #4] + 800348a: 6a7a ldr r2, [r7, #36] @ 0x24 + 800348c: 4613 mov r3, r2 + 800348e: 00db lsls r3, r3, #3 + 8003490: 4413 add r3, r2 + 8003492: 009b lsls r3, r3, #2 + 8003494: 440b add r3, r1 + 8003496: 3324 adds r3, #36 @ 0x24 + 8003498: 681b ldr r3, [r3, #0] + 800349a: 2b00 cmp r3, #0 + 800349c: d108 bne.n 80034b0 { /* prepare to rx more setup packets */ (void)USB_EP0_OutStart(hpcd->Instance, 1U, (uint8_t *)hpcd->Setup); - 800322e: 687b ldr r3, [r7, #4] - 8003230: 6818 ldr r0, [r3, #0] - 8003232: 687b ldr r3, [r7, #4] - 8003234: f203 439c addw r3, r3, #1180 @ 0x49c - 8003238: 461a mov r2, r3 - 800323a: 2101 movs r1, #1 - 800323c: f005 f94e bl 80084dc + 800349e: 687b ldr r3, [r7, #4] + 80034a0: 6818 ldr r0, [r3, #0] + 80034a2: 687b ldr r3, [r7, #4] + 80034a4: f203 439c addw r3, r3, #1180 @ 0x49c + 80034a8: 461a mov r2, r3 + 80034aa: 2101 movs r1, #1 + 80034ac: f005 fa02 bl 80088b4 } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataInStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataInStageCallback(hpcd, (uint8_t)epnum); - 8003240: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003242: b2db uxtb r3, r3 - 8003244: 4619 mov r1, r3 - 8003246: 6878 ldr r0, [r7, #4] - 8003248: f007 f93f bl 800a4ca + 80034b0: 6a7b ldr r3, [r7, #36] @ 0x24 + 80034b2: b2db uxtb r3, r3 + 80034b4: 4619 mov r1, r3 + 80034b6: 6878 ldr r0, [r7, #4] + 80034b8: f007 f9f3 bl 800a8a2 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } if ((epint & USB_OTG_DIEPINT_TOC) == USB_OTG_DIEPINT_TOC) - 800324c: 693b ldr r3, [r7, #16] - 800324e: f003 0308 and.w r3, r3, #8 - 8003252: 2b00 cmp r3, #0 - 8003254: d008 beq.n 8003268 + 80034bc: 693b ldr r3, [r7, #16] + 80034be: f003 0308 and.w r3, r3, #8 + 80034c2: 2b00 cmp r3, #0 + 80034c4: d008 beq.n 80034d8 { CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_TOC); - 8003256: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003258: 015a lsls r2, r3, #5 - 800325a: 69fb ldr r3, [r7, #28] - 800325c: 4413 add r3, r2 - 800325e: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003262: 461a mov r2, r3 - 8003264: 2308 movs r3, #8 - 8003266: 6093 str r3, [r2, #8] + 80034c6: 6a7b ldr r3, [r7, #36] @ 0x24 + 80034c8: 015a lsls r2, r3, #5 + 80034ca: 69fb ldr r3, [r7, #28] + 80034cc: 4413 add r3, r2 + 80034ce: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80034d2: 461a mov r2, r3 + 80034d4: 2308 movs r3, #8 + 80034d6: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_ITTXFE) == USB_OTG_DIEPINT_ITTXFE) - 8003268: 693b ldr r3, [r7, #16] - 800326a: f003 0310 and.w r3, r3, #16 - 800326e: 2b00 cmp r3, #0 - 8003270: d008 beq.n 8003284 + 80034d8: 693b ldr r3, [r7, #16] + 80034da: f003 0310 and.w r3, r3, #16 + 80034de: 2b00 cmp r3, #0 + 80034e0: d008 beq.n 80034f4 { CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_ITTXFE); - 8003272: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003274: 015a lsls r2, r3, #5 - 8003276: 69fb ldr r3, [r7, #28] - 8003278: 4413 add r3, r2 - 800327a: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800327e: 461a mov r2, r3 - 8003280: 2310 movs r3, #16 - 8003282: 6093 str r3, [r2, #8] + 80034e2: 6a7b ldr r3, [r7, #36] @ 0x24 + 80034e4: 015a lsls r2, r3, #5 + 80034e6: 69fb ldr r3, [r7, #28] + 80034e8: 4413 add r3, r2 + 80034ea: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80034ee: 461a mov r2, r3 + 80034f0: 2310 movs r3, #16 + 80034f2: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_INEPNE) == USB_OTG_DIEPINT_INEPNE) - 8003284: 693b ldr r3, [r7, #16] - 8003286: f003 0340 and.w r3, r3, #64 @ 0x40 - 800328a: 2b00 cmp r3, #0 - 800328c: d008 beq.n 80032a0 + 80034f4: 693b ldr r3, [r7, #16] + 80034f6: f003 0340 and.w r3, r3, #64 @ 0x40 + 80034fa: 2b00 cmp r3, #0 + 80034fc: d008 beq.n 8003510 { CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_INEPNE); - 800328e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003290: 015a lsls r2, r3, #5 - 8003292: 69fb ldr r3, [r7, #28] - 8003294: 4413 add r3, r2 - 8003296: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800329a: 461a mov r2, r3 - 800329c: 2340 movs r3, #64 @ 0x40 - 800329e: 6093 str r3, [r2, #8] + 80034fe: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003500: 015a lsls r2, r3, #5 + 8003502: 69fb ldr r3, [r7, #28] + 8003504: 4413 add r3, r2 + 8003506: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800350a: 461a mov r2, r3 + 800350c: 2340 movs r3, #64 @ 0x40 + 800350e: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_EPDISD) == USB_OTG_DIEPINT_EPDISD) - 80032a0: 693b ldr r3, [r7, #16] - 80032a2: f003 0302 and.w r3, r3, #2 - 80032a6: 2b00 cmp r3, #0 - 80032a8: d023 beq.n 80032f2 + 8003510: 693b ldr r3, [r7, #16] + 8003512: f003 0302 and.w r3, r3, #2 + 8003516: 2b00 cmp r3, #0 + 8003518: d023 beq.n 8003562 { (void)USB_FlushTxFifo(USBx, epnum); - 80032aa: 6a79 ldr r1, [r7, #36] @ 0x24 - 80032ac: 6a38 ldr r0, [r7, #32] - 80032ae: f004 f935 bl 800751c + 800351a: 6a79 ldr r1, [r7, #36] @ 0x24 + 800351c: 6a38 ldr r0, [r7, #32] + 800351e: f004 f9e9 bl 80078f4 ep = &hpcd->IN_ep[epnum]; - 80032b2: 6a7a ldr r2, [r7, #36] @ 0x24 - 80032b4: 4613 mov r3, r2 - 80032b6: 00db lsls r3, r3, #3 - 80032b8: 4413 add r3, r2 - 80032ba: 009b lsls r3, r3, #2 - 80032bc: 3310 adds r3, #16 - 80032be: 687a ldr r2, [r7, #4] - 80032c0: 4413 add r3, r2 - 80032c2: 3304 adds r3, #4 - 80032c4: 617b str r3, [r7, #20] + 8003522: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003524: 4613 mov r3, r2 + 8003526: 00db lsls r3, r3, #3 + 8003528: 4413 add r3, r2 + 800352a: 009b lsls r3, r3, #2 + 800352c: 3310 adds r3, #16 + 800352e: 687a ldr r2, [r7, #4] + 8003530: 4413 add r3, r2 + 8003532: 3304 adds r3, #4 + 8003534: 617b str r3, [r7, #20] if (ep->is_iso_incomplete == 1U) - 80032c6: 697b ldr r3, [r7, #20] - 80032c8: 78db ldrb r3, [r3, #3] - 80032ca: 2b01 cmp r3, #1 - 80032cc: d108 bne.n 80032e0 + 8003536: 697b ldr r3, [r7, #20] + 8003538: 78db ldrb r3, [r3, #3] + 800353a: 2b01 cmp r3, #1 + 800353c: d108 bne.n 8003550 { ep->is_iso_incomplete = 0U; - 80032ce: 697b ldr r3, [r7, #20] - 80032d0: 2200 movs r2, #0 - 80032d2: 70da strb r2, [r3, #3] + 800353e: 697b ldr r3, [r7, #20] + 8003540: 2200 movs r2, #0 + 8003542: 70da strb r2, [r3, #3] #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ISOINIncompleteCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_ISOINIncompleteCallback(hpcd, (uint8_t)epnum); - 80032d4: 6a7b ldr r3, [r7, #36] @ 0x24 - 80032d6: b2db uxtb r3, r3 - 80032d8: 4619 mov r1, r3 - 80032da: 6878 ldr r0, [r7, #4] - 80032dc: f007 f98c bl 800a5f8 + 8003544: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003546: b2db uxtb r3, r3 + 8003548: 4619 mov r1, r3 + 800354a: 6878 ldr r0, [r7, #4] + 800354c: f007 fa40 bl 800a9d0 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_EPDISD); - 80032e0: 6a7b ldr r3, [r7, #36] @ 0x24 - 80032e2: 015a lsls r2, r3, #5 - 80032e4: 69fb ldr r3, [r7, #28] - 80032e6: 4413 add r3, r2 - 80032e8: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80032ec: 461a mov r2, r3 - 80032ee: 2302 movs r3, #2 - 80032f0: 6093 str r3, [r2, #8] + 8003550: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003552: 015a lsls r2, r3, #5 + 8003554: 69fb ldr r3, [r7, #28] + 8003556: 4413 add r3, r2 + 8003558: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800355c: 461a mov r2, r3 + 800355e: 2302 movs r3, #2 + 8003560: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_TXFE) == USB_OTG_DIEPINT_TXFE) - 80032f2: 693b ldr r3, [r7, #16] - 80032f4: f003 0380 and.w r3, r3, #128 @ 0x80 - 80032f8: 2b00 cmp r3, #0 - 80032fa: d003 beq.n 8003304 + 8003562: 693b ldr r3, [r7, #16] + 8003564: f003 0380 and.w r3, r3, #128 @ 0x80 + 8003568: 2b00 cmp r3, #0 + 800356a: d003 beq.n 8003574 { (void)PCD_WriteEmptyTxFifo(hpcd, epnum); - 80032fc: 6a79 ldr r1, [r7, #36] @ 0x24 - 80032fe: 6878 ldr r0, [r7, #4] - 8003300: f000 fcd2 bl 8003ca8 + 800356c: 6a79 ldr r1, [r7, #36] @ 0x24 + 800356e: 6878 ldr r0, [r7, #4] + 8003570: f000 fcd2 bl 8003f18 } } epnum++; - 8003304: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003306: 3301 adds r3, #1 - 8003308: 627b str r3, [r7, #36] @ 0x24 + 8003574: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003576: 3301 adds r3, #1 + 8003578: 627b str r3, [r7, #36] @ 0x24 ep_intr >>= 1U; - 800330a: 6abb ldr r3, [r7, #40] @ 0x28 - 800330c: 085b lsrs r3, r3, #1 - 800330e: 62bb str r3, [r7, #40] @ 0x28 + 800357a: 6abb ldr r3, [r7, #40] @ 0x28 + 800357c: 085b lsrs r3, r3, #1 + 800357e: 62bb str r3, [r7, #40] @ 0x28 while (ep_intr != 0U) - 8003310: 6abb ldr r3, [r7, #40] @ 0x28 - 8003312: 2b00 cmp r3, #0 - 8003314: f47f af2e bne.w 8003174 + 8003580: 6abb ldr r3, [r7, #40] @ 0x28 + 8003582: 2b00 cmp r3, #0 + 8003584: f47f af2e bne.w 80033e4 } } /* Handle Resume Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_WKUINT)) - 8003318: 687b ldr r3, [r7, #4] - 800331a: 681b ldr r3, [r3, #0] - 800331c: 4618 mov r0, r3 - 800331e: f005 f819 bl 8008354 - 8003322: 4603 mov r3, r0 - 8003324: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8003328: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 800332c: d122 bne.n 8003374 + 8003588: 687b ldr r3, [r7, #4] + 800358a: 681b ldr r3, [r3, #0] + 800358c: 4618 mov r0, r3 + 800358e: f005 f8cd bl 800872c + 8003592: 4603 mov r3, r0 + 8003594: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8003598: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 800359c: d122 bne.n 80035e4 { /* Clear the Remote Wake-up Signaling */ USBx_DEVICE->DCTL &= ~USB_OTG_DCTL_RWUSIG; - 800332e: 69fb ldr r3, [r7, #28] - 8003330: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003334: 685b ldr r3, [r3, #4] - 8003336: 69fa ldr r2, [r7, #28] - 8003338: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800333c: f023 0301 bic.w r3, r3, #1 - 8003340: 6053 str r3, [r2, #4] + 800359e: 69fb ldr r3, [r7, #28] + 80035a0: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80035a4: 685b ldr r3, [r3, #4] + 80035a6: 69fa ldr r2, [r7, #28] + 80035a8: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80035ac: f023 0301 bic.w r3, r3, #1 + 80035b0: 6053 str r3, [r2, #4] if (hpcd->LPM_State == LPM_L1) - 8003342: 687b ldr r3, [r7, #4] - 8003344: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc - 8003348: 2b01 cmp r3, #1 - 800334a: d108 bne.n 800335e + 80035b2: 687b ldr r3, [r7, #4] + 80035b4: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc + 80035b8: 2b01 cmp r3, #1 + 80035ba: d108 bne.n 80035ce { hpcd->LPM_State = LPM_L0; - 800334c: 687b ldr r3, [r7, #4] - 800334e: 2200 movs r2, #0 - 8003350: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc + 80035bc: 687b ldr r3, [r7, #4] + 80035be: 2200 movs r2, #0 + 80035c0: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->LPMCallback(hpcd, PCD_LPM_L0_ACTIVE); #else HAL_PCDEx_LPM_Callback(hpcd, PCD_LPM_L0_ACTIVE); - 8003354: 2100 movs r1, #0 - 8003356: 6878 ldr r0, [r7, #4] - 8003358: f007 faf4 bl 800a944 - 800335c: e002 b.n 8003364 + 80035c4: 2100 movs r1, #0 + 80035c6: 6878 ldr r0, [r7, #4] + 80035c8: f007 fba8 bl 800ad1c + 80035cc: e002 b.n 80035d4 else { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ResumeCallback(hpcd); #else HAL_PCD_ResumeCallback(hpcd); - 800335e: 6878 ldr r0, [r7, #4] - 8003360: f007 f92a bl 800a5b8 + 80035ce: 6878 ldr r0, [r7, #4] + 80035d0: f007 f9de bl 800a990 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_WKUINT); - 8003364: 687b ldr r3, [r7, #4] - 8003366: 681b ldr r3, [r3, #0] - 8003368: 695a ldr r2, [r3, #20] - 800336a: 687b ldr r3, [r7, #4] - 800336c: 681b ldr r3, [r3, #0] - 800336e: f002 4200 and.w r2, r2, #2147483648 @ 0x80000000 - 8003372: 615a str r2, [r3, #20] + 80035d4: 687b ldr r3, [r7, #4] + 80035d6: 681b ldr r3, [r3, #0] + 80035d8: 695a ldr r2, [r3, #20] + 80035da: 687b ldr r3, [r7, #4] + 80035dc: 681b ldr r3, [r3, #0] + 80035de: f002 4200 and.w r2, r2, #2147483648 @ 0x80000000 + 80035e2: 615a str r2, [r3, #20] } /* Handle Suspend Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_USBSUSP)) - 8003374: 687b ldr r3, [r7, #4] - 8003376: 681b ldr r3, [r3, #0] - 8003378: 4618 mov r0, r3 - 800337a: f004 ffeb bl 8008354 - 800337e: 4603 mov r3, r0 - 8003380: f403 6300 and.w r3, r3, #2048 @ 0x800 - 8003384: f5b3 6f00 cmp.w r3, #2048 @ 0x800 - 8003388: d112 bne.n 80033b0 + 80035e4: 687b ldr r3, [r7, #4] + 80035e6: 681b ldr r3, [r3, #0] + 80035e8: 4618 mov r0, r3 + 80035ea: f005 f89f bl 800872c + 80035ee: 4603 mov r3, r0 + 80035f0: f403 6300 and.w r3, r3, #2048 @ 0x800 + 80035f4: f5b3 6f00 cmp.w r3, #2048 @ 0x800 + 80035f8: d112 bne.n 8003620 { if ((USBx_DEVICE->DSTS & USB_OTG_DSTS_SUSPSTS) == USB_OTG_DSTS_SUSPSTS) - 800338a: 69fb ldr r3, [r7, #28] - 800338c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003390: 689b ldr r3, [r3, #8] - 8003392: f003 0301 and.w r3, r3, #1 - 8003396: 2b01 cmp r3, #1 - 8003398: d102 bne.n 80033a0 + 80035fa: 69fb ldr r3, [r7, #28] + 80035fc: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003600: 689b ldr r3, [r3, #8] + 8003602: f003 0301 and.w r3, r3, #1 + 8003606: 2b01 cmp r3, #1 + 8003608: d102 bne.n 8003610 { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SuspendCallback(hpcd); #else HAL_PCD_SuspendCallback(hpcd); - 800339a: 6878 ldr r0, [r7, #4] - 800339c: f007 f8e6 bl 800a56c + 800360a: 6878 ldr r0, [r7, #4] + 800360c: f007 f99a bl 800a944 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_USBSUSP); - 80033a0: 687b ldr r3, [r7, #4] - 80033a2: 681b ldr r3, [r3, #0] - 80033a4: 695a ldr r2, [r3, #20] - 80033a6: 687b ldr r3, [r7, #4] - 80033a8: 681b ldr r3, [r3, #0] - 80033aa: f402 6200 and.w r2, r2, #2048 @ 0x800 - 80033ae: 615a str r2, [r3, #20] + 8003610: 687b ldr r3, [r7, #4] + 8003612: 681b ldr r3, [r3, #0] + 8003614: 695a ldr r2, [r3, #20] + 8003616: 687b ldr r3, [r7, #4] + 8003618: 681b ldr r3, [r3, #0] + 800361a: f402 6200 and.w r2, r2, #2048 @ 0x800 + 800361e: 615a str r2, [r3, #20] } #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) \ || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) \ || defined(STM32F423xx) /* Handle LPM Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_LPMINT)) - 80033b0: 687b ldr r3, [r7, #4] - 80033b2: 681b ldr r3, [r3, #0] - 80033b4: 4618 mov r0, r3 - 80033b6: f004 ffcd bl 8008354 - 80033ba: 4603 mov r3, r0 - 80033bc: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 80033c0: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 - 80033c4: d121 bne.n 800340a + 8003620: 687b ldr r3, [r7, #4] + 8003622: 681b ldr r3, [r3, #0] + 8003624: 4618 mov r0, r3 + 8003626: f005 f881 bl 800872c + 800362a: 4603 mov r3, r0 + 800362c: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 8003630: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 + 8003634: d121 bne.n 800367a { __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_LPMINT); - 80033c6: 687b ldr r3, [r7, #4] - 80033c8: 681b ldr r3, [r3, #0] - 80033ca: 695a ldr r2, [r3, #20] - 80033cc: 687b ldr r3, [r7, #4] - 80033ce: 681b ldr r3, [r3, #0] - 80033d0: f002 6200 and.w r2, r2, #134217728 @ 0x8000000 - 80033d4: 615a str r2, [r3, #20] + 8003636: 687b ldr r3, [r7, #4] + 8003638: 681b ldr r3, [r3, #0] + 800363a: 695a ldr r2, [r3, #20] + 800363c: 687b ldr r3, [r7, #4] + 800363e: 681b ldr r3, [r3, #0] + 8003640: f002 6200 and.w r2, r2, #134217728 @ 0x8000000 + 8003644: 615a str r2, [r3, #20] if (hpcd->LPM_State == LPM_L0) - 80033d6: 687b ldr r3, [r7, #4] - 80033d8: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc - 80033dc: 2b00 cmp r3, #0 - 80033de: d111 bne.n 8003404 + 8003646: 687b ldr r3, [r7, #4] + 8003648: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc + 800364c: 2b00 cmp r3, #0 + 800364e: d111 bne.n 8003674 { hpcd->LPM_State = LPM_L1; - 80033e0: 687b ldr r3, [r7, #4] - 80033e2: 2201 movs r2, #1 - 80033e4: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc + 8003650: 687b ldr r3, [r7, #4] + 8003652: 2201 movs r2, #1 + 8003654: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc hpcd->BESL = (hpcd->Instance->GLPMCFG & USB_OTG_GLPMCFG_BESL) >> 2U; - 80033e8: 687b ldr r3, [r7, #4] - 80033ea: 681b ldr r3, [r3, #0] - 80033ec: 6d5b ldr r3, [r3, #84] @ 0x54 - 80033ee: 089b lsrs r3, r3, #2 - 80033f0: f003 020f and.w r2, r3, #15 - 80033f4: 687b ldr r3, [r7, #4] - 80033f6: f8c3 24d0 str.w r2, [r3, #1232] @ 0x4d0 + 8003658: 687b ldr r3, [r7, #4] + 800365a: 681b ldr r3, [r3, #0] + 800365c: 6d5b ldr r3, [r3, #84] @ 0x54 + 800365e: 089b lsrs r3, r3, #2 + 8003660: f003 020f and.w r2, r3, #15 + 8003664: 687b ldr r3, [r7, #4] + 8003666: f8c3 24d0 str.w r2, [r3, #1232] @ 0x4d0 #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->LPMCallback(hpcd, PCD_LPM_L1_ACTIVE); #else HAL_PCDEx_LPM_Callback(hpcd, PCD_LPM_L1_ACTIVE); - 80033fa: 2101 movs r1, #1 - 80033fc: 6878 ldr r0, [r7, #4] - 80033fe: f007 faa1 bl 800a944 - 8003402: e002 b.n 800340a + 800366a: 2101 movs r1, #1 + 800366c: 6878 ldr r0, [r7, #4] + 800366e: f007 fb55 bl 800ad1c + 8003672: e002 b.n 800367a else { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SuspendCallback(hpcd); #else HAL_PCD_SuspendCallback(hpcd); - 8003404: 6878 ldr r0, [r7, #4] - 8003406: f007 f8b1 bl 800a56c + 8003674: 6878 ldr r0, [r7, #4] + 8003676: f007 f965 bl 800a944 } #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx) */ /* Handle Reset Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_USBRST)) - 800340a: 687b ldr r3, [r7, #4] - 800340c: 681b ldr r3, [r3, #0] - 800340e: 4618 mov r0, r3 - 8003410: f004 ffa0 bl 8008354 - 8003414: 4603 mov r3, r0 - 8003416: f403 5380 and.w r3, r3, #4096 @ 0x1000 - 800341a: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 800341e: f040 80b7 bne.w 8003590 + 800367a: 687b ldr r3, [r7, #4] + 800367c: 681b ldr r3, [r3, #0] + 800367e: 4618 mov r0, r3 + 8003680: f005 f854 bl 800872c + 8003684: 4603 mov r3, r0 + 8003686: f403 5380 and.w r3, r3, #4096 @ 0x1000 + 800368a: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 800368e: f040 80b7 bne.w 8003800 { USBx_DEVICE->DCTL &= ~USB_OTG_DCTL_RWUSIG; - 8003422: 69fb ldr r3, [r7, #28] - 8003424: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003428: 685b ldr r3, [r3, #4] - 800342a: 69fa ldr r2, [r7, #28] - 800342c: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003430: f023 0301 bic.w r3, r3, #1 - 8003434: 6053 str r3, [r2, #4] + 8003692: 69fb ldr r3, [r7, #28] + 8003694: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003698: 685b ldr r3, [r3, #4] + 800369a: 69fa ldr r2, [r7, #28] + 800369c: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80036a0: f023 0301 bic.w r3, r3, #1 + 80036a4: 6053 str r3, [r2, #4] (void)USB_FlushTxFifo(hpcd->Instance, 0x10U); - 8003436: 687b ldr r3, [r7, #4] - 8003438: 681b ldr r3, [r3, #0] - 800343a: 2110 movs r1, #16 - 800343c: 4618 mov r0, r3 - 800343e: f004 f86d bl 800751c + 80036a6: 687b ldr r3, [r7, #4] + 80036a8: 681b ldr r3, [r3, #0] + 80036aa: 2110 movs r1, #16 + 80036ac: 4618 mov r0, r3 + 80036ae: f004 f921 bl 80078f4 for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8003442: 2300 movs r3, #0 - 8003444: 62fb str r3, [r7, #44] @ 0x2c - 8003446: e046 b.n 80034d6 + 80036b2: 2300 movs r3, #0 + 80036b4: 62fb str r3, [r7, #44] @ 0x2c + 80036b6: e046 b.n 8003746 { USBx_INEP(i)->DIEPINT = 0xFB7FU; - 8003448: 6afb ldr r3, [r7, #44] @ 0x2c - 800344a: 015a lsls r2, r3, #5 - 800344c: 69fb ldr r3, [r7, #28] - 800344e: 4413 add r3, r2 - 8003450: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003454: 461a mov r2, r3 - 8003456: f64f 337f movw r3, #64383 @ 0xfb7f - 800345a: 6093 str r3, [r2, #8] + 80036b8: 6afb ldr r3, [r7, #44] @ 0x2c + 80036ba: 015a lsls r2, r3, #5 + 80036bc: 69fb ldr r3, [r7, #28] + 80036be: 4413 add r3, r2 + 80036c0: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80036c4: 461a mov r2, r3 + 80036c6: f64f 337f movw r3, #64383 @ 0xfb7f + 80036ca: 6093 str r3, [r2, #8] USBx_INEP(i)->DIEPCTL &= ~USB_OTG_DIEPCTL_STALL; - 800345c: 6afb ldr r3, [r7, #44] @ 0x2c - 800345e: 015a lsls r2, r3, #5 - 8003460: 69fb ldr r3, [r7, #28] - 8003462: 4413 add r3, r2 - 8003464: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003468: 681b ldr r3, [r3, #0] - 800346a: 6afa ldr r2, [r7, #44] @ 0x2c - 800346c: 0151 lsls r1, r2, #5 - 800346e: 69fa ldr r2, [r7, #28] - 8003470: 440a add r2, r1 - 8003472: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8003476: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 800347a: 6013 str r3, [r2, #0] + 80036cc: 6afb ldr r3, [r7, #44] @ 0x2c + 80036ce: 015a lsls r2, r3, #5 + 80036d0: 69fb ldr r3, [r7, #28] + 80036d2: 4413 add r3, r2 + 80036d4: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80036d8: 681b ldr r3, [r3, #0] + 80036da: 6afa ldr r2, [r7, #44] @ 0x2c + 80036dc: 0151 lsls r1, r2, #5 + 80036de: 69fa ldr r2, [r7, #28] + 80036e0: 440a add r2, r1 + 80036e2: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80036e6: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 80036ea: 6013 str r3, [r2, #0] USBx_OUTEP(i)->DOEPINT = 0xFB7FU; - 800347c: 6afb ldr r3, [r7, #44] @ 0x2c - 800347e: 015a lsls r2, r3, #5 - 8003480: 69fb ldr r3, [r7, #28] - 8003482: 4413 add r3, r2 - 8003484: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003488: 461a mov r2, r3 - 800348a: f64f 337f movw r3, #64383 @ 0xfb7f - 800348e: 6093 str r3, [r2, #8] + 80036ec: 6afb ldr r3, [r7, #44] @ 0x2c + 80036ee: 015a lsls r2, r3, #5 + 80036f0: 69fb ldr r3, [r7, #28] + 80036f2: 4413 add r3, r2 + 80036f4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80036f8: 461a mov r2, r3 + 80036fa: f64f 337f movw r3, #64383 @ 0xfb7f + 80036fe: 6093 str r3, [r2, #8] USBx_OUTEP(i)->DOEPCTL &= ~USB_OTG_DOEPCTL_STALL; - 8003490: 6afb ldr r3, [r7, #44] @ 0x2c - 8003492: 015a lsls r2, r3, #5 - 8003494: 69fb ldr r3, [r7, #28] - 8003496: 4413 add r3, r2 - 8003498: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800349c: 681b ldr r3, [r3, #0] - 800349e: 6afa ldr r2, [r7, #44] @ 0x2c - 80034a0: 0151 lsls r1, r2, #5 - 80034a2: 69fa ldr r2, [r7, #28] - 80034a4: 440a add r2, r1 - 80034a6: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80034aa: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 80034ae: 6013 str r3, [r2, #0] + 8003700: 6afb ldr r3, [r7, #44] @ 0x2c + 8003702: 015a lsls r2, r3, #5 + 8003704: 69fb ldr r3, [r7, #28] + 8003706: 4413 add r3, r2 + 8003708: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800370c: 681b ldr r3, [r3, #0] + 800370e: 6afa ldr r2, [r7, #44] @ 0x2c + 8003710: 0151 lsls r1, r2, #5 + 8003712: 69fa ldr r2, [r7, #28] + 8003714: 440a add r2, r1 + 8003716: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800371a: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 800371e: 6013 str r3, [r2, #0] USBx_OUTEP(i)->DOEPCTL |= USB_OTG_DOEPCTL_SNAK; - 80034b0: 6afb ldr r3, [r7, #44] @ 0x2c - 80034b2: 015a lsls r2, r3, #5 - 80034b4: 69fb ldr r3, [r7, #28] - 80034b6: 4413 add r3, r2 - 80034b8: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80034bc: 681b ldr r3, [r3, #0] - 80034be: 6afa ldr r2, [r7, #44] @ 0x2c - 80034c0: 0151 lsls r1, r2, #5 - 80034c2: 69fa ldr r2, [r7, #28] - 80034c4: 440a add r2, r1 - 80034c6: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80034ca: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 80034ce: 6013 str r3, [r2, #0] + 8003720: 6afb ldr r3, [r7, #44] @ 0x2c + 8003722: 015a lsls r2, r3, #5 + 8003724: 69fb ldr r3, [r7, #28] + 8003726: 4413 add r3, r2 + 8003728: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800372c: 681b ldr r3, [r3, #0] + 800372e: 6afa ldr r2, [r7, #44] @ 0x2c + 8003730: 0151 lsls r1, r2, #5 + 8003732: 69fa ldr r2, [r7, #28] + 8003734: 440a add r2, r1 + 8003736: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800373a: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 800373e: 6013 str r3, [r2, #0] for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 80034d0: 6afb ldr r3, [r7, #44] @ 0x2c - 80034d2: 3301 adds r3, #1 - 80034d4: 62fb str r3, [r7, #44] @ 0x2c - 80034d6: 687b ldr r3, [r7, #4] - 80034d8: 791b ldrb r3, [r3, #4] - 80034da: 461a mov r2, r3 - 80034dc: 6afb ldr r3, [r7, #44] @ 0x2c - 80034de: 4293 cmp r3, r2 - 80034e0: d3b2 bcc.n 8003448 + 8003740: 6afb ldr r3, [r7, #44] @ 0x2c + 8003742: 3301 adds r3, #1 + 8003744: 62fb str r3, [r7, #44] @ 0x2c + 8003746: 687b ldr r3, [r7, #4] + 8003748: 791b ldrb r3, [r3, #4] + 800374a: 461a mov r2, r3 + 800374c: 6afb ldr r3, [r7, #44] @ 0x2c + 800374e: 4293 cmp r3, r2 + 8003750: d3b2 bcc.n 80036b8 } USBx_DEVICE->DAINTMSK |= 0x10001U; - 80034e2: 69fb ldr r3, [r7, #28] - 80034e4: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80034e8: 69db ldr r3, [r3, #28] - 80034ea: 69fa ldr r2, [r7, #28] - 80034ec: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80034f0: f043 1301 orr.w r3, r3, #65537 @ 0x10001 - 80034f4: 61d3 str r3, [r2, #28] + 8003752: 69fb ldr r3, [r7, #28] + 8003754: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003758: 69db ldr r3, [r3, #28] + 800375a: 69fa ldr r2, [r7, #28] + 800375c: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8003760: f043 1301 orr.w r3, r3, #65537 @ 0x10001 + 8003764: 61d3 str r3, [r2, #28] if (hpcd->Init.use_dedicated_ep1 != 0U) - 80034f6: 687b ldr r3, [r7, #4] - 80034f8: 7bdb ldrb r3, [r3, #15] - 80034fa: 2b00 cmp r3, #0 - 80034fc: d016 beq.n 800352c + 8003766: 687b ldr r3, [r7, #4] + 8003768: 7bdb ldrb r3, [r3, #15] + 800376a: 2b00 cmp r3, #0 + 800376c: d016 beq.n 800379c { USBx_DEVICE->DOUTEP1MSK |= USB_OTG_DOEPMSK_STUPM | - 80034fe: 69fb ldr r3, [r7, #28] - 8003500: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003504: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 8003508: 69fa ldr r2, [r7, #28] - 800350a: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800350e: f043 030b orr.w r3, r3, #11 - 8003512: f8c2 3084 str.w r3, [r2, #132] @ 0x84 + 800376e: 69fb ldr r3, [r7, #28] + 8003770: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003774: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 8003778: 69fa ldr r2, [r7, #28] + 800377a: f502 6200 add.w r2, r2, #2048 @ 0x800 + 800377e: f043 030b orr.w r3, r3, #11 + 8003782: f8c2 3084 str.w r3, [r2, #132] @ 0x84 USB_OTG_DOEPMSK_XFRCM | USB_OTG_DOEPMSK_EPDM; USBx_DEVICE->DINEP1MSK |= USB_OTG_DIEPMSK_TOM | - 8003516: 69fb ldr r3, [r7, #28] - 8003518: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800351c: 6c5b ldr r3, [r3, #68] @ 0x44 - 800351e: 69fa ldr r2, [r7, #28] - 8003520: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003524: f043 030b orr.w r3, r3, #11 - 8003528: 6453 str r3, [r2, #68] @ 0x44 - 800352a: e015 b.n 8003558 + 8003786: 69fb ldr r3, [r7, #28] + 8003788: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800378c: 6c5b ldr r3, [r3, #68] @ 0x44 + 800378e: 69fa ldr r2, [r7, #28] + 8003790: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8003794: f043 030b orr.w r3, r3, #11 + 8003798: 6453 str r3, [r2, #68] @ 0x44 + 800379a: e015 b.n 80037c8 USB_OTG_DIEPMSK_XFRCM | USB_OTG_DIEPMSK_EPDM; } else { USBx_DEVICE->DOEPMSK |= USB_OTG_DOEPMSK_STUPM | - 800352c: 69fb ldr r3, [r7, #28] - 800352e: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003532: 695b ldr r3, [r3, #20] - 8003534: 69fa ldr r2, [r7, #28] - 8003536: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800353a: f443 5300 orr.w r3, r3, #8192 @ 0x2000 - 800353e: f043 032b orr.w r3, r3, #43 @ 0x2b - 8003542: 6153 str r3, [r2, #20] + 800379c: 69fb ldr r3, [r7, #28] + 800379e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80037a2: 695b ldr r3, [r3, #20] + 80037a4: 69fa ldr r2, [r7, #28] + 80037a6: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80037aa: f443 5300 orr.w r3, r3, #8192 @ 0x2000 + 80037ae: f043 032b orr.w r3, r3, #43 @ 0x2b + 80037b2: 6153 str r3, [r2, #20] USB_OTG_DOEPMSK_XFRCM | USB_OTG_DOEPMSK_EPDM | USB_OTG_DOEPMSK_OTEPSPRM | USB_OTG_DOEPMSK_NAKM; USBx_DEVICE->DIEPMSK |= USB_OTG_DIEPMSK_TOM | - 8003544: 69fb ldr r3, [r7, #28] - 8003546: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800354a: 691b ldr r3, [r3, #16] - 800354c: 69fa ldr r2, [r7, #28] - 800354e: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003552: f043 030b orr.w r3, r3, #11 - 8003556: 6113 str r3, [r2, #16] + 80037b4: 69fb ldr r3, [r7, #28] + 80037b6: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80037ba: 691b ldr r3, [r3, #16] + 80037bc: 69fa ldr r2, [r7, #28] + 80037be: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80037c2: f043 030b orr.w r3, r3, #11 + 80037c6: 6113 str r3, [r2, #16] USB_OTG_DIEPMSK_XFRCM | USB_OTG_DIEPMSK_EPDM; } /* Set Default Address to 0 */ USBx_DEVICE->DCFG &= ~USB_OTG_DCFG_DAD; - 8003558: 69fb ldr r3, [r7, #28] - 800355a: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800355e: 681b ldr r3, [r3, #0] - 8003560: 69fa ldr r2, [r7, #28] - 8003562: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003566: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 - 800356a: 6013 str r3, [r2, #0] + 80037c8: 69fb ldr r3, [r7, #28] + 80037ca: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80037ce: 681b ldr r3, [r3, #0] + 80037d0: 69fa ldr r2, [r7, #28] + 80037d2: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80037d6: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 + 80037da: 6013 str r3, [r2, #0] /* setup EP0 to receive SETUP packets */ (void)USB_EP0_OutStart(hpcd->Instance, (uint8_t)hpcd->Init.dma_enable, - 800356c: 687b ldr r3, [r7, #4] - 800356e: 6818 ldr r0, [r3, #0] - 8003570: 687b ldr r3, [r7, #4] - 8003572: 7999 ldrb r1, [r3, #6] + 80037dc: 687b ldr r3, [r7, #4] + 80037de: 6818 ldr r0, [r3, #0] + 80037e0: 687b ldr r3, [r7, #4] + 80037e2: 7999 ldrb r1, [r3, #6] (uint8_t *)hpcd->Setup); - 8003574: 687b ldr r3, [r7, #4] - 8003576: f203 439c addw r3, r3, #1180 @ 0x49c + 80037e4: 687b ldr r3, [r7, #4] + 80037e6: f203 439c addw r3, r3, #1180 @ 0x49c (void)USB_EP0_OutStart(hpcd->Instance, (uint8_t)hpcd->Init.dma_enable, - 800357a: 461a mov r2, r3 - 800357c: f004 ffae bl 80084dc + 80037ea: 461a mov r2, r3 + 80037ec: f005 f862 bl 80088b4 __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_USBRST); - 8003580: 687b ldr r3, [r7, #4] - 8003582: 681b ldr r3, [r3, #0] - 8003584: 695a ldr r2, [r3, #20] - 8003586: 687b ldr r3, [r7, #4] - 8003588: 681b ldr r3, [r3, #0] - 800358a: f402 5280 and.w r2, r2, #4096 @ 0x1000 - 800358e: 615a str r2, [r3, #20] + 80037f0: 687b ldr r3, [r7, #4] + 80037f2: 681b ldr r3, [r3, #0] + 80037f4: 695a ldr r2, [r3, #20] + 80037f6: 687b ldr r3, [r7, #4] + 80037f8: 681b ldr r3, [r3, #0] + 80037fa: f402 5280 and.w r2, r2, #4096 @ 0x1000 + 80037fe: 615a str r2, [r3, #20] } /* Handle Enumeration done Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_ENUMDNE)) - 8003590: 687b ldr r3, [r7, #4] - 8003592: 681b ldr r3, [r3, #0] - 8003594: 4618 mov r0, r3 - 8003596: f004 fedd bl 8008354 - 800359a: 4603 mov r3, r0 - 800359c: f403 5300 and.w r3, r3, #8192 @ 0x2000 - 80035a0: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 - 80035a4: d123 bne.n 80035ee + 8003800: 687b ldr r3, [r7, #4] + 8003802: 681b ldr r3, [r3, #0] + 8003804: 4618 mov r0, r3 + 8003806: f004 ff91 bl 800872c + 800380a: 4603 mov r3, r0 + 800380c: f403 5300 and.w r3, r3, #8192 @ 0x2000 + 8003810: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 + 8003814: d123 bne.n 800385e { (void)USB_ActivateSetup(hpcd->Instance); - 80035a6: 687b ldr r3, [r7, #4] - 80035a8: 681b ldr r3, [r3, #0] - 80035aa: 4618 mov r0, r3 - 80035ac: f004 ff73 bl 8008496 + 8003816: 687b ldr r3, [r7, #4] + 8003818: 681b ldr r3, [r3, #0] + 800381a: 4618 mov r0, r3 + 800381c: f005 f827 bl 800886e hpcd->Init.speed = USB_GetDevSpeed(hpcd->Instance); - 80035b0: 687b ldr r3, [r7, #4] - 80035b2: 681b ldr r3, [r3, #0] - 80035b4: 4618 mov r0, r3 - 80035b6: f004 f82a bl 800760e - 80035ba: 4603 mov r3, r0 - 80035bc: 461a mov r2, r3 - 80035be: 687b ldr r3, [r7, #4] - 80035c0: 71da strb r2, [r3, #7] + 8003820: 687b ldr r3, [r7, #4] + 8003822: 681b ldr r3, [r3, #0] + 8003824: 4618 mov r0, r3 + 8003826: f004 f8de bl 80079e6 + 800382a: 4603 mov r3, r0 + 800382c: 461a mov r2, r3 + 800382e: 687b ldr r3, [r7, #4] + 8003830: 71da strb r2, [r3, #7] /* Set USB Turnaround time */ (void)USB_SetTurnaroundTime(hpcd->Instance, - 80035c2: 687b ldr r3, [r7, #4] - 80035c4: 681c ldr r4, [r3, #0] - 80035c6: f000 fe8b bl 80042e0 - 80035ca: 4601 mov r1, r0 + 8003832: 687b ldr r3, [r7, #4] + 8003834: 681c ldr r4, [r3, #0] + 8003836: f000 fe8b bl 8004550 + 800383a: 4601 mov r1, r0 HAL_RCC_GetHCLKFreq(), (uint8_t)hpcd->Init.speed); - 80035cc: 687b ldr r3, [r7, #4] - 80035ce: 79db ldrb r3, [r3, #7] + 800383c: 687b ldr r3, [r7, #4] + 800383e: 79db ldrb r3, [r3, #7] (void)USB_SetTurnaroundTime(hpcd->Instance, - 80035d0: 461a mov r2, r3 - 80035d2: 4620 mov r0, r4 - 80035d4: f003 fd34 bl 8007040 + 8003840: 461a mov r2, r3 + 8003842: 4620 mov r0, r4 + 8003844: f003 fde8 bl 8007418 #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ResetCallback(hpcd); #else HAL_PCD_ResetCallback(hpcd); - 80035d8: 6878 ldr r0, [r7, #4] - 80035da: f006 ff9e bl 800a51a + 8003848: 6878 ldr r0, [r7, #4] + 800384a: f007 f852 bl 800a8f2 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_ENUMDNE); - 80035de: 687b ldr r3, [r7, #4] - 80035e0: 681b ldr r3, [r3, #0] - 80035e2: 695a ldr r2, [r3, #20] - 80035e4: 687b ldr r3, [r7, #4] - 80035e6: 681b ldr r3, [r3, #0] - 80035e8: f402 5200 and.w r2, r2, #8192 @ 0x2000 - 80035ec: 615a str r2, [r3, #20] + 800384e: 687b ldr r3, [r7, #4] + 8003850: 681b ldr r3, [r3, #0] + 8003852: 695a ldr r2, [r3, #20] + 8003854: 687b ldr r3, [r7, #4] + 8003856: 681b ldr r3, [r3, #0] + 8003858: f402 5200 and.w r2, r2, #8192 @ 0x2000 + 800385c: 615a str r2, [r3, #20] } /* Handle SOF Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_SOF)) - 80035ee: 687b ldr r3, [r7, #4] - 80035f0: 681b ldr r3, [r3, #0] - 80035f2: 4618 mov r0, r3 - 80035f4: f004 feae bl 8008354 - 80035f8: 4603 mov r3, r0 - 80035fa: f003 0308 and.w r3, r3, #8 - 80035fe: 2b08 cmp r3, #8 - 8003600: d10a bne.n 8003618 + 800385e: 687b ldr r3, [r7, #4] + 8003860: 681b ldr r3, [r3, #0] + 8003862: 4618 mov r0, r3 + 8003864: f004 ff62 bl 800872c + 8003868: 4603 mov r3, r0 + 800386a: f003 0308 and.w r3, r3, #8 + 800386e: 2b08 cmp r3, #8 + 8003870: d10a bne.n 8003888 { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SOFCallback(hpcd); #else HAL_PCD_SOFCallback(hpcd); - 8003602: 6878 ldr r0, [r7, #4] - 8003604: f006 ff7b bl 800a4fe + 8003872: 6878 ldr r0, [r7, #4] + 8003874: f007 f82f bl 800a8d6 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_SOF); - 8003608: 687b ldr r3, [r7, #4] - 800360a: 681b ldr r3, [r3, #0] - 800360c: 695a ldr r2, [r3, #20] - 800360e: 687b ldr r3, [r7, #4] - 8003610: 681b ldr r3, [r3, #0] - 8003612: f002 0208 and.w r2, r2, #8 - 8003616: 615a str r2, [r3, #20] + 8003878: 687b ldr r3, [r7, #4] + 800387a: 681b ldr r3, [r3, #0] + 800387c: 695a ldr r2, [r3, #20] + 800387e: 687b ldr r3, [r7, #4] + 8003880: 681b ldr r3, [r3, #0] + 8003882: f002 0208 and.w r2, r2, #8 + 8003886: 615a str r2, [r3, #20] } /* Handle Global OUT NAK effective Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_BOUTNAKEFF)) - 8003618: 687b ldr r3, [r7, #4] - 800361a: 681b ldr r3, [r3, #0] - 800361c: 4618 mov r0, r3 - 800361e: f004 fe99 bl 8008354 - 8003622: 4603 mov r3, r0 - 8003624: f003 0380 and.w r3, r3, #128 @ 0x80 - 8003628: 2b80 cmp r3, #128 @ 0x80 - 800362a: d123 bne.n 8003674 + 8003888: 687b ldr r3, [r7, #4] + 800388a: 681b ldr r3, [r3, #0] + 800388c: 4618 mov r0, r3 + 800388e: f004 ff4d bl 800872c + 8003892: 4603 mov r3, r0 + 8003894: f003 0380 and.w r3, r3, #128 @ 0x80 + 8003898: 2b80 cmp r3, #128 @ 0x80 + 800389a: d123 bne.n 80038e4 { USBx->GINTMSK &= ~USB_OTG_GINTMSK_GONAKEFFM; - 800362c: 6a3b ldr r3, [r7, #32] - 800362e: 699b ldr r3, [r3, #24] - 8003630: f023 0280 bic.w r2, r3, #128 @ 0x80 - 8003634: 6a3b ldr r3, [r7, #32] - 8003636: 619a str r2, [r3, #24] + 800389c: 6a3b ldr r3, [r7, #32] + 800389e: 699b ldr r3, [r3, #24] + 80038a0: f023 0280 bic.w r2, r3, #128 @ 0x80 + 80038a4: 6a3b ldr r3, [r7, #32] + 80038a6: 619a str r2, [r3, #24] for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 8003638: 2301 movs r3, #1 - 800363a: 627b str r3, [r7, #36] @ 0x24 - 800363c: e014 b.n 8003668 + 80038a8: 2301 movs r3, #1 + 80038aa: 627b str r3, [r7, #36] @ 0x24 + 80038ac: e014 b.n 80038d8 { if (hpcd->OUT_ep[epnum].is_iso_incomplete == 1U) - 800363e: 6879 ldr r1, [r7, #4] - 8003640: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003642: 4613 mov r3, r2 - 8003644: 00db lsls r3, r3, #3 - 8003646: 4413 add r3, r2 - 8003648: 009b lsls r3, r3, #2 - 800364a: 440b add r3, r1 - 800364c: f203 2357 addw r3, r3, #599 @ 0x257 - 8003650: 781b ldrb r3, [r3, #0] - 8003652: 2b01 cmp r3, #1 - 8003654: d105 bne.n 8003662 + 80038ae: 6879 ldr r1, [r7, #4] + 80038b0: 6a7a ldr r2, [r7, #36] @ 0x24 + 80038b2: 4613 mov r3, r2 + 80038b4: 00db lsls r3, r3, #3 + 80038b6: 4413 add r3, r2 + 80038b8: 009b lsls r3, r3, #2 + 80038ba: 440b add r3, r1 + 80038bc: f203 2357 addw r3, r3, #599 @ 0x257 + 80038c0: 781b ldrb r3, [r3, #0] + 80038c2: 2b01 cmp r3, #1 + 80038c4: d105 bne.n 80038d2 { /* Abort current transaction and disable the EP */ (void)HAL_PCD_EP_Abort(hpcd, (uint8_t)epnum); - 8003656: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003658: b2db uxtb r3, r3 - 800365a: 4619 mov r1, r3 - 800365c: 6878 ldr r0, [r7, #4] - 800365e: f000 faf2 bl 8003c46 + 80038c6: 6a7b ldr r3, [r7, #36] @ 0x24 + 80038c8: b2db uxtb r3, r3 + 80038ca: 4619 mov r1, r3 + 80038cc: 6878 ldr r0, [r7, #4] + 80038ce: f000 faf2 bl 8003eb6 for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 8003662: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003664: 3301 adds r3, #1 - 8003666: 627b str r3, [r7, #36] @ 0x24 - 8003668: 687b ldr r3, [r7, #4] - 800366a: 791b ldrb r3, [r3, #4] - 800366c: 461a mov r2, r3 - 800366e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003670: 4293 cmp r3, r2 - 8003672: d3e4 bcc.n 800363e + 80038d2: 6a7b ldr r3, [r7, #36] @ 0x24 + 80038d4: 3301 adds r3, #1 + 80038d6: 627b str r3, [r7, #36] @ 0x24 + 80038d8: 687b ldr r3, [r7, #4] + 80038da: 791b ldrb r3, [r3, #4] + 80038dc: 461a mov r2, r3 + 80038de: 6a7b ldr r3, [r7, #36] @ 0x24 + 80038e0: 4293 cmp r3, r2 + 80038e2: d3e4 bcc.n 80038ae } } } /* Handle Incomplete ISO IN Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_IISOIXFR)) - 8003674: 687b ldr r3, [r7, #4] - 8003676: 681b ldr r3, [r3, #0] - 8003678: 4618 mov r0, r3 - 800367a: f004 fe6b bl 8008354 - 800367e: 4603 mov r3, r0 - 8003680: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 8003684: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 - 8003688: d13c bne.n 8003704 + 80038e4: 687b ldr r3, [r7, #4] + 80038e6: 681b ldr r3, [r3, #0] + 80038e8: 4618 mov r0, r3 + 80038ea: f004 ff1f bl 800872c + 80038ee: 4603 mov r3, r0 + 80038f0: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 80038f4: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 + 80038f8: d13c bne.n 8003974 { for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 800368a: 2301 movs r3, #1 - 800368c: 627b str r3, [r7, #36] @ 0x24 - 800368e: e02b b.n 80036e8 + 80038fa: 2301 movs r3, #1 + 80038fc: 627b str r3, [r7, #36] @ 0x24 + 80038fe: e02b b.n 8003958 { RegVal = USBx_INEP(epnum)->DIEPCTL; - 8003690: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003692: 015a lsls r2, r3, #5 - 8003694: 69fb ldr r3, [r7, #28] - 8003696: 4413 add r3, r2 - 8003698: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800369c: 681b ldr r3, [r3, #0] - 800369e: 61bb str r3, [r7, #24] + 8003900: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003902: 015a lsls r2, r3, #5 + 8003904: 69fb ldr r3, [r7, #28] + 8003906: 4413 add r3, r2 + 8003908: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800390c: 681b ldr r3, [r3, #0] + 800390e: 61bb str r3, [r7, #24] if ((hpcd->IN_ep[epnum].type == EP_TYPE_ISOC) && - 80036a0: 6879 ldr r1, [r7, #4] - 80036a2: 6a7a ldr r2, [r7, #36] @ 0x24 - 80036a4: 4613 mov r3, r2 - 80036a6: 00db lsls r3, r3, #3 - 80036a8: 4413 add r3, r2 - 80036aa: 009b lsls r3, r3, #2 - 80036ac: 440b add r3, r1 - 80036ae: 3318 adds r3, #24 - 80036b0: 781b ldrb r3, [r3, #0] - 80036b2: 2b01 cmp r3, #1 - 80036b4: d115 bne.n 80036e2 + 8003910: 6879 ldr r1, [r7, #4] + 8003912: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003914: 4613 mov r3, r2 + 8003916: 00db lsls r3, r3, #3 + 8003918: 4413 add r3, r2 + 800391a: 009b lsls r3, r3, #2 + 800391c: 440b add r3, r1 + 800391e: 3318 adds r3, #24 + 8003920: 781b ldrb r3, [r3, #0] + 8003922: 2b01 cmp r3, #1 + 8003924: d115 bne.n 8003952 ((RegVal & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA)) - 80036b6: 69bb ldr r3, [r7, #24] + 8003926: 69bb ldr r3, [r7, #24] if ((hpcd->IN_ep[epnum].type == EP_TYPE_ISOC) && - 80036b8: 2b00 cmp r3, #0 - 80036ba: da12 bge.n 80036e2 + 8003928: 2b00 cmp r3, #0 + 800392a: da12 bge.n 8003952 { hpcd->IN_ep[epnum].is_iso_incomplete = 1U; - 80036bc: 6879 ldr r1, [r7, #4] - 80036be: 6a7a ldr r2, [r7, #36] @ 0x24 - 80036c0: 4613 mov r3, r2 - 80036c2: 00db lsls r3, r3, #3 - 80036c4: 4413 add r3, r2 - 80036c6: 009b lsls r3, r3, #2 - 80036c8: 440b add r3, r1 - 80036ca: 3317 adds r3, #23 - 80036cc: 2201 movs r2, #1 - 80036ce: 701a strb r2, [r3, #0] + 800392c: 6879 ldr r1, [r7, #4] + 800392e: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003930: 4613 mov r3, r2 + 8003932: 00db lsls r3, r3, #3 + 8003934: 4413 add r3, r2 + 8003936: 009b lsls r3, r3, #2 + 8003938: 440b add r3, r1 + 800393a: 3317 adds r3, #23 + 800393c: 2201 movs r2, #1 + 800393e: 701a strb r2, [r3, #0] /* Abort current transaction and disable the EP */ (void)HAL_PCD_EP_Abort(hpcd, (uint8_t)(epnum | 0x80U)); - 80036d0: 6a7b ldr r3, [r7, #36] @ 0x24 - 80036d2: b2db uxtb r3, r3 - 80036d4: f063 037f orn r3, r3, #127 @ 0x7f - 80036d8: b2db uxtb r3, r3 - 80036da: 4619 mov r1, r3 - 80036dc: 6878 ldr r0, [r7, #4] - 80036de: f000 fab2 bl 8003c46 + 8003940: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003942: b2db uxtb r3, r3 + 8003944: f063 037f orn r3, r3, #127 @ 0x7f + 8003948: b2db uxtb r3, r3 + 800394a: 4619 mov r1, r3 + 800394c: 6878 ldr r0, [r7, #4] + 800394e: f000 fab2 bl 8003eb6 for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 80036e2: 6a7b ldr r3, [r7, #36] @ 0x24 - 80036e4: 3301 adds r3, #1 - 80036e6: 627b str r3, [r7, #36] @ 0x24 - 80036e8: 687b ldr r3, [r7, #4] - 80036ea: 791b ldrb r3, [r3, #4] - 80036ec: 461a mov r2, r3 - 80036ee: 6a7b ldr r3, [r7, #36] @ 0x24 - 80036f0: 4293 cmp r3, r2 - 80036f2: d3cd bcc.n 8003690 + 8003952: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003954: 3301 adds r3, #1 + 8003956: 627b str r3, [r7, #36] @ 0x24 + 8003958: 687b ldr r3, [r7, #4] + 800395a: 791b ldrb r3, [r3, #4] + 800395c: 461a mov r2, r3 + 800395e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003960: 4293 cmp r3, r2 + 8003962: d3cd bcc.n 8003900 } } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_IISOIXFR); - 80036f4: 687b ldr r3, [r7, #4] - 80036f6: 681b ldr r3, [r3, #0] - 80036f8: 695a ldr r2, [r3, #20] - 80036fa: 687b ldr r3, [r7, #4] - 80036fc: 681b ldr r3, [r3, #0] - 80036fe: f402 1280 and.w r2, r2, #1048576 @ 0x100000 - 8003702: 615a str r2, [r3, #20] + 8003964: 687b ldr r3, [r7, #4] + 8003966: 681b ldr r3, [r3, #0] + 8003968: 695a ldr r2, [r3, #20] + 800396a: 687b ldr r3, [r7, #4] + 800396c: 681b ldr r3, [r3, #0] + 800396e: f402 1280 and.w r2, r2, #1048576 @ 0x100000 + 8003972: 615a str r2, [r3, #20] } /* Handle Incomplete ISO OUT Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_PXFR_INCOMPISOOUT)) - 8003704: 687b ldr r3, [r7, #4] - 8003706: 681b ldr r3, [r3, #0] - 8003708: 4618 mov r0, r3 - 800370a: f004 fe23 bl 8008354 - 800370e: 4603 mov r3, r0 - 8003710: f403 1300 and.w r3, r3, #2097152 @ 0x200000 - 8003714: f5b3 1f00 cmp.w r3, #2097152 @ 0x200000 - 8003718: d156 bne.n 80037c8 + 8003974: 687b ldr r3, [r7, #4] + 8003976: 681b ldr r3, [r3, #0] + 8003978: 4618 mov r0, r3 + 800397a: f004 fed7 bl 800872c + 800397e: 4603 mov r3, r0 + 8003980: f403 1300 and.w r3, r3, #2097152 @ 0x200000 + 8003984: f5b3 1f00 cmp.w r3, #2097152 @ 0x200000 + 8003988: d156 bne.n 8003a38 { for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 800371a: 2301 movs r3, #1 - 800371c: 627b str r3, [r7, #36] @ 0x24 - 800371e: e045 b.n 80037ac + 800398a: 2301 movs r3, #1 + 800398c: 627b str r3, [r7, #36] @ 0x24 + 800398e: e045 b.n 8003a1c { RegVal = USBx_OUTEP(epnum)->DOEPCTL; - 8003720: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003722: 015a lsls r2, r3, #5 - 8003724: 69fb ldr r3, [r7, #28] - 8003726: 4413 add r3, r2 - 8003728: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800372c: 681b ldr r3, [r3, #0] - 800372e: 61bb str r3, [r7, #24] + 8003990: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003992: 015a lsls r2, r3, #5 + 8003994: 69fb ldr r3, [r7, #28] + 8003996: 4413 add r3, r2 + 8003998: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800399c: 681b ldr r3, [r3, #0] + 800399e: 61bb str r3, [r7, #24] if ((hpcd->OUT_ep[epnum].type == EP_TYPE_ISOC) && - 8003730: 6879 ldr r1, [r7, #4] - 8003732: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003734: 4613 mov r3, r2 - 8003736: 00db lsls r3, r3, #3 - 8003738: 4413 add r3, r2 - 800373a: 009b lsls r3, r3, #2 - 800373c: 440b add r3, r1 - 800373e: f503 7316 add.w r3, r3, #600 @ 0x258 - 8003742: 781b ldrb r3, [r3, #0] - 8003744: 2b01 cmp r3, #1 - 8003746: d12e bne.n 80037a6 + 80039a0: 6879 ldr r1, [r7, #4] + 80039a2: 6a7a ldr r2, [r7, #36] @ 0x24 + 80039a4: 4613 mov r3, r2 + 80039a6: 00db lsls r3, r3, #3 + 80039a8: 4413 add r3, r2 + 80039aa: 009b lsls r3, r3, #2 + 80039ac: 440b add r3, r1 + 80039ae: f503 7316 add.w r3, r3, #600 @ 0x258 + 80039b2: 781b ldrb r3, [r3, #0] + 80039b4: 2b01 cmp r3, #1 + 80039b6: d12e bne.n 8003a16 ((RegVal & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) && - 8003748: 69bb ldr r3, [r7, #24] + 80039b8: 69bb ldr r3, [r7, #24] if ((hpcd->OUT_ep[epnum].type == EP_TYPE_ISOC) && - 800374a: 2b00 cmp r3, #0 - 800374c: da2b bge.n 80037a6 + 80039ba: 2b00 cmp r3, #0 + 80039bc: da2b bge.n 8003a16 (((RegVal & (0x1U << 16)) >> 16U) == (hpcd->FrameNumber & 0x1U))) - 800374e: 69bb ldr r3, [r7, #24] - 8003750: 0c1a lsrs r2, r3, #16 - 8003752: 687b ldr r3, [r7, #4] - 8003754: f8d3 34d4 ldr.w r3, [r3, #1236] @ 0x4d4 - 8003758: 4053 eors r3, r2 - 800375a: f003 0301 and.w r3, r3, #1 + 80039be: 69bb ldr r3, [r7, #24] + 80039c0: 0c1a lsrs r2, r3, #16 + 80039c2: 687b ldr r3, [r7, #4] + 80039c4: f8d3 34d4 ldr.w r3, [r3, #1236] @ 0x4d4 + 80039c8: 4053 eors r3, r2 + 80039ca: f003 0301 and.w r3, r3, #1 ((RegVal & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) && - 800375e: 2b00 cmp r3, #0 - 8003760: d121 bne.n 80037a6 + 80039ce: 2b00 cmp r3, #0 + 80039d0: d121 bne.n 8003a16 { hpcd->OUT_ep[epnum].is_iso_incomplete = 1U; - 8003762: 6879 ldr r1, [r7, #4] - 8003764: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003766: 4613 mov r3, r2 - 8003768: 00db lsls r3, r3, #3 - 800376a: 4413 add r3, r2 - 800376c: 009b lsls r3, r3, #2 - 800376e: 440b add r3, r1 - 8003770: f203 2357 addw r3, r3, #599 @ 0x257 - 8003774: 2201 movs r2, #1 - 8003776: 701a strb r2, [r3, #0] + 80039d2: 6879 ldr r1, [r7, #4] + 80039d4: 6a7a ldr r2, [r7, #36] @ 0x24 + 80039d6: 4613 mov r3, r2 + 80039d8: 00db lsls r3, r3, #3 + 80039da: 4413 add r3, r2 + 80039dc: 009b lsls r3, r3, #2 + 80039de: 440b add r3, r1 + 80039e0: f203 2357 addw r3, r3, #599 @ 0x257 + 80039e4: 2201 movs r2, #1 + 80039e6: 701a strb r2, [r3, #0] USBx->GINTMSK |= USB_OTG_GINTMSK_GONAKEFFM; - 8003778: 6a3b ldr r3, [r7, #32] - 800377a: 699b ldr r3, [r3, #24] - 800377c: f043 0280 orr.w r2, r3, #128 @ 0x80 - 8003780: 6a3b ldr r3, [r7, #32] - 8003782: 619a str r2, [r3, #24] + 80039e8: 6a3b ldr r3, [r7, #32] + 80039ea: 699b ldr r3, [r3, #24] + 80039ec: f043 0280 orr.w r2, r3, #128 @ 0x80 + 80039f0: 6a3b ldr r3, [r7, #32] + 80039f2: 619a str r2, [r3, #24] if ((USBx->GINTSTS & USB_OTG_GINTSTS_BOUTNAKEFF) == 0U) - 8003784: 6a3b ldr r3, [r7, #32] - 8003786: 695b ldr r3, [r3, #20] - 8003788: f003 0380 and.w r3, r3, #128 @ 0x80 - 800378c: 2b00 cmp r3, #0 - 800378e: d10a bne.n 80037a6 + 80039f4: 6a3b ldr r3, [r7, #32] + 80039f6: 695b ldr r3, [r3, #20] + 80039f8: f003 0380 and.w r3, r3, #128 @ 0x80 + 80039fc: 2b00 cmp r3, #0 + 80039fe: d10a bne.n 8003a16 { USBx_DEVICE->DCTL |= USB_OTG_DCTL_SGONAK; - 8003790: 69fb ldr r3, [r7, #28] - 8003792: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003796: 685b ldr r3, [r3, #4] - 8003798: 69fa ldr r2, [r7, #28] - 800379a: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800379e: f443 7300 orr.w r3, r3, #512 @ 0x200 - 80037a2: 6053 str r3, [r2, #4] + 8003a00: 69fb ldr r3, [r7, #28] + 8003a02: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003a06: 685b ldr r3, [r3, #4] + 8003a08: 69fa ldr r2, [r7, #28] + 8003a0a: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8003a0e: f443 7300 orr.w r3, r3, #512 @ 0x200 + 8003a12: 6053 str r3, [r2, #4] break; - 80037a4: e008 b.n 80037b8 + 8003a14: e008 b.n 8003a28 for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 80037a6: 6a7b ldr r3, [r7, #36] @ 0x24 - 80037a8: 3301 adds r3, #1 - 80037aa: 627b str r3, [r7, #36] @ 0x24 - 80037ac: 687b ldr r3, [r7, #4] - 80037ae: 791b ldrb r3, [r3, #4] - 80037b0: 461a mov r2, r3 - 80037b2: 6a7b ldr r3, [r7, #36] @ 0x24 - 80037b4: 4293 cmp r3, r2 - 80037b6: d3b3 bcc.n 8003720 + 8003a16: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003a18: 3301 adds r3, #1 + 8003a1a: 627b str r3, [r7, #36] @ 0x24 + 8003a1c: 687b ldr r3, [r7, #4] + 8003a1e: 791b ldrb r3, [r3, #4] + 8003a20: 461a mov r2, r3 + 8003a22: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003a24: 4293 cmp r3, r2 + 8003a26: d3b3 bcc.n 8003990 } } } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_PXFR_INCOMPISOOUT); - 80037b8: 687b ldr r3, [r7, #4] - 80037ba: 681b ldr r3, [r3, #0] - 80037bc: 695a ldr r2, [r3, #20] - 80037be: 687b ldr r3, [r7, #4] - 80037c0: 681b ldr r3, [r3, #0] - 80037c2: f402 1200 and.w r2, r2, #2097152 @ 0x200000 - 80037c6: 615a str r2, [r3, #20] + 8003a28: 687b ldr r3, [r7, #4] + 8003a2a: 681b ldr r3, [r3, #0] + 8003a2c: 695a ldr r2, [r3, #20] + 8003a2e: 687b ldr r3, [r7, #4] + 8003a30: 681b ldr r3, [r3, #0] + 8003a32: f402 1200 and.w r2, r2, #2097152 @ 0x200000 + 8003a36: 615a str r2, [r3, #20] } /* Handle Connection event Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_SRQINT)) - 80037c8: 687b ldr r3, [r7, #4] - 80037ca: 681b ldr r3, [r3, #0] - 80037cc: 4618 mov r0, r3 - 80037ce: f004 fdc1 bl 8008354 - 80037d2: 4603 mov r3, r0 - 80037d4: f003 4380 and.w r3, r3, #1073741824 @ 0x40000000 - 80037d8: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 80037dc: d10a bne.n 80037f4 + 8003a38: 687b ldr r3, [r7, #4] + 8003a3a: 681b ldr r3, [r3, #0] + 8003a3c: 4618 mov r0, r3 + 8003a3e: f004 fe75 bl 800872c + 8003a42: 4603 mov r3, r0 + 8003a44: f003 4380 and.w r3, r3, #1073741824 @ 0x40000000 + 8003a48: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8003a4c: d10a bne.n 8003a64 { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ConnectCallback(hpcd); #else HAL_PCD_ConnectCallback(hpcd); - 80037de: 6878 ldr r0, [r7, #4] - 80037e0: f006 ff1c bl 800a61c + 8003a4e: 6878 ldr r0, [r7, #4] + 8003a50: f006 ffd0 bl 800a9f4 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_SRQINT); - 80037e4: 687b ldr r3, [r7, #4] - 80037e6: 681b ldr r3, [r3, #0] - 80037e8: 695a ldr r2, [r3, #20] - 80037ea: 687b ldr r3, [r7, #4] - 80037ec: 681b ldr r3, [r3, #0] - 80037ee: f002 4280 and.w r2, r2, #1073741824 @ 0x40000000 - 80037f2: 615a str r2, [r3, #20] + 8003a54: 687b ldr r3, [r7, #4] + 8003a56: 681b ldr r3, [r3, #0] + 8003a58: 695a ldr r2, [r3, #20] + 8003a5a: 687b ldr r3, [r7, #4] + 8003a5c: 681b ldr r3, [r3, #0] + 8003a5e: f002 4280 and.w r2, r2, #1073741824 @ 0x40000000 + 8003a62: 615a str r2, [r3, #20] } /* Handle Disconnection event Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_OTGINT)) - 80037f4: 687b ldr r3, [r7, #4] - 80037f6: 681b ldr r3, [r3, #0] - 80037f8: 4618 mov r0, r3 - 80037fa: f004 fdab bl 8008354 - 80037fe: 4603 mov r3, r0 - 8003800: f003 0304 and.w r3, r3, #4 - 8003804: 2b04 cmp r3, #4 - 8003806: d115 bne.n 8003834 + 8003a64: 687b ldr r3, [r7, #4] + 8003a66: 681b ldr r3, [r3, #0] + 8003a68: 4618 mov r0, r3 + 8003a6a: f004 fe5f bl 800872c + 8003a6e: 4603 mov r3, r0 + 8003a70: f003 0304 and.w r3, r3, #4 + 8003a74: 2b04 cmp r3, #4 + 8003a76: d115 bne.n 8003aa4 { RegVal = hpcd->Instance->GOTGINT; - 8003808: 687b ldr r3, [r7, #4] - 800380a: 681b ldr r3, [r3, #0] - 800380c: 685b ldr r3, [r3, #4] - 800380e: 61bb str r3, [r7, #24] + 8003a78: 687b ldr r3, [r7, #4] + 8003a7a: 681b ldr r3, [r3, #0] + 8003a7c: 685b ldr r3, [r3, #4] + 8003a7e: 61bb str r3, [r7, #24] if ((RegVal & USB_OTG_GOTGINT_SEDET) == USB_OTG_GOTGINT_SEDET) - 8003810: 69bb ldr r3, [r7, #24] - 8003812: f003 0304 and.w r3, r3, #4 - 8003816: 2b00 cmp r3, #0 - 8003818: d002 beq.n 8003820 + 8003a80: 69bb ldr r3, [r7, #24] + 8003a82: f003 0304 and.w r3, r3, #4 + 8003a86: 2b00 cmp r3, #0 + 8003a88: d002 beq.n 8003a90 { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DisconnectCallback(hpcd); #else HAL_PCD_DisconnectCallback(hpcd); - 800381a: 6878 ldr r0, [r7, #4] - 800381c: f006 ff0c bl 800a638 + 8003a8a: 6878 ldr r0, [r7, #4] + 8003a8c: f006 ffc0 bl 800aa10 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } hpcd->Instance->GOTGINT |= RegVal; - 8003820: 687b ldr r3, [r7, #4] - 8003822: 681b ldr r3, [r3, #0] - 8003824: 6859 ldr r1, [r3, #4] - 8003826: 687b ldr r3, [r7, #4] - 8003828: 681b ldr r3, [r3, #0] - 800382a: 69ba ldr r2, [r7, #24] - 800382c: 430a orrs r2, r1 - 800382e: 605a str r2, [r3, #4] - 8003830: e000 b.n 8003834 + 8003a90: 687b ldr r3, [r7, #4] + 8003a92: 681b ldr r3, [r3, #0] + 8003a94: 6859 ldr r1, [r3, #4] + 8003a96: 687b ldr r3, [r7, #4] + 8003a98: 681b ldr r3, [r3, #0] + 8003a9a: 69ba ldr r2, [r7, #24] + 8003a9c: 430a orrs r2, r1 + 8003a9e: 605a str r2, [r3, #4] + 8003aa0: e000 b.n 8003aa4 return; - 8003832: bf00 nop + 8003aa2: bf00 nop } } } - 8003834: 3734 adds r7, #52 @ 0x34 - 8003836: 46bd mov sp, r7 - 8003838: bd90 pop {r4, r7, pc} + 8003aa4: 3734 adds r7, #52 @ 0x34 + 8003aa6: 46bd mov sp, r7 + 8003aa8: bd90 pop {r4, r7, pc} -0800383a : +08003aaa : * @param hpcd PCD handle * @param address new device address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_SetAddress(PCD_HandleTypeDef *hpcd, uint8_t address) { - 800383a: b580 push {r7, lr} - 800383c: b082 sub sp, #8 - 800383e: af00 add r7, sp, #0 - 8003840: 6078 str r0, [r7, #4] - 8003842: 460b mov r3, r1 - 8003844: 70fb strb r3, [r7, #3] + 8003aaa: b580 push {r7, lr} + 8003aac: b082 sub sp, #8 + 8003aae: af00 add r7, sp, #0 + 8003ab0: 6078 str r0, [r7, #4] + 8003ab2: 460b mov r3, r1 + 8003ab4: 70fb strb r3, [r7, #3] __HAL_LOCK(hpcd); - 8003846: 687b ldr r3, [r7, #4] - 8003848: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 800384c: 2b01 cmp r3, #1 - 800384e: d101 bne.n 8003854 - 8003850: 2302 movs r3, #2 - 8003852: e012 b.n 800387a - 8003854: 687b ldr r3, [r7, #4] - 8003856: 2201 movs r2, #1 - 8003858: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003ab6: 687b ldr r3, [r7, #4] + 8003ab8: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003abc: 2b01 cmp r3, #1 + 8003abe: d101 bne.n 8003ac4 + 8003ac0: 2302 movs r3, #2 + 8003ac2: e012 b.n 8003aea + 8003ac4: 687b ldr r3, [r7, #4] + 8003ac6: 2201 movs r2, #1 + 8003ac8: f883 2494 strb.w r2, [r3, #1172] @ 0x494 hpcd->USB_Address = address; - 800385c: 687b ldr r3, [r7, #4] - 800385e: 78fa ldrb r2, [r7, #3] - 8003860: 745a strb r2, [r3, #17] + 8003acc: 687b ldr r3, [r7, #4] + 8003ace: 78fa ldrb r2, [r7, #3] + 8003ad0: 745a strb r2, [r3, #17] (void)USB_SetDevAddress(hpcd->Instance, address); - 8003862: 687b ldr r3, [r7, #4] - 8003864: 681b ldr r3, [r3, #0] - 8003866: 78fa ldrb r2, [r7, #3] - 8003868: 4611 mov r1, r2 - 800386a: 4618 mov r0, r3 - 800386c: f004 fd0a bl 8008284 + 8003ad2: 687b ldr r3, [r7, #4] + 8003ad4: 681b ldr r3, [r3, #0] + 8003ad6: 78fa ldrb r2, [r7, #3] + 8003ad8: 4611 mov r1, r2 + 8003ada: 4618 mov r0, r3 + 8003adc: f004 fdbe bl 800865c __HAL_UNLOCK(hpcd); - 8003870: 687b ldr r3, [r7, #4] - 8003872: 2200 movs r2, #0 - 8003874: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003ae0: 687b ldr r3, [r7, #4] + 8003ae2: 2200 movs r2, #0 + 8003ae4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 8003878: 2300 movs r3, #0 + 8003ae8: 2300 movs r3, #0 } - 800387a: 4618 mov r0, r3 - 800387c: 3708 adds r7, #8 - 800387e: 46bd mov sp, r7 - 8003880: bd80 pop {r7, pc} + 8003aea: 4618 mov r0, r3 + 8003aec: 3708 adds r7, #8 + 8003aee: 46bd mov sp, r7 + 8003af0: bd80 pop {r7, pc} -08003882 : +08003af2 : * @param ep_type endpoint type * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Open(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint16_t ep_mps, uint8_t ep_type) { - 8003882: b580 push {r7, lr} - 8003884: b084 sub sp, #16 - 8003886: af00 add r7, sp, #0 - 8003888: 6078 str r0, [r7, #4] - 800388a: 4608 mov r0, r1 - 800388c: 4611 mov r1, r2 - 800388e: 461a mov r2, r3 - 8003890: 4603 mov r3, r0 - 8003892: 70fb strb r3, [r7, #3] - 8003894: 460b mov r3, r1 - 8003896: 803b strh r3, [r7, #0] - 8003898: 4613 mov r3, r2 - 800389a: 70bb strb r3, [r7, #2] + 8003af2: b580 push {r7, lr} + 8003af4: b084 sub sp, #16 + 8003af6: af00 add r7, sp, #0 + 8003af8: 6078 str r0, [r7, #4] + 8003afa: 4608 mov r0, r1 + 8003afc: 4611 mov r1, r2 + 8003afe: 461a mov r2, r3 + 8003b00: 4603 mov r3, r0 + 8003b02: 70fb strb r3, [r7, #3] + 8003b04: 460b mov r3, r1 + 8003b06: 803b strh r3, [r7, #0] + 8003b08: 4613 mov r3, r2 + 8003b0a: 70bb strb r3, [r7, #2] HAL_StatusTypeDef ret = HAL_OK; - 800389c: 2300 movs r3, #0 - 800389e: 72fb strb r3, [r7, #11] + 8003b0c: 2300 movs r3, #0 + 8003b0e: 72fb strb r3, [r7, #11] PCD_EPTypeDef *ep; if ((ep_addr & 0x80U) == 0x80U) - 80038a0: f997 3003 ldrsb.w r3, [r7, #3] - 80038a4: 2b00 cmp r3, #0 - 80038a6: da0f bge.n 80038c8 + 8003b10: f997 3003 ldrsb.w r3, [r7, #3] + 8003b14: 2b00 cmp r3, #0 + 8003b16: da0f bge.n 8003b38 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 80038a8: 78fb ldrb r3, [r7, #3] - 80038aa: f003 020f and.w r2, r3, #15 - 80038ae: 4613 mov r3, r2 - 80038b0: 00db lsls r3, r3, #3 - 80038b2: 4413 add r3, r2 - 80038b4: 009b lsls r3, r3, #2 - 80038b6: 3310 adds r3, #16 - 80038b8: 687a ldr r2, [r7, #4] - 80038ba: 4413 add r3, r2 - 80038bc: 3304 adds r3, #4 - 80038be: 60fb str r3, [r7, #12] + 8003b18: 78fb ldrb r3, [r7, #3] + 8003b1a: f003 020f and.w r2, r3, #15 + 8003b1e: 4613 mov r3, r2 + 8003b20: 00db lsls r3, r3, #3 + 8003b22: 4413 add r3, r2 + 8003b24: 009b lsls r3, r3, #2 + 8003b26: 3310 adds r3, #16 + 8003b28: 687a ldr r2, [r7, #4] + 8003b2a: 4413 add r3, r2 + 8003b2c: 3304 adds r3, #4 + 8003b2e: 60fb str r3, [r7, #12] ep->is_in = 1U; - 80038c0: 68fb ldr r3, [r7, #12] - 80038c2: 2201 movs r2, #1 - 80038c4: 705a strb r2, [r3, #1] - 80038c6: e00f b.n 80038e8 + 8003b30: 68fb ldr r3, [r7, #12] + 8003b32: 2201 movs r2, #1 + 8003b34: 705a strb r2, [r3, #1] + 8003b36: e00f b.n 8003b58 } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 80038c8: 78fb ldrb r3, [r7, #3] - 80038ca: f003 020f and.w r2, r3, #15 - 80038ce: 4613 mov r3, r2 - 80038d0: 00db lsls r3, r3, #3 - 80038d2: 4413 add r3, r2 - 80038d4: 009b lsls r3, r3, #2 - 80038d6: f503 7314 add.w r3, r3, #592 @ 0x250 - 80038da: 687a ldr r2, [r7, #4] - 80038dc: 4413 add r3, r2 - 80038de: 3304 adds r3, #4 - 80038e0: 60fb str r3, [r7, #12] + 8003b38: 78fb ldrb r3, [r7, #3] + 8003b3a: f003 020f and.w r2, r3, #15 + 8003b3e: 4613 mov r3, r2 + 8003b40: 00db lsls r3, r3, #3 + 8003b42: 4413 add r3, r2 + 8003b44: 009b lsls r3, r3, #2 + 8003b46: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003b4a: 687a ldr r2, [r7, #4] + 8003b4c: 4413 add r3, r2 + 8003b4e: 3304 adds r3, #4 + 8003b50: 60fb str r3, [r7, #12] ep->is_in = 0U; - 80038e2: 68fb ldr r3, [r7, #12] - 80038e4: 2200 movs r2, #0 - 80038e6: 705a strb r2, [r3, #1] + 8003b52: 68fb ldr r3, [r7, #12] + 8003b54: 2200 movs r2, #0 + 8003b56: 705a strb r2, [r3, #1] } ep->num = ep_addr & EP_ADDR_MSK; - 80038e8: 78fb ldrb r3, [r7, #3] - 80038ea: f003 030f and.w r3, r3, #15 - 80038ee: b2da uxtb r2, r3 - 80038f0: 68fb ldr r3, [r7, #12] - 80038f2: 701a strb r2, [r3, #0] + 8003b58: 78fb ldrb r3, [r7, #3] + 8003b5a: f003 030f and.w r3, r3, #15 + 8003b5e: b2da uxtb r2, r3 + 8003b60: 68fb ldr r3, [r7, #12] + 8003b62: 701a strb r2, [r3, #0] ep->maxpacket = (uint32_t)ep_mps & 0x7FFU; - 80038f4: 883b ldrh r3, [r7, #0] - 80038f6: f3c3 020a ubfx r2, r3, #0, #11 - 80038fa: 68fb ldr r3, [r7, #12] - 80038fc: 609a str r2, [r3, #8] + 8003b64: 883b ldrh r3, [r7, #0] + 8003b66: f3c3 020a ubfx r2, r3, #0, #11 + 8003b6a: 68fb ldr r3, [r7, #12] + 8003b6c: 609a str r2, [r3, #8] ep->type = ep_type; - 80038fe: 68fb ldr r3, [r7, #12] - 8003900: 78ba ldrb r2, [r7, #2] - 8003902: 711a strb r2, [r3, #4] + 8003b6e: 68fb ldr r3, [r7, #12] + 8003b70: 78ba ldrb r2, [r7, #2] + 8003b72: 711a strb r2, [r3, #4] if (ep->is_in != 0U) - 8003904: 68fb ldr r3, [r7, #12] - 8003906: 785b ldrb r3, [r3, #1] - 8003908: 2b00 cmp r3, #0 - 800390a: d004 beq.n 8003916 + 8003b74: 68fb ldr r3, [r7, #12] + 8003b76: 785b ldrb r3, [r3, #1] + 8003b78: 2b00 cmp r3, #0 + 8003b7a: d004 beq.n 8003b86 { /* Assign a Tx FIFO */ ep->tx_fifo_num = ep->num; - 800390c: 68fb ldr r3, [r7, #12] - 800390e: 781b ldrb r3, [r3, #0] - 8003910: 461a mov r2, r3 - 8003912: 68fb ldr r3, [r7, #12] - 8003914: 835a strh r2, [r3, #26] + 8003b7c: 68fb ldr r3, [r7, #12] + 8003b7e: 781b ldrb r3, [r3, #0] + 8003b80: 461a mov r2, r3 + 8003b82: 68fb ldr r3, [r7, #12] + 8003b84: 835a strh r2, [r3, #26] } /* Set initial data PID. */ if (ep_type == EP_TYPE_BULK) - 8003916: 78bb ldrb r3, [r7, #2] - 8003918: 2b02 cmp r3, #2 - 800391a: d102 bne.n 8003922 + 8003b86: 78bb ldrb r3, [r7, #2] + 8003b88: 2b02 cmp r3, #2 + 8003b8a: d102 bne.n 8003b92 { ep->data_pid_start = 0U; - 800391c: 68fb ldr r3, [r7, #12] - 800391e: 2200 movs r2, #0 - 8003920: 715a strb r2, [r3, #5] + 8003b8c: 68fb ldr r3, [r7, #12] + 8003b8e: 2200 movs r2, #0 + 8003b90: 715a strb r2, [r3, #5] } __HAL_LOCK(hpcd); - 8003922: 687b ldr r3, [r7, #4] - 8003924: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8003928: 2b01 cmp r3, #1 - 800392a: d101 bne.n 8003930 - 800392c: 2302 movs r3, #2 - 800392e: e00e b.n 800394e - 8003930: 687b ldr r3, [r7, #4] - 8003932: 2201 movs r2, #1 - 8003934: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003b92: 687b ldr r3, [r7, #4] + 8003b94: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003b98: 2b01 cmp r3, #1 + 8003b9a: d101 bne.n 8003ba0 + 8003b9c: 2302 movs r3, #2 + 8003b9e: e00e b.n 8003bbe + 8003ba0: 687b ldr r3, [r7, #4] + 8003ba2: 2201 movs r2, #1 + 8003ba4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_ActivateEndpoint(hpcd->Instance, ep); - 8003938: 687b ldr r3, [r7, #4] - 800393a: 681b ldr r3, [r3, #0] - 800393c: 68f9 ldr r1, [r7, #12] - 800393e: 4618 mov r0, r3 - 8003940: f003 fe8a bl 8007658 + 8003ba8: 687b ldr r3, [r7, #4] + 8003baa: 681b ldr r3, [r3, #0] + 8003bac: 68f9 ldr r1, [r7, #12] + 8003bae: 4618 mov r0, r3 + 8003bb0: f003 ff3e bl 8007a30 __HAL_UNLOCK(hpcd); - 8003944: 687b ldr r3, [r7, #4] - 8003946: 2200 movs r2, #0 - 8003948: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003bb4: 687b ldr r3, [r7, #4] + 8003bb6: 2200 movs r2, #0 + 8003bb8: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return ret; - 800394c: 7afb ldrb r3, [r7, #11] + 8003bbc: 7afb ldrb r3, [r7, #11] } - 800394e: 4618 mov r0, r3 - 8003950: 3710 adds r7, #16 - 8003952: 46bd mov sp, r7 - 8003954: bd80 pop {r7, pc} + 8003bbe: 4618 mov r0, r3 + 8003bc0: 3710 adds r7, #16 + 8003bc2: 46bd mov sp, r7 + 8003bc4: bd80 pop {r7, pc} -08003956 : +08003bc6 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Close(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 8003956: b580 push {r7, lr} - 8003958: b084 sub sp, #16 - 800395a: af00 add r7, sp, #0 - 800395c: 6078 str r0, [r7, #4] - 800395e: 460b mov r3, r1 - 8003960: 70fb strb r3, [r7, #3] + 8003bc6: b580 push {r7, lr} + 8003bc8: b084 sub sp, #16 + 8003bca: af00 add r7, sp, #0 + 8003bcc: 6078 str r0, [r7, #4] + 8003bce: 460b mov r3, r1 + 8003bd0: 70fb strb r3, [r7, #3] PCD_EPTypeDef *ep; if ((ep_addr & 0x80U) == 0x80U) - 8003962: f997 3003 ldrsb.w r3, [r7, #3] - 8003966: 2b00 cmp r3, #0 - 8003968: da0f bge.n 800398a + 8003bd2: f997 3003 ldrsb.w r3, [r7, #3] + 8003bd6: 2b00 cmp r3, #0 + 8003bd8: da0f bge.n 8003bfa { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 800396a: 78fb ldrb r3, [r7, #3] - 800396c: f003 020f and.w r2, r3, #15 - 8003970: 4613 mov r3, r2 - 8003972: 00db lsls r3, r3, #3 - 8003974: 4413 add r3, r2 - 8003976: 009b lsls r3, r3, #2 - 8003978: 3310 adds r3, #16 - 800397a: 687a ldr r2, [r7, #4] - 800397c: 4413 add r3, r2 - 800397e: 3304 adds r3, #4 - 8003980: 60fb str r3, [r7, #12] + 8003bda: 78fb ldrb r3, [r7, #3] + 8003bdc: f003 020f and.w r2, r3, #15 + 8003be0: 4613 mov r3, r2 + 8003be2: 00db lsls r3, r3, #3 + 8003be4: 4413 add r3, r2 + 8003be6: 009b lsls r3, r3, #2 + 8003be8: 3310 adds r3, #16 + 8003bea: 687a ldr r2, [r7, #4] + 8003bec: 4413 add r3, r2 + 8003bee: 3304 adds r3, #4 + 8003bf0: 60fb str r3, [r7, #12] ep->is_in = 1U; - 8003982: 68fb ldr r3, [r7, #12] - 8003984: 2201 movs r2, #1 - 8003986: 705a strb r2, [r3, #1] - 8003988: e00f b.n 80039aa + 8003bf2: 68fb ldr r3, [r7, #12] + 8003bf4: 2201 movs r2, #1 + 8003bf6: 705a strb r2, [r3, #1] + 8003bf8: e00f b.n 8003c1a } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 800398a: 78fb ldrb r3, [r7, #3] - 800398c: f003 020f and.w r2, r3, #15 - 8003990: 4613 mov r3, r2 - 8003992: 00db lsls r3, r3, #3 - 8003994: 4413 add r3, r2 - 8003996: 009b lsls r3, r3, #2 - 8003998: f503 7314 add.w r3, r3, #592 @ 0x250 - 800399c: 687a ldr r2, [r7, #4] - 800399e: 4413 add r3, r2 - 80039a0: 3304 adds r3, #4 - 80039a2: 60fb str r3, [r7, #12] + 8003bfa: 78fb ldrb r3, [r7, #3] + 8003bfc: f003 020f and.w r2, r3, #15 + 8003c00: 4613 mov r3, r2 + 8003c02: 00db lsls r3, r3, #3 + 8003c04: 4413 add r3, r2 + 8003c06: 009b lsls r3, r3, #2 + 8003c08: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003c0c: 687a ldr r2, [r7, #4] + 8003c0e: 4413 add r3, r2 + 8003c10: 3304 adds r3, #4 + 8003c12: 60fb str r3, [r7, #12] ep->is_in = 0U; - 80039a4: 68fb ldr r3, [r7, #12] - 80039a6: 2200 movs r2, #0 - 80039a8: 705a strb r2, [r3, #1] + 8003c14: 68fb ldr r3, [r7, #12] + 8003c16: 2200 movs r2, #0 + 8003c18: 705a strb r2, [r3, #1] } ep->num = ep_addr & EP_ADDR_MSK; - 80039aa: 78fb ldrb r3, [r7, #3] - 80039ac: f003 030f and.w r3, r3, #15 - 80039b0: b2da uxtb r2, r3 - 80039b2: 68fb ldr r3, [r7, #12] - 80039b4: 701a strb r2, [r3, #0] + 8003c1a: 78fb ldrb r3, [r7, #3] + 8003c1c: f003 030f and.w r3, r3, #15 + 8003c20: b2da uxtb r2, r3 + 8003c22: 68fb ldr r3, [r7, #12] + 8003c24: 701a strb r2, [r3, #0] __HAL_LOCK(hpcd); - 80039b6: 687b ldr r3, [r7, #4] - 80039b8: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 80039bc: 2b01 cmp r3, #1 - 80039be: d101 bne.n 80039c4 - 80039c0: 2302 movs r3, #2 - 80039c2: e00e b.n 80039e2 - 80039c4: 687b ldr r3, [r7, #4] - 80039c6: 2201 movs r2, #1 - 80039c8: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003c26: 687b ldr r3, [r7, #4] + 8003c28: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003c2c: 2b01 cmp r3, #1 + 8003c2e: d101 bne.n 8003c34 + 8003c30: 2302 movs r3, #2 + 8003c32: e00e b.n 8003c52 + 8003c34: 687b ldr r3, [r7, #4] + 8003c36: 2201 movs r2, #1 + 8003c38: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_DeactivateEndpoint(hpcd->Instance, ep); - 80039cc: 687b ldr r3, [r7, #4] - 80039ce: 681b ldr r3, [r3, #0] - 80039d0: 68f9 ldr r1, [r7, #12] - 80039d2: 4618 mov r0, r3 - 80039d4: f003 fec8 bl 8007768 + 8003c3c: 687b ldr r3, [r7, #4] + 8003c3e: 681b ldr r3, [r3, #0] + 8003c40: 68f9 ldr r1, [r7, #12] + 8003c42: 4618 mov r0, r3 + 8003c44: f003 ff7c bl 8007b40 __HAL_UNLOCK(hpcd); - 80039d8: 687b ldr r3, [r7, #4] - 80039da: 2200 movs r2, #0 - 80039dc: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003c48: 687b ldr r3, [r7, #4] + 8003c4a: 2200 movs r2, #0 + 8003c4c: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 80039e0: 2300 movs r3, #0 + 8003c50: 2300 movs r3, #0 } - 80039e2: 4618 mov r0, r3 - 80039e4: 3710 adds r7, #16 - 80039e6: 46bd mov sp, r7 - 80039e8: bd80 pop {r7, pc} + 8003c52: 4618 mov r0, r3 + 8003c54: 3710 adds r7, #16 + 8003c56: 46bd mov sp, r7 + 8003c58: bd80 pop {r7, pc} -080039ea : +08003c5a : * @param pBuf pointer to the reception buffer * @param len amount of data to be received * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Receive(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint32_t len) { - 80039ea: b580 push {r7, lr} - 80039ec: b086 sub sp, #24 - 80039ee: af00 add r7, sp, #0 - 80039f0: 60f8 str r0, [r7, #12] - 80039f2: 607a str r2, [r7, #4] - 80039f4: 603b str r3, [r7, #0] - 80039f6: 460b mov r3, r1 - 80039f8: 72fb strb r3, [r7, #11] + 8003c5a: b580 push {r7, lr} + 8003c5c: b086 sub sp, #24 + 8003c5e: af00 add r7, sp, #0 + 8003c60: 60f8 str r0, [r7, #12] + 8003c62: 607a str r2, [r7, #4] + 8003c64: 603b str r3, [r7, #0] + 8003c66: 460b mov r3, r1 + 8003c68: 72fb strb r3, [r7, #11] PCD_EPTypeDef *ep; ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 80039fa: 7afb ldrb r3, [r7, #11] - 80039fc: f003 020f and.w r2, r3, #15 - 8003a00: 4613 mov r3, r2 - 8003a02: 00db lsls r3, r3, #3 - 8003a04: 4413 add r3, r2 - 8003a06: 009b lsls r3, r3, #2 - 8003a08: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003a0c: 68fa ldr r2, [r7, #12] - 8003a0e: 4413 add r3, r2 - 8003a10: 3304 adds r3, #4 - 8003a12: 617b str r3, [r7, #20] + 8003c6a: 7afb ldrb r3, [r7, #11] + 8003c6c: f003 020f and.w r2, r3, #15 + 8003c70: 4613 mov r3, r2 + 8003c72: 00db lsls r3, r3, #3 + 8003c74: 4413 add r3, r2 + 8003c76: 009b lsls r3, r3, #2 + 8003c78: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003c7c: 68fa ldr r2, [r7, #12] + 8003c7e: 4413 add r3, r2 + 8003c80: 3304 adds r3, #4 + 8003c82: 617b str r3, [r7, #20] /*setup and start the Xfer */ ep->xfer_buff = pBuf; - 8003a14: 697b ldr r3, [r7, #20] - 8003a16: 687a ldr r2, [r7, #4] - 8003a18: 60da str r2, [r3, #12] + 8003c84: 697b ldr r3, [r7, #20] + 8003c86: 687a ldr r2, [r7, #4] + 8003c88: 60da str r2, [r3, #12] ep->xfer_len = len; - 8003a1a: 697b ldr r3, [r7, #20] - 8003a1c: 683a ldr r2, [r7, #0] - 8003a1e: 611a str r2, [r3, #16] + 8003c8a: 697b ldr r3, [r7, #20] + 8003c8c: 683a ldr r2, [r7, #0] + 8003c8e: 611a str r2, [r3, #16] ep->xfer_count = 0U; - 8003a20: 697b ldr r3, [r7, #20] - 8003a22: 2200 movs r2, #0 - 8003a24: 615a str r2, [r3, #20] + 8003c90: 697b ldr r3, [r7, #20] + 8003c92: 2200 movs r2, #0 + 8003c94: 615a str r2, [r3, #20] ep->is_in = 0U; - 8003a26: 697b ldr r3, [r7, #20] - 8003a28: 2200 movs r2, #0 - 8003a2a: 705a strb r2, [r3, #1] + 8003c96: 697b ldr r3, [r7, #20] + 8003c98: 2200 movs r2, #0 + 8003c9a: 705a strb r2, [r3, #1] ep->num = ep_addr & EP_ADDR_MSK; - 8003a2c: 7afb ldrb r3, [r7, #11] - 8003a2e: f003 030f and.w r3, r3, #15 - 8003a32: b2da uxtb r2, r3 - 8003a34: 697b ldr r3, [r7, #20] - 8003a36: 701a strb r2, [r3, #0] + 8003c9c: 7afb ldrb r3, [r7, #11] + 8003c9e: f003 030f and.w r3, r3, #15 + 8003ca2: b2da uxtb r2, r3 + 8003ca4: 697b ldr r3, [r7, #20] + 8003ca6: 701a strb r2, [r3, #0] if (hpcd->Init.dma_enable == 1U) - 8003a38: 68fb ldr r3, [r7, #12] - 8003a3a: 799b ldrb r3, [r3, #6] - 8003a3c: 2b01 cmp r3, #1 - 8003a3e: d102 bne.n 8003a46 + 8003ca8: 68fb ldr r3, [r7, #12] + 8003caa: 799b ldrb r3, [r3, #6] + 8003cac: 2b01 cmp r3, #1 + 8003cae: d102 bne.n 8003cb6 { ep->dma_addr = (uint32_t)pBuf; - 8003a40: 687a ldr r2, [r7, #4] - 8003a42: 697b ldr r3, [r7, #20] - 8003a44: 61da str r2, [r3, #28] + 8003cb0: 687a ldr r2, [r7, #4] + 8003cb2: 697b ldr r3, [r7, #20] + 8003cb4: 61da str r2, [r3, #28] } (void)USB_EPStartXfer(hpcd->Instance, ep, (uint8_t)hpcd->Init.dma_enable); - 8003a46: 68fb ldr r3, [r7, #12] - 8003a48: 6818 ldr r0, [r3, #0] - 8003a4a: 68fb ldr r3, [r7, #12] - 8003a4c: 799b ldrb r3, [r3, #6] - 8003a4e: 461a mov r2, r3 - 8003a50: 6979 ldr r1, [r7, #20] - 8003a52: f003 ff65 bl 8007920 + 8003cb6: 68fb ldr r3, [r7, #12] + 8003cb8: 6818 ldr r0, [r3, #0] + 8003cba: 68fb ldr r3, [r7, #12] + 8003cbc: 799b ldrb r3, [r3, #6] + 8003cbe: 461a mov r2, r3 + 8003cc0: 6979 ldr r1, [r7, #20] + 8003cc2: f004 f819 bl 8007cf8 return HAL_OK; - 8003a56: 2300 movs r3, #0 + 8003cc6: 2300 movs r3, #0 } - 8003a58: 4618 mov r0, r3 - 8003a5a: 3718 adds r7, #24 - 8003a5c: 46bd mov sp, r7 - 8003a5e: bd80 pop {r7, pc} + 8003cc8: 4618 mov r0, r3 + 8003cca: 3718 adds r7, #24 + 8003ccc: 46bd mov sp, r7 + 8003cce: bd80 pop {r7, pc} -08003a60 : +08003cd0 : * @param pBuf pointer to the transmission buffer * @param len amount of data to be sent * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Transmit(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint32_t len) { - 8003a60: b580 push {r7, lr} - 8003a62: b086 sub sp, #24 - 8003a64: af00 add r7, sp, #0 - 8003a66: 60f8 str r0, [r7, #12] - 8003a68: 607a str r2, [r7, #4] - 8003a6a: 603b str r3, [r7, #0] - 8003a6c: 460b mov r3, r1 - 8003a6e: 72fb strb r3, [r7, #11] + 8003cd0: b580 push {r7, lr} + 8003cd2: b086 sub sp, #24 + 8003cd4: af00 add r7, sp, #0 + 8003cd6: 60f8 str r0, [r7, #12] + 8003cd8: 607a str r2, [r7, #4] + 8003cda: 603b str r3, [r7, #0] + 8003cdc: 460b mov r3, r1 + 8003cde: 72fb strb r3, [r7, #11] PCD_EPTypeDef *ep; ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003a70: 7afb ldrb r3, [r7, #11] - 8003a72: f003 020f and.w r2, r3, #15 - 8003a76: 4613 mov r3, r2 - 8003a78: 00db lsls r3, r3, #3 - 8003a7a: 4413 add r3, r2 - 8003a7c: 009b lsls r3, r3, #2 - 8003a7e: 3310 adds r3, #16 - 8003a80: 68fa ldr r2, [r7, #12] - 8003a82: 4413 add r3, r2 - 8003a84: 3304 adds r3, #4 - 8003a86: 617b str r3, [r7, #20] + 8003ce0: 7afb ldrb r3, [r7, #11] + 8003ce2: f003 020f and.w r2, r3, #15 + 8003ce6: 4613 mov r3, r2 + 8003ce8: 00db lsls r3, r3, #3 + 8003cea: 4413 add r3, r2 + 8003cec: 009b lsls r3, r3, #2 + 8003cee: 3310 adds r3, #16 + 8003cf0: 68fa ldr r2, [r7, #12] + 8003cf2: 4413 add r3, r2 + 8003cf4: 3304 adds r3, #4 + 8003cf6: 617b str r3, [r7, #20] /*setup and start the Xfer */ ep->xfer_buff = pBuf; - 8003a88: 697b ldr r3, [r7, #20] - 8003a8a: 687a ldr r2, [r7, #4] - 8003a8c: 60da str r2, [r3, #12] + 8003cf8: 697b ldr r3, [r7, #20] + 8003cfa: 687a ldr r2, [r7, #4] + 8003cfc: 60da str r2, [r3, #12] ep->xfer_len = len; - 8003a8e: 697b ldr r3, [r7, #20] - 8003a90: 683a ldr r2, [r7, #0] - 8003a92: 611a str r2, [r3, #16] + 8003cfe: 697b ldr r3, [r7, #20] + 8003d00: 683a ldr r2, [r7, #0] + 8003d02: 611a str r2, [r3, #16] ep->xfer_count = 0U; - 8003a94: 697b ldr r3, [r7, #20] - 8003a96: 2200 movs r2, #0 - 8003a98: 615a str r2, [r3, #20] + 8003d04: 697b ldr r3, [r7, #20] + 8003d06: 2200 movs r2, #0 + 8003d08: 615a str r2, [r3, #20] ep->is_in = 1U; - 8003a9a: 697b ldr r3, [r7, #20] - 8003a9c: 2201 movs r2, #1 - 8003a9e: 705a strb r2, [r3, #1] + 8003d0a: 697b ldr r3, [r7, #20] + 8003d0c: 2201 movs r2, #1 + 8003d0e: 705a strb r2, [r3, #1] ep->num = ep_addr & EP_ADDR_MSK; - 8003aa0: 7afb ldrb r3, [r7, #11] - 8003aa2: f003 030f and.w r3, r3, #15 - 8003aa6: b2da uxtb r2, r3 - 8003aa8: 697b ldr r3, [r7, #20] - 8003aaa: 701a strb r2, [r3, #0] + 8003d10: 7afb ldrb r3, [r7, #11] + 8003d12: f003 030f and.w r3, r3, #15 + 8003d16: b2da uxtb r2, r3 + 8003d18: 697b ldr r3, [r7, #20] + 8003d1a: 701a strb r2, [r3, #0] if (hpcd->Init.dma_enable == 1U) - 8003aac: 68fb ldr r3, [r7, #12] - 8003aae: 799b ldrb r3, [r3, #6] - 8003ab0: 2b01 cmp r3, #1 - 8003ab2: d102 bne.n 8003aba + 8003d1c: 68fb ldr r3, [r7, #12] + 8003d1e: 799b ldrb r3, [r3, #6] + 8003d20: 2b01 cmp r3, #1 + 8003d22: d102 bne.n 8003d2a { ep->dma_addr = (uint32_t)pBuf; - 8003ab4: 687a ldr r2, [r7, #4] - 8003ab6: 697b ldr r3, [r7, #20] - 8003ab8: 61da str r2, [r3, #28] + 8003d24: 687a ldr r2, [r7, #4] + 8003d26: 697b ldr r3, [r7, #20] + 8003d28: 61da str r2, [r3, #28] } (void)USB_EPStartXfer(hpcd->Instance, ep, (uint8_t)hpcd->Init.dma_enable); - 8003aba: 68fb ldr r3, [r7, #12] - 8003abc: 6818 ldr r0, [r3, #0] - 8003abe: 68fb ldr r3, [r7, #12] - 8003ac0: 799b ldrb r3, [r3, #6] - 8003ac2: 461a mov r2, r3 - 8003ac4: 6979 ldr r1, [r7, #20] - 8003ac6: f003 ff2b bl 8007920 + 8003d2a: 68fb ldr r3, [r7, #12] + 8003d2c: 6818 ldr r0, [r3, #0] + 8003d2e: 68fb ldr r3, [r7, #12] + 8003d30: 799b ldrb r3, [r3, #6] + 8003d32: 461a mov r2, r3 + 8003d34: 6979 ldr r1, [r7, #20] + 8003d36: f003 ffdf bl 8007cf8 return HAL_OK; - 8003aca: 2300 movs r3, #0 + 8003d3a: 2300 movs r3, #0 } - 8003acc: 4618 mov r0, r3 - 8003ace: 3718 adds r7, #24 - 8003ad0: 46bd mov sp, r7 - 8003ad2: bd80 pop {r7, pc} + 8003d3c: 4618 mov r0, r3 + 8003d3e: 3718 adds r7, #24 + 8003d40: 46bd mov sp, r7 + 8003d42: bd80 pop {r7, pc} -08003ad4 : +08003d44 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_SetStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 8003ad4: b580 push {r7, lr} - 8003ad6: b084 sub sp, #16 - 8003ad8: af00 add r7, sp, #0 - 8003ada: 6078 str r0, [r7, #4] - 8003adc: 460b mov r3, r1 - 8003ade: 70fb strb r3, [r7, #3] + 8003d44: b580 push {r7, lr} + 8003d46: b084 sub sp, #16 + 8003d48: af00 add r7, sp, #0 + 8003d4a: 6078 str r0, [r7, #4] + 8003d4c: 460b mov r3, r1 + 8003d4e: 70fb strb r3, [r7, #3] PCD_EPTypeDef *ep; if (((uint32_t)ep_addr & EP_ADDR_MSK) > hpcd->Init.dev_endpoints) - 8003ae0: 78fb ldrb r3, [r7, #3] - 8003ae2: f003 030f and.w r3, r3, #15 - 8003ae6: 687a ldr r2, [r7, #4] - 8003ae8: 7912 ldrb r2, [r2, #4] - 8003aea: 4293 cmp r3, r2 - 8003aec: d901 bls.n 8003af2 + 8003d50: 78fb ldrb r3, [r7, #3] + 8003d52: f003 030f and.w r3, r3, #15 + 8003d56: 687a ldr r2, [r7, #4] + 8003d58: 7912 ldrb r2, [r2, #4] + 8003d5a: 4293 cmp r3, r2 + 8003d5c: d901 bls.n 8003d62 { return HAL_ERROR; - 8003aee: 2301 movs r3, #1 - 8003af0: e04f b.n 8003b92 + 8003d5e: 2301 movs r3, #1 + 8003d60: e04f b.n 8003e02 } if ((0x80U & ep_addr) == 0x80U) - 8003af2: f997 3003 ldrsb.w r3, [r7, #3] - 8003af6: 2b00 cmp r3, #0 - 8003af8: da0f bge.n 8003b1a + 8003d62: f997 3003 ldrsb.w r3, [r7, #3] + 8003d66: 2b00 cmp r3, #0 + 8003d68: da0f bge.n 8003d8a { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003afa: 78fb ldrb r3, [r7, #3] - 8003afc: f003 020f and.w r2, r3, #15 - 8003b00: 4613 mov r3, r2 - 8003b02: 00db lsls r3, r3, #3 - 8003b04: 4413 add r3, r2 - 8003b06: 009b lsls r3, r3, #2 - 8003b08: 3310 adds r3, #16 - 8003b0a: 687a ldr r2, [r7, #4] - 8003b0c: 4413 add r3, r2 - 8003b0e: 3304 adds r3, #4 - 8003b10: 60fb str r3, [r7, #12] + 8003d6a: 78fb ldrb r3, [r7, #3] + 8003d6c: f003 020f and.w r2, r3, #15 + 8003d70: 4613 mov r3, r2 + 8003d72: 00db lsls r3, r3, #3 + 8003d74: 4413 add r3, r2 + 8003d76: 009b lsls r3, r3, #2 + 8003d78: 3310 adds r3, #16 + 8003d7a: 687a ldr r2, [r7, #4] + 8003d7c: 4413 add r3, r2 + 8003d7e: 3304 adds r3, #4 + 8003d80: 60fb str r3, [r7, #12] ep->is_in = 1U; - 8003b12: 68fb ldr r3, [r7, #12] - 8003b14: 2201 movs r2, #1 - 8003b16: 705a strb r2, [r3, #1] - 8003b18: e00d b.n 8003b36 + 8003d82: 68fb ldr r3, [r7, #12] + 8003d84: 2201 movs r2, #1 + 8003d86: 705a strb r2, [r3, #1] + 8003d88: e00d b.n 8003da6 } else { ep = &hpcd->OUT_ep[ep_addr]; - 8003b1a: 78fa ldrb r2, [r7, #3] - 8003b1c: 4613 mov r3, r2 - 8003b1e: 00db lsls r3, r3, #3 - 8003b20: 4413 add r3, r2 - 8003b22: 009b lsls r3, r3, #2 - 8003b24: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003b28: 687a ldr r2, [r7, #4] - 8003b2a: 4413 add r3, r2 - 8003b2c: 3304 adds r3, #4 - 8003b2e: 60fb str r3, [r7, #12] + 8003d8a: 78fa ldrb r2, [r7, #3] + 8003d8c: 4613 mov r3, r2 + 8003d8e: 00db lsls r3, r3, #3 + 8003d90: 4413 add r3, r2 + 8003d92: 009b lsls r3, r3, #2 + 8003d94: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003d98: 687a ldr r2, [r7, #4] + 8003d9a: 4413 add r3, r2 + 8003d9c: 3304 adds r3, #4 + 8003d9e: 60fb str r3, [r7, #12] ep->is_in = 0U; - 8003b30: 68fb ldr r3, [r7, #12] - 8003b32: 2200 movs r2, #0 - 8003b34: 705a strb r2, [r3, #1] + 8003da0: 68fb ldr r3, [r7, #12] + 8003da2: 2200 movs r2, #0 + 8003da4: 705a strb r2, [r3, #1] } ep->is_stall = 1U; - 8003b36: 68fb ldr r3, [r7, #12] - 8003b38: 2201 movs r2, #1 - 8003b3a: 709a strb r2, [r3, #2] + 8003da6: 68fb ldr r3, [r7, #12] + 8003da8: 2201 movs r2, #1 + 8003daa: 709a strb r2, [r3, #2] ep->num = ep_addr & EP_ADDR_MSK; - 8003b3c: 78fb ldrb r3, [r7, #3] - 8003b3e: f003 030f and.w r3, r3, #15 - 8003b42: b2da uxtb r2, r3 - 8003b44: 68fb ldr r3, [r7, #12] - 8003b46: 701a strb r2, [r3, #0] + 8003dac: 78fb ldrb r3, [r7, #3] + 8003dae: f003 030f and.w r3, r3, #15 + 8003db2: b2da uxtb r2, r3 + 8003db4: 68fb ldr r3, [r7, #12] + 8003db6: 701a strb r2, [r3, #0] __HAL_LOCK(hpcd); - 8003b48: 687b ldr r3, [r7, #4] - 8003b4a: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8003b4e: 2b01 cmp r3, #1 - 8003b50: d101 bne.n 8003b56 - 8003b52: 2302 movs r3, #2 - 8003b54: e01d b.n 8003b92 - 8003b56: 687b ldr r3, [r7, #4] - 8003b58: 2201 movs r2, #1 - 8003b5a: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003db8: 687b ldr r3, [r7, #4] + 8003dba: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003dbe: 2b01 cmp r3, #1 + 8003dc0: d101 bne.n 8003dc6 + 8003dc2: 2302 movs r3, #2 + 8003dc4: e01d b.n 8003e02 + 8003dc6: 687b ldr r3, [r7, #4] + 8003dc8: 2201 movs r2, #1 + 8003dca: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_EPSetStall(hpcd->Instance, ep); - 8003b5e: 687b ldr r3, [r7, #4] - 8003b60: 681b ldr r3, [r3, #0] - 8003b62: 68f9 ldr r1, [r7, #12] - 8003b64: 4618 mov r0, r3 - 8003b66: f004 fab9 bl 80080dc + 8003dce: 687b ldr r3, [r7, #4] + 8003dd0: 681b ldr r3, [r3, #0] + 8003dd2: 68f9 ldr r1, [r7, #12] + 8003dd4: 4618 mov r0, r3 + 8003dd6: f004 fb6d bl 80084b4 if ((ep_addr & EP_ADDR_MSK) == 0U) - 8003b6a: 78fb ldrb r3, [r7, #3] - 8003b6c: f003 030f and.w r3, r3, #15 - 8003b70: 2b00 cmp r3, #0 - 8003b72: d109 bne.n 8003b88 + 8003dda: 78fb ldrb r3, [r7, #3] + 8003ddc: f003 030f and.w r3, r3, #15 + 8003de0: 2b00 cmp r3, #0 + 8003de2: d109 bne.n 8003df8 { (void)USB_EP0_OutStart(hpcd->Instance, (uint8_t)hpcd->Init.dma_enable, (uint8_t *)hpcd->Setup); - 8003b74: 687b ldr r3, [r7, #4] - 8003b76: 6818 ldr r0, [r3, #0] - 8003b78: 687b ldr r3, [r7, #4] - 8003b7a: 7999 ldrb r1, [r3, #6] - 8003b7c: 687b ldr r3, [r7, #4] - 8003b7e: f203 439c addw r3, r3, #1180 @ 0x49c - 8003b82: 461a mov r2, r3 - 8003b84: f004 fcaa bl 80084dc + 8003de4: 687b ldr r3, [r7, #4] + 8003de6: 6818 ldr r0, [r3, #0] + 8003de8: 687b ldr r3, [r7, #4] + 8003dea: 7999 ldrb r1, [r3, #6] + 8003dec: 687b ldr r3, [r7, #4] + 8003dee: f203 439c addw r3, r3, #1180 @ 0x49c + 8003df2: 461a mov r2, r3 + 8003df4: f004 fd5e bl 80088b4 } __HAL_UNLOCK(hpcd); - 8003b88: 687b ldr r3, [r7, #4] - 8003b8a: 2200 movs r2, #0 - 8003b8c: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003df8: 687b ldr r3, [r7, #4] + 8003dfa: 2200 movs r2, #0 + 8003dfc: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 8003b90: 2300 movs r3, #0 + 8003e00: 2300 movs r3, #0 } - 8003b92: 4618 mov r0, r3 - 8003b94: 3710 adds r7, #16 - 8003b96: 46bd mov sp, r7 - 8003b98: bd80 pop {r7, pc} + 8003e02: 4618 mov r0, r3 + 8003e04: 3710 adds r7, #16 + 8003e06: 46bd mov sp, r7 + 8003e08: bd80 pop {r7, pc} -08003b9a : +08003e0a : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_ClrStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 8003b9a: b580 push {r7, lr} - 8003b9c: b084 sub sp, #16 - 8003b9e: af00 add r7, sp, #0 - 8003ba0: 6078 str r0, [r7, #4] - 8003ba2: 460b mov r3, r1 - 8003ba4: 70fb strb r3, [r7, #3] + 8003e0a: b580 push {r7, lr} + 8003e0c: b084 sub sp, #16 + 8003e0e: af00 add r7, sp, #0 + 8003e10: 6078 str r0, [r7, #4] + 8003e12: 460b mov r3, r1 + 8003e14: 70fb strb r3, [r7, #3] PCD_EPTypeDef *ep; if (((uint32_t)ep_addr & 0x0FU) > hpcd->Init.dev_endpoints) - 8003ba6: 78fb ldrb r3, [r7, #3] - 8003ba8: f003 030f and.w r3, r3, #15 - 8003bac: 687a ldr r2, [r7, #4] - 8003bae: 7912 ldrb r2, [r2, #4] - 8003bb0: 4293 cmp r3, r2 - 8003bb2: d901 bls.n 8003bb8 + 8003e16: 78fb ldrb r3, [r7, #3] + 8003e18: f003 030f and.w r3, r3, #15 + 8003e1c: 687a ldr r2, [r7, #4] + 8003e1e: 7912 ldrb r2, [r2, #4] + 8003e20: 4293 cmp r3, r2 + 8003e22: d901 bls.n 8003e28 { return HAL_ERROR; - 8003bb4: 2301 movs r3, #1 - 8003bb6: e042 b.n 8003c3e + 8003e24: 2301 movs r3, #1 + 8003e26: e042 b.n 8003eae } if ((0x80U & ep_addr) == 0x80U) - 8003bb8: f997 3003 ldrsb.w r3, [r7, #3] - 8003bbc: 2b00 cmp r3, #0 - 8003bbe: da0f bge.n 8003be0 + 8003e28: f997 3003 ldrsb.w r3, [r7, #3] + 8003e2c: 2b00 cmp r3, #0 + 8003e2e: da0f bge.n 8003e50 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003bc0: 78fb ldrb r3, [r7, #3] - 8003bc2: f003 020f and.w r2, r3, #15 - 8003bc6: 4613 mov r3, r2 - 8003bc8: 00db lsls r3, r3, #3 - 8003bca: 4413 add r3, r2 - 8003bcc: 009b lsls r3, r3, #2 - 8003bce: 3310 adds r3, #16 - 8003bd0: 687a ldr r2, [r7, #4] - 8003bd2: 4413 add r3, r2 - 8003bd4: 3304 adds r3, #4 - 8003bd6: 60fb str r3, [r7, #12] + 8003e30: 78fb ldrb r3, [r7, #3] + 8003e32: f003 020f and.w r2, r3, #15 + 8003e36: 4613 mov r3, r2 + 8003e38: 00db lsls r3, r3, #3 + 8003e3a: 4413 add r3, r2 + 8003e3c: 009b lsls r3, r3, #2 + 8003e3e: 3310 adds r3, #16 + 8003e40: 687a ldr r2, [r7, #4] + 8003e42: 4413 add r3, r2 + 8003e44: 3304 adds r3, #4 + 8003e46: 60fb str r3, [r7, #12] ep->is_in = 1U; - 8003bd8: 68fb ldr r3, [r7, #12] - 8003bda: 2201 movs r2, #1 - 8003bdc: 705a strb r2, [r3, #1] - 8003bde: e00f b.n 8003c00 + 8003e48: 68fb ldr r3, [r7, #12] + 8003e4a: 2201 movs r2, #1 + 8003e4c: 705a strb r2, [r3, #1] + 8003e4e: e00f b.n 8003e70 } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 8003be0: 78fb ldrb r3, [r7, #3] - 8003be2: f003 020f and.w r2, r3, #15 - 8003be6: 4613 mov r3, r2 - 8003be8: 00db lsls r3, r3, #3 - 8003bea: 4413 add r3, r2 - 8003bec: 009b lsls r3, r3, #2 - 8003bee: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003bf2: 687a ldr r2, [r7, #4] - 8003bf4: 4413 add r3, r2 - 8003bf6: 3304 adds r3, #4 - 8003bf8: 60fb str r3, [r7, #12] + 8003e50: 78fb ldrb r3, [r7, #3] + 8003e52: f003 020f and.w r2, r3, #15 + 8003e56: 4613 mov r3, r2 + 8003e58: 00db lsls r3, r3, #3 + 8003e5a: 4413 add r3, r2 + 8003e5c: 009b lsls r3, r3, #2 + 8003e5e: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003e62: 687a ldr r2, [r7, #4] + 8003e64: 4413 add r3, r2 + 8003e66: 3304 adds r3, #4 + 8003e68: 60fb str r3, [r7, #12] ep->is_in = 0U; - 8003bfa: 68fb ldr r3, [r7, #12] - 8003bfc: 2200 movs r2, #0 - 8003bfe: 705a strb r2, [r3, #1] + 8003e6a: 68fb ldr r3, [r7, #12] + 8003e6c: 2200 movs r2, #0 + 8003e6e: 705a strb r2, [r3, #1] } ep->is_stall = 0U; - 8003c00: 68fb ldr r3, [r7, #12] - 8003c02: 2200 movs r2, #0 - 8003c04: 709a strb r2, [r3, #2] + 8003e70: 68fb ldr r3, [r7, #12] + 8003e72: 2200 movs r2, #0 + 8003e74: 709a strb r2, [r3, #2] ep->num = ep_addr & EP_ADDR_MSK; - 8003c06: 78fb ldrb r3, [r7, #3] - 8003c08: f003 030f and.w r3, r3, #15 - 8003c0c: b2da uxtb r2, r3 - 8003c0e: 68fb ldr r3, [r7, #12] - 8003c10: 701a strb r2, [r3, #0] + 8003e76: 78fb ldrb r3, [r7, #3] + 8003e78: f003 030f and.w r3, r3, #15 + 8003e7c: b2da uxtb r2, r3 + 8003e7e: 68fb ldr r3, [r7, #12] + 8003e80: 701a strb r2, [r3, #0] __HAL_LOCK(hpcd); - 8003c12: 687b ldr r3, [r7, #4] - 8003c14: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8003c18: 2b01 cmp r3, #1 - 8003c1a: d101 bne.n 8003c20 - 8003c1c: 2302 movs r3, #2 - 8003c1e: e00e b.n 8003c3e - 8003c20: 687b ldr r3, [r7, #4] - 8003c22: 2201 movs r2, #1 - 8003c24: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003e82: 687b ldr r3, [r7, #4] + 8003e84: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003e88: 2b01 cmp r3, #1 + 8003e8a: d101 bne.n 8003e90 + 8003e8c: 2302 movs r3, #2 + 8003e8e: e00e b.n 8003eae + 8003e90: 687b ldr r3, [r7, #4] + 8003e92: 2201 movs r2, #1 + 8003e94: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_EPClearStall(hpcd->Instance, ep); - 8003c28: 687b ldr r3, [r7, #4] - 8003c2a: 681b ldr r3, [r3, #0] - 8003c2c: 68f9 ldr r1, [r7, #12] - 8003c2e: 4618 mov r0, r3 - 8003c30: f004 fac2 bl 80081b8 + 8003e98: 687b ldr r3, [r7, #4] + 8003e9a: 681b ldr r3, [r3, #0] + 8003e9c: 68f9 ldr r1, [r7, #12] + 8003e9e: 4618 mov r0, r3 + 8003ea0: f004 fb76 bl 8008590 __HAL_UNLOCK(hpcd); - 8003c34: 687b ldr r3, [r7, #4] - 8003c36: 2200 movs r2, #0 - 8003c38: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003ea4: 687b ldr r3, [r7, #4] + 8003ea6: 2200 movs r2, #0 + 8003ea8: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 8003c3c: 2300 movs r3, #0 + 8003eac: 2300 movs r3, #0 } - 8003c3e: 4618 mov r0, r3 - 8003c40: 3710 adds r7, #16 - 8003c42: 46bd mov sp, r7 - 8003c44: bd80 pop {r7, pc} + 8003eae: 4618 mov r0, r3 + 8003eb0: 3710 adds r7, #16 + 8003eb2: 46bd mov sp, r7 + 8003eb4: bd80 pop {r7, pc} -08003c46 : +08003eb6 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Abort(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 8003c46: b580 push {r7, lr} - 8003c48: b084 sub sp, #16 - 8003c4a: af00 add r7, sp, #0 - 8003c4c: 6078 str r0, [r7, #4] - 8003c4e: 460b mov r3, r1 - 8003c50: 70fb strb r3, [r7, #3] + 8003eb6: b580 push {r7, lr} + 8003eb8: b084 sub sp, #16 + 8003eba: af00 add r7, sp, #0 + 8003ebc: 6078 str r0, [r7, #4] + 8003ebe: 460b mov r3, r1 + 8003ec0: 70fb strb r3, [r7, #3] HAL_StatusTypeDef ret; PCD_EPTypeDef *ep; if ((0x80U & ep_addr) == 0x80U) - 8003c52: f997 3003 ldrsb.w r3, [r7, #3] - 8003c56: 2b00 cmp r3, #0 - 8003c58: da0c bge.n 8003c74 + 8003ec2: f997 3003 ldrsb.w r3, [r7, #3] + 8003ec6: 2b00 cmp r3, #0 + 8003ec8: da0c bge.n 8003ee4 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003c5a: 78fb ldrb r3, [r7, #3] - 8003c5c: f003 020f and.w r2, r3, #15 - 8003c60: 4613 mov r3, r2 - 8003c62: 00db lsls r3, r3, #3 - 8003c64: 4413 add r3, r2 - 8003c66: 009b lsls r3, r3, #2 - 8003c68: 3310 adds r3, #16 - 8003c6a: 687a ldr r2, [r7, #4] - 8003c6c: 4413 add r3, r2 - 8003c6e: 3304 adds r3, #4 - 8003c70: 60fb str r3, [r7, #12] - 8003c72: e00c b.n 8003c8e + 8003eca: 78fb ldrb r3, [r7, #3] + 8003ecc: f003 020f and.w r2, r3, #15 + 8003ed0: 4613 mov r3, r2 + 8003ed2: 00db lsls r3, r3, #3 + 8003ed4: 4413 add r3, r2 + 8003ed6: 009b lsls r3, r3, #2 + 8003ed8: 3310 adds r3, #16 + 8003eda: 687a ldr r2, [r7, #4] + 8003edc: 4413 add r3, r2 + 8003ede: 3304 adds r3, #4 + 8003ee0: 60fb str r3, [r7, #12] + 8003ee2: e00c b.n 8003efe } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 8003c74: 78fb ldrb r3, [r7, #3] - 8003c76: f003 020f and.w r2, r3, #15 - 8003c7a: 4613 mov r3, r2 - 8003c7c: 00db lsls r3, r3, #3 - 8003c7e: 4413 add r3, r2 - 8003c80: 009b lsls r3, r3, #2 - 8003c82: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003c86: 687a ldr r2, [r7, #4] - 8003c88: 4413 add r3, r2 - 8003c8a: 3304 adds r3, #4 - 8003c8c: 60fb str r3, [r7, #12] + 8003ee4: 78fb ldrb r3, [r7, #3] + 8003ee6: f003 020f and.w r2, r3, #15 + 8003eea: 4613 mov r3, r2 + 8003eec: 00db lsls r3, r3, #3 + 8003eee: 4413 add r3, r2 + 8003ef0: 009b lsls r3, r3, #2 + 8003ef2: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003ef6: 687a ldr r2, [r7, #4] + 8003ef8: 4413 add r3, r2 + 8003efa: 3304 adds r3, #4 + 8003efc: 60fb str r3, [r7, #12] } /* Stop Xfer */ ret = USB_EPStopXfer(hpcd->Instance, ep); - 8003c8e: 687b ldr r3, [r7, #4] - 8003c90: 681b ldr r3, [r3, #0] - 8003c92: 68f9 ldr r1, [r7, #12] - 8003c94: 4618 mov r0, r3 - 8003c96: f004 f8e1 bl 8007e5c - 8003c9a: 4603 mov r3, r0 - 8003c9c: 72fb strb r3, [r7, #11] + 8003efe: 687b ldr r3, [r7, #4] + 8003f00: 681b ldr r3, [r3, #0] + 8003f02: 68f9 ldr r1, [r7, #12] + 8003f04: 4618 mov r0, r3 + 8003f06: f004 f995 bl 8008234 + 8003f0a: 4603 mov r3, r0 + 8003f0c: 72fb strb r3, [r7, #11] return ret; - 8003c9e: 7afb ldrb r3, [r7, #11] + 8003f0e: 7afb ldrb r3, [r7, #11] } - 8003ca0: 4618 mov r0, r3 - 8003ca2: 3710 adds r7, #16 - 8003ca4: 46bd mov sp, r7 - 8003ca6: bd80 pop {r7, pc} + 8003f10: 4618 mov r0, r3 + 8003f12: 3710 adds r7, #16 + 8003f14: 46bd mov sp, r7 + 8003f16: bd80 pop {r7, pc} -08003ca8 : +08003f18 : * @param hpcd PCD handle * @param epnum endpoint number * @retval HAL status */ static HAL_StatusTypeDef PCD_WriteEmptyTxFifo(PCD_HandleTypeDef *hpcd, uint32_t epnum) { - 8003ca8: b580 push {r7, lr} - 8003caa: b08a sub sp, #40 @ 0x28 - 8003cac: af02 add r7, sp, #8 - 8003cae: 6078 str r0, [r7, #4] - 8003cb0: 6039 str r1, [r7, #0] + 8003f18: b580 push {r7, lr} + 8003f1a: b08a sub sp, #40 @ 0x28 + 8003f1c: af02 add r7, sp, #8 + 8003f1e: 6078 str r0, [r7, #4] + 8003f20: 6039 str r1, [r7, #0] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003cb2: 687b ldr r3, [r7, #4] - 8003cb4: 681b ldr r3, [r3, #0] - 8003cb6: 617b str r3, [r7, #20] + 8003f22: 687b ldr r3, [r7, #4] + 8003f24: 681b ldr r3, [r3, #0] + 8003f26: 617b str r3, [r7, #20] uint32_t USBx_BASE = (uint32_t)USBx; - 8003cb8: 697b ldr r3, [r7, #20] - 8003cba: 613b str r3, [r7, #16] + 8003f28: 697b ldr r3, [r7, #20] + 8003f2a: 613b str r3, [r7, #16] USB_OTG_EPTypeDef *ep; uint32_t len; uint32_t len32b; uint32_t fifoemptymsk; ep = &hpcd->IN_ep[epnum]; - 8003cbc: 683a ldr r2, [r7, #0] - 8003cbe: 4613 mov r3, r2 - 8003cc0: 00db lsls r3, r3, #3 - 8003cc2: 4413 add r3, r2 - 8003cc4: 009b lsls r3, r3, #2 - 8003cc6: 3310 adds r3, #16 - 8003cc8: 687a ldr r2, [r7, #4] - 8003cca: 4413 add r3, r2 - 8003ccc: 3304 adds r3, #4 - 8003cce: 60fb str r3, [r7, #12] + 8003f2c: 683a ldr r2, [r7, #0] + 8003f2e: 4613 mov r3, r2 + 8003f30: 00db lsls r3, r3, #3 + 8003f32: 4413 add r3, r2 + 8003f34: 009b lsls r3, r3, #2 + 8003f36: 3310 adds r3, #16 + 8003f38: 687a ldr r2, [r7, #4] + 8003f3a: 4413 add r3, r2 + 8003f3c: 3304 adds r3, #4 + 8003f3e: 60fb str r3, [r7, #12] if (ep->xfer_count > ep->xfer_len) - 8003cd0: 68fb ldr r3, [r7, #12] - 8003cd2: 695a ldr r2, [r3, #20] - 8003cd4: 68fb ldr r3, [r7, #12] - 8003cd6: 691b ldr r3, [r3, #16] - 8003cd8: 429a cmp r2, r3 - 8003cda: d901 bls.n 8003ce0 + 8003f40: 68fb ldr r3, [r7, #12] + 8003f42: 695a ldr r2, [r3, #20] + 8003f44: 68fb ldr r3, [r7, #12] + 8003f46: 691b ldr r3, [r3, #16] + 8003f48: 429a cmp r2, r3 + 8003f4a: d901 bls.n 8003f50 { return HAL_ERROR; - 8003cdc: 2301 movs r3, #1 - 8003cde: e06b b.n 8003db8 + 8003f4c: 2301 movs r3, #1 + 8003f4e: e06b b.n 8004028 } len = ep->xfer_len - ep->xfer_count; - 8003ce0: 68fb ldr r3, [r7, #12] - 8003ce2: 691a ldr r2, [r3, #16] - 8003ce4: 68fb ldr r3, [r7, #12] - 8003ce6: 695b ldr r3, [r3, #20] - 8003ce8: 1ad3 subs r3, r2, r3 - 8003cea: 61fb str r3, [r7, #28] + 8003f50: 68fb ldr r3, [r7, #12] + 8003f52: 691a ldr r2, [r3, #16] + 8003f54: 68fb ldr r3, [r7, #12] + 8003f56: 695b ldr r3, [r3, #20] + 8003f58: 1ad3 subs r3, r2, r3 + 8003f5a: 61fb str r3, [r7, #28] if (len > ep->maxpacket) - 8003cec: 68fb ldr r3, [r7, #12] - 8003cee: 689b ldr r3, [r3, #8] - 8003cf0: 69fa ldr r2, [r7, #28] - 8003cf2: 429a cmp r2, r3 - 8003cf4: d902 bls.n 8003cfc + 8003f5c: 68fb ldr r3, [r7, #12] + 8003f5e: 689b ldr r3, [r3, #8] + 8003f60: 69fa ldr r2, [r7, #28] + 8003f62: 429a cmp r2, r3 + 8003f64: d902 bls.n 8003f6c { len = ep->maxpacket; - 8003cf6: 68fb ldr r3, [r7, #12] - 8003cf8: 689b ldr r3, [r3, #8] - 8003cfa: 61fb str r3, [r7, #28] + 8003f66: 68fb ldr r3, [r7, #12] + 8003f68: 689b ldr r3, [r3, #8] + 8003f6a: 61fb str r3, [r7, #28] } len32b = (len + 3U) / 4U; - 8003cfc: 69fb ldr r3, [r7, #28] - 8003cfe: 3303 adds r3, #3 - 8003d00: 089b lsrs r3, r3, #2 - 8003d02: 61bb str r3, [r7, #24] + 8003f6c: 69fb ldr r3, [r7, #28] + 8003f6e: 3303 adds r3, #3 + 8003f70: 089b lsrs r3, r3, #2 + 8003f72: 61bb str r3, [r7, #24] while (((USBx_INEP(epnum)->DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV) >= len32b) && - 8003d04: e02a b.n 8003d5c + 8003f74: e02a b.n 8003fcc (ep->xfer_count < ep->xfer_len) && (ep->xfer_len != 0U)) { /* Write the FIFO */ len = ep->xfer_len - ep->xfer_count; - 8003d06: 68fb ldr r3, [r7, #12] - 8003d08: 691a ldr r2, [r3, #16] - 8003d0a: 68fb ldr r3, [r7, #12] - 8003d0c: 695b ldr r3, [r3, #20] - 8003d0e: 1ad3 subs r3, r2, r3 - 8003d10: 61fb str r3, [r7, #28] + 8003f76: 68fb ldr r3, [r7, #12] + 8003f78: 691a ldr r2, [r3, #16] + 8003f7a: 68fb ldr r3, [r7, #12] + 8003f7c: 695b ldr r3, [r3, #20] + 8003f7e: 1ad3 subs r3, r2, r3 + 8003f80: 61fb str r3, [r7, #28] if (len > ep->maxpacket) - 8003d12: 68fb ldr r3, [r7, #12] - 8003d14: 689b ldr r3, [r3, #8] - 8003d16: 69fa ldr r2, [r7, #28] - 8003d18: 429a cmp r2, r3 - 8003d1a: d902 bls.n 8003d22 + 8003f82: 68fb ldr r3, [r7, #12] + 8003f84: 689b ldr r3, [r3, #8] + 8003f86: 69fa ldr r2, [r7, #28] + 8003f88: 429a cmp r2, r3 + 8003f8a: d902 bls.n 8003f92 { len = ep->maxpacket; - 8003d1c: 68fb ldr r3, [r7, #12] - 8003d1e: 689b ldr r3, [r3, #8] - 8003d20: 61fb str r3, [r7, #28] + 8003f8c: 68fb ldr r3, [r7, #12] + 8003f8e: 689b ldr r3, [r3, #8] + 8003f90: 61fb str r3, [r7, #28] } len32b = (len + 3U) / 4U; - 8003d22: 69fb ldr r3, [r7, #28] - 8003d24: 3303 adds r3, #3 - 8003d26: 089b lsrs r3, r3, #2 - 8003d28: 61bb str r3, [r7, #24] + 8003f92: 69fb ldr r3, [r7, #28] + 8003f94: 3303 adds r3, #3 + 8003f96: 089b lsrs r3, r3, #2 + 8003f98: 61bb str r3, [r7, #24] (void)USB_WritePacket(USBx, ep->xfer_buff, (uint8_t)epnum, (uint16_t)len, - 8003d2a: 68fb ldr r3, [r7, #12] - 8003d2c: 68d9 ldr r1, [r3, #12] - 8003d2e: 683b ldr r3, [r7, #0] - 8003d30: b2da uxtb r2, r3 - 8003d32: 69fb ldr r3, [r7, #28] - 8003d34: b298 uxth r0, r3 + 8003f9a: 68fb ldr r3, [r7, #12] + 8003f9c: 68d9 ldr r1, [r3, #12] + 8003f9e: 683b ldr r3, [r7, #0] + 8003fa0: b2da uxtb r2, r3 + 8003fa2: 69fb ldr r3, [r7, #28] + 8003fa4: b298 uxth r0, r3 (uint8_t)hpcd->Init.dma_enable); - 8003d36: 687b ldr r3, [r7, #4] - 8003d38: 799b ldrb r3, [r3, #6] + 8003fa6: 687b ldr r3, [r7, #4] + 8003fa8: 799b ldrb r3, [r3, #6] (void)USB_WritePacket(USBx, ep->xfer_buff, (uint8_t)epnum, (uint16_t)len, - 8003d3a: 9300 str r3, [sp, #0] - 8003d3c: 4603 mov r3, r0 - 8003d3e: 6978 ldr r0, [r7, #20] - 8003d40: f004 f936 bl 8007fb0 + 8003faa: 9300 str r3, [sp, #0] + 8003fac: 4603 mov r3, r0 + 8003fae: 6978 ldr r0, [r7, #20] + 8003fb0: f004 f9ea bl 8008388 ep->xfer_buff += len; - 8003d44: 68fb ldr r3, [r7, #12] - 8003d46: 68da ldr r2, [r3, #12] - 8003d48: 69fb ldr r3, [r7, #28] - 8003d4a: 441a add r2, r3 - 8003d4c: 68fb ldr r3, [r7, #12] - 8003d4e: 60da str r2, [r3, #12] + 8003fb4: 68fb ldr r3, [r7, #12] + 8003fb6: 68da ldr r2, [r3, #12] + 8003fb8: 69fb ldr r3, [r7, #28] + 8003fba: 441a add r2, r3 + 8003fbc: 68fb ldr r3, [r7, #12] + 8003fbe: 60da str r2, [r3, #12] ep->xfer_count += len; - 8003d50: 68fb ldr r3, [r7, #12] - 8003d52: 695a ldr r2, [r3, #20] - 8003d54: 69fb ldr r3, [r7, #28] - 8003d56: 441a add r2, r3 - 8003d58: 68fb ldr r3, [r7, #12] - 8003d5a: 615a str r2, [r3, #20] + 8003fc0: 68fb ldr r3, [r7, #12] + 8003fc2: 695a ldr r2, [r3, #20] + 8003fc4: 69fb ldr r3, [r7, #28] + 8003fc6: 441a add r2, r3 + 8003fc8: 68fb ldr r3, [r7, #12] + 8003fca: 615a str r2, [r3, #20] while (((USBx_INEP(epnum)->DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV) >= len32b) && - 8003d5c: 683b ldr r3, [r7, #0] - 8003d5e: 015a lsls r2, r3, #5 - 8003d60: 693b ldr r3, [r7, #16] - 8003d62: 4413 add r3, r2 - 8003d64: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003d68: 699b ldr r3, [r3, #24] - 8003d6a: b29b uxth r3, r3 + 8003fcc: 683b ldr r3, [r7, #0] + 8003fce: 015a lsls r2, r3, #5 + 8003fd0: 693b ldr r3, [r7, #16] + 8003fd2: 4413 add r3, r2 + 8003fd4: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003fd8: 699b ldr r3, [r3, #24] + 8003fda: b29b uxth r3, r3 (ep->xfer_count < ep->xfer_len) && (ep->xfer_len != 0U)) - 8003d6c: 69ba ldr r2, [r7, #24] - 8003d6e: 429a cmp r2, r3 - 8003d70: d809 bhi.n 8003d86 - 8003d72: 68fb ldr r3, [r7, #12] - 8003d74: 695a ldr r2, [r3, #20] - 8003d76: 68fb ldr r3, [r7, #12] - 8003d78: 691b ldr r3, [r3, #16] + 8003fdc: 69ba ldr r2, [r7, #24] + 8003fde: 429a cmp r2, r3 + 8003fe0: d809 bhi.n 8003ff6 + 8003fe2: 68fb ldr r3, [r7, #12] + 8003fe4: 695a ldr r2, [r3, #20] + 8003fe6: 68fb ldr r3, [r7, #12] + 8003fe8: 691b ldr r3, [r3, #16] while (((USBx_INEP(epnum)->DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV) >= len32b) && - 8003d7a: 429a cmp r2, r3 - 8003d7c: d203 bcs.n 8003d86 + 8003fea: 429a cmp r2, r3 + 8003fec: d203 bcs.n 8003ff6 (ep->xfer_count < ep->xfer_len) && (ep->xfer_len != 0U)) - 8003d7e: 68fb ldr r3, [r7, #12] - 8003d80: 691b ldr r3, [r3, #16] - 8003d82: 2b00 cmp r3, #0 - 8003d84: d1bf bne.n 8003d06 + 8003fee: 68fb ldr r3, [r7, #12] + 8003ff0: 691b ldr r3, [r3, #16] + 8003ff2: 2b00 cmp r3, #0 + 8003ff4: d1bf bne.n 8003f76 } if (ep->xfer_len <= ep->xfer_count) - 8003d86: 68fb ldr r3, [r7, #12] - 8003d88: 691a ldr r2, [r3, #16] - 8003d8a: 68fb ldr r3, [r7, #12] - 8003d8c: 695b ldr r3, [r3, #20] - 8003d8e: 429a cmp r2, r3 - 8003d90: d811 bhi.n 8003db6 + 8003ff6: 68fb ldr r3, [r7, #12] + 8003ff8: 691a ldr r2, [r3, #16] + 8003ffa: 68fb ldr r3, [r7, #12] + 8003ffc: 695b ldr r3, [r3, #20] + 8003ffe: 429a cmp r2, r3 + 8004000: d811 bhi.n 8004026 { fifoemptymsk = (uint32_t)(0x1UL << (epnum & EP_ADDR_MSK)); - 8003d92: 683b ldr r3, [r7, #0] - 8003d94: f003 030f and.w r3, r3, #15 - 8003d98: 2201 movs r2, #1 - 8003d9a: fa02 f303 lsl.w r3, r2, r3 - 8003d9e: 60bb str r3, [r7, #8] + 8004002: 683b ldr r3, [r7, #0] + 8004004: f003 030f and.w r3, r3, #15 + 8004008: 2201 movs r2, #1 + 800400a: fa02 f303 lsl.w r3, r2, r3 + 800400e: 60bb str r3, [r7, #8] USBx_DEVICE->DIEPEMPMSK &= ~fifoemptymsk; - 8003da0: 693b ldr r3, [r7, #16] - 8003da2: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003da6: 6b5a ldr r2, [r3, #52] @ 0x34 - 8003da8: 68bb ldr r3, [r7, #8] - 8003daa: 43db mvns r3, r3 - 8003dac: 6939 ldr r1, [r7, #16] - 8003dae: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8003db2: 4013 ands r3, r2 - 8003db4: 634b str r3, [r1, #52] @ 0x34 + 8004010: 693b ldr r3, [r7, #16] + 8004012: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8004016: 6b5a ldr r2, [r3, #52] @ 0x34 + 8004018: 68bb ldr r3, [r7, #8] + 800401a: 43db mvns r3, r3 + 800401c: 6939 ldr r1, [r7, #16] + 800401e: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8004022: 4013 ands r3, r2 + 8004024: 634b str r3, [r1, #52] @ 0x34 } return HAL_OK; - 8003db6: 2300 movs r3, #0 + 8004026: 2300 movs r3, #0 } - 8003db8: 4618 mov r0, r3 - 8003dba: 3720 adds r7, #32 - 8003dbc: 46bd mov sp, r7 - 8003dbe: bd80 pop {r7, pc} + 8004028: 4618 mov r0, r3 + 800402a: 3720 adds r7, #32 + 800402c: 46bd mov sp, r7 + 800402e: bd80 pop {r7, pc} -08003dc0 : +08004030 : * @param hpcd PCD handle * @param epnum endpoint number * @retval HAL status */ static HAL_StatusTypeDef PCD_EP_OutXfrComplete_int(PCD_HandleTypeDef *hpcd, uint32_t epnum) { - 8003dc0: b580 push {r7, lr} - 8003dc2: b088 sub sp, #32 - 8003dc4: af00 add r7, sp, #0 - 8003dc6: 6078 str r0, [r7, #4] - 8003dc8: 6039 str r1, [r7, #0] + 8004030: b580 push {r7, lr} + 8004032: b088 sub sp, #32 + 8004034: af00 add r7, sp, #0 + 8004036: 6078 str r0, [r7, #4] + 8004038: 6039 str r1, [r7, #0] USB_OTG_EPTypeDef *ep; const USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003dca: 687b ldr r3, [r7, #4] - 8003dcc: 681b ldr r3, [r3, #0] - 8003dce: 61fb str r3, [r7, #28] + 800403a: 687b ldr r3, [r7, #4] + 800403c: 681b ldr r3, [r3, #0] + 800403e: 61fb str r3, [r7, #28] uint32_t USBx_BASE = (uint32_t)USBx; - 8003dd0: 69fb ldr r3, [r7, #28] - 8003dd2: 61bb str r3, [r7, #24] + 8004040: 69fb ldr r3, [r7, #28] + 8004042: 61bb str r3, [r7, #24] uint32_t gSNPSiD = *(__IO const uint32_t *)(&USBx->CID + 0x1U); - 8003dd4: 69fb ldr r3, [r7, #28] - 8003dd6: 333c adds r3, #60 @ 0x3c - 8003dd8: 3304 adds r3, #4 - 8003dda: 681b ldr r3, [r3, #0] - 8003ddc: 617b str r3, [r7, #20] + 8004044: 69fb ldr r3, [r7, #28] + 8004046: 333c adds r3, #60 @ 0x3c + 8004048: 3304 adds r3, #4 + 800404a: 681b ldr r3, [r3, #0] + 800404c: 617b str r3, [r7, #20] uint32_t DoepintReg = USBx_OUTEP(epnum)->DOEPINT; - 8003dde: 683b ldr r3, [r7, #0] - 8003de0: 015a lsls r2, r3, #5 - 8003de2: 69bb ldr r3, [r7, #24] - 8003de4: 4413 add r3, r2 - 8003de6: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003dea: 689b ldr r3, [r3, #8] - 8003dec: 613b str r3, [r7, #16] + 800404e: 683b ldr r3, [r7, #0] + 8004050: 015a lsls r2, r3, #5 + 8004052: 69bb ldr r3, [r7, #24] + 8004054: 4413 add r3, r2 + 8004056: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800405a: 689b ldr r3, [r3, #8] + 800405c: 613b str r3, [r7, #16] if (hpcd->Init.dma_enable == 1U) - 8003dee: 687b ldr r3, [r7, #4] - 8003df0: 799b ldrb r3, [r3, #6] - 8003df2: 2b01 cmp r3, #1 - 8003df4: d17b bne.n 8003eee + 800405e: 687b ldr r3, [r7, #4] + 8004060: 799b ldrb r3, [r3, #6] + 8004062: 2b01 cmp r3, #1 + 8004064: d17b bne.n 800415e { if ((DoepintReg & USB_OTG_DOEPINT_STUP) == USB_OTG_DOEPINT_STUP) /* Class C */ - 8003df6: 693b ldr r3, [r7, #16] - 8003df8: f003 0308 and.w r3, r3, #8 - 8003dfc: 2b00 cmp r3, #0 - 8003dfe: d015 beq.n 8003e2c + 8004066: 693b ldr r3, [r7, #16] + 8004068: f003 0308 and.w r3, r3, #8 + 800406c: 2b00 cmp r3, #0 + 800406e: d015 beq.n 800409c { /* StupPktRcvd = 1 this is a setup packet */ if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003e00: 697b ldr r3, [r7, #20] - 8003e02: 4a61 ldr r2, [pc, #388] @ (8003f88 ) - 8003e04: 4293 cmp r3, r2 - 8003e06: f240 80b9 bls.w 8003f7c + 8004070: 697b ldr r3, [r7, #20] + 8004072: 4a61 ldr r2, [pc, #388] @ (80041f8 ) + 8004074: 4293 cmp r3, r2 + 8004076: f240 80b9 bls.w 80041ec ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX)) - 8003e0a: 693b ldr r3, [r7, #16] - 8003e0c: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 800407a: 693b ldr r3, [r7, #16] + 800407c: f403 4300 and.w r3, r3, #32768 @ 0x8000 if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003e10: 2b00 cmp r3, #0 - 8003e12: f000 80b3 beq.w 8003f7c + 8004080: 2b00 cmp r3, #0 + 8004082: f000 80b3 beq.w 80041ec { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003e16: 683b ldr r3, [r7, #0] - 8003e18: 015a lsls r2, r3, #5 - 8003e1a: 69bb ldr r3, [r7, #24] - 8003e1c: 4413 add r3, r2 - 8003e1e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003e22: 461a mov r2, r3 - 8003e24: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003e28: 6093 str r3, [r2, #8] - 8003e2a: e0a7 b.n 8003f7c + 8004086: 683b ldr r3, [r7, #0] + 8004088: 015a lsls r2, r3, #5 + 800408a: 69bb ldr r3, [r7, #24] + 800408c: 4413 add r3, r2 + 800408e: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8004092: 461a mov r2, r3 + 8004094: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8004098: 6093 str r3, [r2, #8] + 800409a: e0a7 b.n 80041ec } } else if ((DoepintReg & USB_OTG_DOEPINT_OTEPSPR) == USB_OTG_DOEPINT_OTEPSPR) /* Class E */ - 8003e2c: 693b ldr r3, [r7, #16] - 8003e2e: f003 0320 and.w r3, r3, #32 - 8003e32: 2b00 cmp r3, #0 - 8003e34: d009 beq.n 8003e4a + 800409c: 693b ldr r3, [r7, #16] + 800409e: f003 0320 and.w r3, r3, #32 + 80040a2: 2b00 cmp r3, #0 + 80040a4: d009 beq.n 80040ba { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPSPR); - 8003e36: 683b ldr r3, [r7, #0] - 8003e38: 015a lsls r2, r3, #5 - 8003e3a: 69bb ldr r3, [r7, #24] - 8003e3c: 4413 add r3, r2 - 8003e3e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003e42: 461a mov r2, r3 - 8003e44: 2320 movs r3, #32 - 8003e46: 6093 str r3, [r2, #8] - 8003e48: e098 b.n 8003f7c + 80040a6: 683b ldr r3, [r7, #0] + 80040a8: 015a lsls r2, r3, #5 + 80040aa: 69bb ldr r3, [r7, #24] + 80040ac: 4413 add r3, r2 + 80040ae: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80040b2: 461a mov r2, r3 + 80040b4: 2320 movs r3, #32 + 80040b6: 6093 str r3, [r2, #8] + 80040b8: e098 b.n 80041ec } else if ((DoepintReg & (USB_OTG_DOEPINT_STUP | USB_OTG_DOEPINT_OTEPSPR)) == 0U) - 8003e4a: 693b ldr r3, [r7, #16] - 8003e4c: f003 0328 and.w r3, r3, #40 @ 0x28 - 8003e50: 2b00 cmp r3, #0 - 8003e52: f040 8093 bne.w 8003f7c + 80040ba: 693b ldr r3, [r7, #16] + 80040bc: f003 0328 and.w r3, r3, #40 @ 0x28 + 80040c0: 2b00 cmp r3, #0 + 80040c2: f040 8093 bne.w 80041ec { /* StupPktRcvd = 1 this is a setup packet */ if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003e56: 697b ldr r3, [r7, #20] - 8003e58: 4a4b ldr r2, [pc, #300] @ (8003f88 ) - 8003e5a: 4293 cmp r3, r2 - 8003e5c: d90f bls.n 8003e7e + 80040c6: 697b ldr r3, [r7, #20] + 80040c8: 4a4b ldr r2, [pc, #300] @ (80041f8 ) + 80040ca: 4293 cmp r3, r2 + 80040cc: d90f bls.n 80040ee ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX)) - 8003e5e: 693b ldr r3, [r7, #16] - 8003e60: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 80040ce: 693b ldr r3, [r7, #16] + 80040d0: f403 4300 and.w r3, r3, #32768 @ 0x8000 if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003e64: 2b00 cmp r3, #0 - 8003e66: d00a beq.n 8003e7e + 80040d4: 2b00 cmp r3, #0 + 80040d6: d00a beq.n 80040ee { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003e68: 683b ldr r3, [r7, #0] - 8003e6a: 015a lsls r2, r3, #5 - 8003e6c: 69bb ldr r3, [r7, #24] - 8003e6e: 4413 add r3, r2 - 8003e70: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003e74: 461a mov r2, r3 - 8003e76: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003e7a: 6093 str r3, [r2, #8] - 8003e7c: e07e b.n 8003f7c + 80040d8: 683b ldr r3, [r7, #0] + 80040da: 015a lsls r2, r3, #5 + 80040dc: 69bb ldr r3, [r7, #24] + 80040de: 4413 add r3, r2 + 80040e0: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80040e4: 461a mov r2, r3 + 80040e6: f44f 4300 mov.w r3, #32768 @ 0x8000 + 80040ea: 6093 str r3, [r2, #8] + 80040ec: e07e b.n 80041ec } else { ep = &hpcd->OUT_ep[epnum]; - 8003e7e: 683a ldr r2, [r7, #0] - 8003e80: 4613 mov r3, r2 - 8003e82: 00db lsls r3, r3, #3 - 8003e84: 4413 add r3, r2 - 8003e86: 009b lsls r3, r3, #2 - 8003e88: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003e8c: 687a ldr r2, [r7, #4] - 8003e8e: 4413 add r3, r2 - 8003e90: 3304 adds r3, #4 - 8003e92: 60fb str r3, [r7, #12] + 80040ee: 683a ldr r2, [r7, #0] + 80040f0: 4613 mov r3, r2 + 80040f2: 00db lsls r3, r3, #3 + 80040f4: 4413 add r3, r2 + 80040f6: 009b lsls r3, r3, #2 + 80040f8: f503 7314 add.w r3, r3, #592 @ 0x250 + 80040fc: 687a ldr r2, [r7, #4] + 80040fe: 4413 add r3, r2 + 8004100: 3304 adds r3, #4 + 8004102: 60fb str r3, [r7, #12] /* out data packet received over EP */ ep->xfer_count = ep->xfer_size - (USBx_OUTEP(epnum)->DOEPTSIZ & USB_OTG_DOEPTSIZ_XFRSIZ); - 8003e94: 68fb ldr r3, [r7, #12] - 8003e96: 6a1a ldr r2, [r3, #32] - 8003e98: 683b ldr r3, [r7, #0] - 8003e9a: 0159 lsls r1, r3, #5 - 8003e9c: 69bb ldr r3, [r7, #24] - 8003e9e: 440b add r3, r1 - 8003ea0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003ea4: 691b ldr r3, [r3, #16] - 8003ea6: f3c3 0312 ubfx r3, r3, #0, #19 - 8003eaa: 1ad2 subs r2, r2, r3 - 8003eac: 68fb ldr r3, [r7, #12] - 8003eae: 615a str r2, [r3, #20] + 8004104: 68fb ldr r3, [r7, #12] + 8004106: 6a1a ldr r2, [r3, #32] + 8004108: 683b ldr r3, [r7, #0] + 800410a: 0159 lsls r1, r3, #5 + 800410c: 69bb ldr r3, [r7, #24] + 800410e: 440b add r3, r1 + 8004110: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8004114: 691b ldr r3, [r3, #16] + 8004116: f3c3 0312 ubfx r3, r3, #0, #19 + 800411a: 1ad2 subs r2, r2, r3 + 800411c: 68fb ldr r3, [r7, #12] + 800411e: 615a str r2, [r3, #20] if (epnum == 0U) - 8003eb0: 683b ldr r3, [r7, #0] - 8003eb2: 2b00 cmp r3, #0 - 8003eb4: d114 bne.n 8003ee0 + 8004120: 683b ldr r3, [r7, #0] + 8004122: 2b00 cmp r3, #0 + 8004124: d114 bne.n 8004150 { if (ep->xfer_len == 0U) - 8003eb6: 68fb ldr r3, [r7, #12] - 8003eb8: 691b ldr r3, [r3, #16] - 8003eba: 2b00 cmp r3, #0 - 8003ebc: d109 bne.n 8003ed2 + 8004126: 68fb ldr r3, [r7, #12] + 8004128: 691b ldr r3, [r3, #16] + 800412a: 2b00 cmp r3, #0 + 800412c: d109 bne.n 8004142 { /* this is ZLP, so prepare EP0 for next setup */ (void)USB_EP0_OutStart(hpcd->Instance, 1U, (uint8_t *)hpcd->Setup); - 8003ebe: 687b ldr r3, [r7, #4] - 8003ec0: 6818 ldr r0, [r3, #0] - 8003ec2: 687b ldr r3, [r7, #4] - 8003ec4: f203 439c addw r3, r3, #1180 @ 0x49c - 8003ec8: 461a mov r2, r3 - 8003eca: 2101 movs r1, #1 - 8003ecc: f004 fb06 bl 80084dc - 8003ed0: e006 b.n 8003ee0 + 800412e: 687b ldr r3, [r7, #4] + 8004130: 6818 ldr r0, [r3, #0] + 8004132: 687b ldr r3, [r7, #4] + 8004134: f203 439c addw r3, r3, #1180 @ 0x49c + 8004138: 461a mov r2, r3 + 800413a: 2101 movs r1, #1 + 800413c: f004 fbba bl 80088b4 + 8004140: e006 b.n 8004150 } else { ep->xfer_buff += ep->xfer_count; - 8003ed2: 68fb ldr r3, [r7, #12] - 8003ed4: 68da ldr r2, [r3, #12] - 8003ed6: 68fb ldr r3, [r7, #12] - 8003ed8: 695b ldr r3, [r3, #20] - 8003eda: 441a add r2, r3 - 8003edc: 68fb ldr r3, [r7, #12] - 8003ede: 60da str r2, [r3, #12] + 8004142: 68fb ldr r3, [r7, #12] + 8004144: 68da ldr r2, [r3, #12] + 8004146: 68fb ldr r3, [r7, #12] + 8004148: 695b ldr r3, [r3, #20] + 800414a: 441a add r2, r3 + 800414c: 68fb ldr r3, [r7, #12] + 800414e: 60da str r2, [r3, #12] } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataOutStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataOutStageCallback(hpcd, (uint8_t)epnum); - 8003ee0: 683b ldr r3, [r7, #0] - 8003ee2: b2db uxtb r3, r3 - 8003ee4: 4619 mov r1, r3 - 8003ee6: 6878 ldr r0, [r7, #4] - 8003ee8: f006 fad4 bl 800a494 - 8003eec: e046 b.n 8003f7c + 8004150: 683b ldr r3, [r7, #0] + 8004152: b2db uxtb r3, r3 + 8004154: 4619 mov r1, r3 + 8004156: 6878 ldr r0, [r7, #4] + 8004158: f006 fb88 bl 800a86c + 800415c: e046 b.n 80041ec /* ... */ } } else { if (gSNPSiD == USB_OTG_CORE_ID_310A) - 8003eee: 697b ldr r3, [r7, #20] - 8003ef0: 4a26 ldr r2, [pc, #152] @ (8003f8c ) - 8003ef2: 4293 cmp r3, r2 - 8003ef4: d124 bne.n 8003f40 + 800415e: 697b ldr r3, [r7, #20] + 8004160: 4a26 ldr r2, [pc, #152] @ (80041fc ) + 8004162: 4293 cmp r3, r2 + 8004164: d124 bne.n 80041b0 { /* StupPktRcvd = 1 this is a setup packet */ if ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX) - 8003ef6: 693b ldr r3, [r7, #16] - 8003ef8: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 8003efc: 2b00 cmp r3, #0 - 8003efe: d00a beq.n 8003f16 + 8004166: 693b ldr r3, [r7, #16] + 8004168: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 800416c: 2b00 cmp r3, #0 + 800416e: d00a beq.n 8004186 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003f00: 683b ldr r3, [r7, #0] - 8003f02: 015a lsls r2, r3, #5 - 8003f04: 69bb ldr r3, [r7, #24] - 8003f06: 4413 add r3, r2 - 8003f08: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003f0c: 461a mov r2, r3 - 8003f0e: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003f12: 6093 str r3, [r2, #8] - 8003f14: e032 b.n 8003f7c + 8004170: 683b ldr r3, [r7, #0] + 8004172: 015a lsls r2, r3, #5 + 8004174: 69bb ldr r3, [r7, #24] + 8004176: 4413 add r3, r2 + 8004178: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800417c: 461a mov r2, r3 + 800417e: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8004182: 6093 str r3, [r2, #8] + 8004184: e032 b.n 80041ec } else { if ((DoepintReg & USB_OTG_DOEPINT_OTEPSPR) == USB_OTG_DOEPINT_OTEPSPR) - 8003f16: 693b ldr r3, [r7, #16] - 8003f18: f003 0320 and.w r3, r3, #32 - 8003f1c: 2b00 cmp r3, #0 - 8003f1e: d008 beq.n 8003f32 + 8004186: 693b ldr r3, [r7, #16] + 8004188: f003 0320 and.w r3, r3, #32 + 800418c: 2b00 cmp r3, #0 + 800418e: d008 beq.n 80041a2 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPSPR); - 8003f20: 683b ldr r3, [r7, #0] - 8003f22: 015a lsls r2, r3, #5 - 8003f24: 69bb ldr r3, [r7, #24] - 8003f26: 4413 add r3, r2 - 8003f28: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003f2c: 461a mov r2, r3 - 8003f2e: 2320 movs r3, #32 - 8003f30: 6093 str r3, [r2, #8] + 8004190: 683b ldr r3, [r7, #0] + 8004192: 015a lsls r2, r3, #5 + 8004194: 69bb ldr r3, [r7, #24] + 8004196: 4413 add r3, r2 + 8004198: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800419c: 461a mov r2, r3 + 800419e: 2320 movs r3, #32 + 80041a0: 6093 str r3, [r2, #8] } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataOutStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataOutStageCallback(hpcd, (uint8_t)epnum); - 8003f32: 683b ldr r3, [r7, #0] - 8003f34: b2db uxtb r3, r3 - 8003f36: 4619 mov r1, r3 - 8003f38: 6878 ldr r0, [r7, #4] - 8003f3a: f006 faab bl 800a494 - 8003f3e: e01d b.n 8003f7c + 80041a2: 683b ldr r3, [r7, #0] + 80041a4: b2db uxtb r3, r3 + 80041a6: 4619 mov r1, r3 + 80041a8: 6878 ldr r0, [r7, #4] + 80041aa: f006 fb5f bl 800a86c + 80041ae: e01d b.n 80041ec #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } } else { if ((epnum == 0U) && (hpcd->OUT_ep[epnum].xfer_len == 0U)) - 8003f40: 683b ldr r3, [r7, #0] - 8003f42: 2b00 cmp r3, #0 - 8003f44: d114 bne.n 8003f70 - 8003f46: 6879 ldr r1, [r7, #4] - 8003f48: 683a ldr r2, [r7, #0] - 8003f4a: 4613 mov r3, r2 - 8003f4c: 00db lsls r3, r3, #3 - 8003f4e: 4413 add r3, r2 - 8003f50: 009b lsls r3, r3, #2 - 8003f52: 440b add r3, r1 - 8003f54: f503 7319 add.w r3, r3, #612 @ 0x264 - 8003f58: 681b ldr r3, [r3, #0] - 8003f5a: 2b00 cmp r3, #0 - 8003f5c: d108 bne.n 8003f70 + 80041b0: 683b ldr r3, [r7, #0] + 80041b2: 2b00 cmp r3, #0 + 80041b4: d114 bne.n 80041e0 + 80041b6: 6879 ldr r1, [r7, #4] + 80041b8: 683a ldr r2, [r7, #0] + 80041ba: 4613 mov r3, r2 + 80041bc: 00db lsls r3, r3, #3 + 80041be: 4413 add r3, r2 + 80041c0: 009b lsls r3, r3, #2 + 80041c2: 440b add r3, r1 + 80041c4: f503 7319 add.w r3, r3, #612 @ 0x264 + 80041c8: 681b ldr r3, [r3, #0] + 80041ca: 2b00 cmp r3, #0 + 80041cc: d108 bne.n 80041e0 { /* this is ZLP, so prepare EP0 for next setup */ (void)USB_EP0_OutStart(hpcd->Instance, 0U, (uint8_t *)hpcd->Setup); - 8003f5e: 687b ldr r3, [r7, #4] - 8003f60: 6818 ldr r0, [r3, #0] - 8003f62: 687b ldr r3, [r7, #4] - 8003f64: f203 439c addw r3, r3, #1180 @ 0x49c - 8003f68: 461a mov r2, r3 - 8003f6a: 2100 movs r1, #0 - 8003f6c: f004 fab6 bl 80084dc + 80041ce: 687b ldr r3, [r7, #4] + 80041d0: 6818 ldr r0, [r3, #0] + 80041d2: 687b ldr r3, [r7, #4] + 80041d4: f203 439c addw r3, r3, #1180 @ 0x49c + 80041d8: 461a mov r2, r3 + 80041da: 2100 movs r1, #0 + 80041dc: f004 fb6a bl 80088b4 } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataOutStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataOutStageCallback(hpcd, (uint8_t)epnum); - 8003f70: 683b ldr r3, [r7, #0] - 8003f72: b2db uxtb r3, r3 - 8003f74: 4619 mov r1, r3 - 8003f76: 6878 ldr r0, [r7, #4] - 8003f78: f006 fa8c bl 800a494 + 80041e0: 683b ldr r3, [r7, #0] + 80041e2: b2db uxtb r3, r3 + 80041e4: 4619 mov r1, r3 + 80041e6: 6878 ldr r0, [r7, #4] + 80041e8: f006 fb40 bl 800a86c #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } } return HAL_OK; - 8003f7c: 2300 movs r3, #0 + 80041ec: 2300 movs r3, #0 } - 8003f7e: 4618 mov r0, r3 - 8003f80: 3720 adds r7, #32 - 8003f82: 46bd mov sp, r7 - 8003f84: bd80 pop {r7, pc} - 8003f86: bf00 nop - 8003f88: 4f54300a .word 0x4f54300a - 8003f8c: 4f54310a .word 0x4f54310a + 80041ee: 4618 mov r0, r3 + 80041f0: 3720 adds r7, #32 + 80041f2: 46bd mov sp, r7 + 80041f4: bd80 pop {r7, pc} + 80041f6: bf00 nop + 80041f8: 4f54300a .word 0x4f54300a + 80041fc: 4f54310a .word 0x4f54310a -08003f90 : +08004200 : * @param hpcd PCD handle * @param epnum endpoint number * @retval HAL status */ static HAL_StatusTypeDef PCD_EP_OutSetupPacket_int(PCD_HandleTypeDef *hpcd, uint32_t epnum) { - 8003f90: b580 push {r7, lr} - 8003f92: b086 sub sp, #24 - 8003f94: af00 add r7, sp, #0 - 8003f96: 6078 str r0, [r7, #4] - 8003f98: 6039 str r1, [r7, #0] + 8004200: b580 push {r7, lr} + 8004202: b086 sub sp, #24 + 8004204: af00 add r7, sp, #0 + 8004206: 6078 str r0, [r7, #4] + 8004208: 6039 str r1, [r7, #0] const USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003f9a: 687b ldr r3, [r7, #4] - 8003f9c: 681b ldr r3, [r3, #0] - 8003f9e: 617b str r3, [r7, #20] + 800420a: 687b ldr r3, [r7, #4] + 800420c: 681b ldr r3, [r3, #0] + 800420e: 617b str r3, [r7, #20] uint32_t USBx_BASE = (uint32_t)USBx; - 8003fa0: 697b ldr r3, [r7, #20] - 8003fa2: 613b str r3, [r7, #16] + 8004210: 697b ldr r3, [r7, #20] + 8004212: 613b str r3, [r7, #16] uint32_t gSNPSiD = *(__IO const uint32_t *)(&USBx->CID + 0x1U); - 8003fa4: 697b ldr r3, [r7, #20] - 8003fa6: 333c adds r3, #60 @ 0x3c - 8003fa8: 3304 adds r3, #4 - 8003faa: 681b ldr r3, [r3, #0] - 8003fac: 60fb str r3, [r7, #12] + 8004214: 697b ldr r3, [r7, #20] + 8004216: 333c adds r3, #60 @ 0x3c + 8004218: 3304 adds r3, #4 + 800421a: 681b ldr r3, [r3, #0] + 800421c: 60fb str r3, [r7, #12] uint32_t DoepintReg = USBx_OUTEP(epnum)->DOEPINT; - 8003fae: 683b ldr r3, [r7, #0] - 8003fb0: 015a lsls r2, r3, #5 - 8003fb2: 693b ldr r3, [r7, #16] - 8003fb4: 4413 add r3, r2 - 8003fb6: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003fba: 689b ldr r3, [r3, #8] - 8003fbc: 60bb str r3, [r7, #8] + 800421e: 683b ldr r3, [r7, #0] + 8004220: 015a lsls r2, r3, #5 + 8004222: 693b ldr r3, [r7, #16] + 8004224: 4413 add r3, r2 + 8004226: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800422a: 689b ldr r3, [r3, #8] + 800422c: 60bb str r3, [r7, #8] if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003fbe: 68fb ldr r3, [r7, #12] - 8003fc0: 4a15 ldr r2, [pc, #84] @ (8004018 ) - 8003fc2: 4293 cmp r3, r2 - 8003fc4: d90e bls.n 8003fe4 + 800422e: 68fb ldr r3, [r7, #12] + 8004230: 4a15 ldr r2, [pc, #84] @ (8004288 ) + 8004232: 4293 cmp r3, r2 + 8004234: d90e bls.n 8004254 ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX)) - 8003fc6: 68bb ldr r3, [r7, #8] - 8003fc8: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8004236: 68bb ldr r3, [r7, #8] + 8004238: f403 4300 and.w r3, r3, #32768 @ 0x8000 if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003fcc: 2b00 cmp r3, #0 - 8003fce: d009 beq.n 8003fe4 + 800423c: 2b00 cmp r3, #0 + 800423e: d009 beq.n 8004254 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003fd0: 683b ldr r3, [r7, #0] - 8003fd2: 015a lsls r2, r3, #5 - 8003fd4: 693b ldr r3, [r7, #16] - 8003fd6: 4413 add r3, r2 - 8003fd8: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003fdc: 461a mov r2, r3 - 8003fde: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003fe2: 6093 str r3, [r2, #8] + 8004240: 683b ldr r3, [r7, #0] + 8004242: 015a lsls r2, r3, #5 + 8004244: 693b ldr r3, [r7, #16] + 8004246: 4413 add r3, r2 + 8004248: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800424c: 461a mov r2, r3 + 800424e: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8004252: 6093 str r3, [r2, #8] /* Inform the upper layer that a setup packet is available */ #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SetupStageCallback(hpcd); #else HAL_PCD_SetupStageCallback(hpcd); - 8003fe4: 6878 ldr r0, [r7, #4] - 8003fe6: f006 fa43 bl 800a470 + 8004254: 6878 ldr r0, [r7, #4] + 8004256: f006 faf7 bl 800a848 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ if ((gSNPSiD > USB_OTG_CORE_ID_300A) && (hpcd->Init.dma_enable == 1U)) - 8003fea: 68fb ldr r3, [r7, #12] - 8003fec: 4a0a ldr r2, [pc, #40] @ (8004018 ) - 8003fee: 4293 cmp r3, r2 - 8003ff0: d90c bls.n 800400c - 8003ff2: 687b ldr r3, [r7, #4] - 8003ff4: 799b ldrb r3, [r3, #6] - 8003ff6: 2b01 cmp r3, #1 - 8003ff8: d108 bne.n 800400c + 800425a: 68fb ldr r3, [r7, #12] + 800425c: 4a0a ldr r2, [pc, #40] @ (8004288 ) + 800425e: 4293 cmp r3, r2 + 8004260: d90c bls.n 800427c + 8004262: 687b ldr r3, [r7, #4] + 8004264: 799b ldrb r3, [r3, #6] + 8004266: 2b01 cmp r3, #1 + 8004268: d108 bne.n 800427c { (void)USB_EP0_OutStart(hpcd->Instance, 1U, (uint8_t *)hpcd->Setup); - 8003ffa: 687b ldr r3, [r7, #4] - 8003ffc: 6818 ldr r0, [r3, #0] - 8003ffe: 687b ldr r3, [r7, #4] - 8004000: f203 439c addw r3, r3, #1180 @ 0x49c - 8004004: 461a mov r2, r3 - 8004006: 2101 movs r1, #1 - 8004008: f004 fa68 bl 80084dc + 800426a: 687b ldr r3, [r7, #4] + 800426c: 6818 ldr r0, [r3, #0] + 800426e: 687b ldr r3, [r7, #4] + 8004270: f203 439c addw r3, r3, #1180 @ 0x49c + 8004274: 461a mov r2, r3 + 8004276: 2101 movs r1, #1 + 8004278: f004 fb1c bl 80088b4 } return HAL_OK; - 800400c: 2300 movs r3, #0 + 800427c: 2300 movs r3, #0 } - 800400e: 4618 mov r0, r3 - 8004010: 3718 adds r7, #24 - 8004012: 46bd mov sp, r7 - 8004014: bd80 pop {r7, pc} - 8004016: bf00 nop - 8004018: 4f54300a .word 0x4f54300a + 800427e: 4618 mov r0, r3 + 8004280: 3718 adds r7, #24 + 8004282: 46bd mov sp, r7 + 8004284: bd80 pop {r7, pc} + 8004286: bf00 nop + 8004288: 4f54300a .word 0x4f54300a -0800401c : +0800428c : * @param fifo The number of Tx fifo * @param size Fifo size * @retval HAL status */ HAL_StatusTypeDef HAL_PCDEx_SetTxFiFo(PCD_HandleTypeDef *hpcd, uint8_t fifo, uint16_t size) { - 800401c: b480 push {r7} - 800401e: b085 sub sp, #20 - 8004020: af00 add r7, sp, #0 - 8004022: 6078 str r0, [r7, #4] - 8004024: 460b mov r3, r1 - 8004026: 70fb strb r3, [r7, #3] - 8004028: 4613 mov r3, r2 - 800402a: 803b strh r3, [r7, #0] + 800428c: b480 push {r7} + 800428e: b085 sub sp, #20 + 8004290: af00 add r7, sp, #0 + 8004292: 6078 str r0, [r7, #4] + 8004294: 460b mov r3, r1 + 8004296: 70fb strb r3, [r7, #3] + 8004298: 4613 mov r3, r2 + 800429a: 803b strh r3, [r7, #0] --> Txn should be configured with the minimum space of 16 words The FIFO is used optimally when used TxFIFOs are allocated in the top of the FIFO.Ex: use EP1 and EP2 as IN instead of EP1 and EP3 as IN ones. When DMA is used 3n * FIFO locations should be reserved for internal DMA registers */ Tx_Offset = hpcd->Instance->GRXFSIZ; - 800402c: 687b ldr r3, [r7, #4] - 800402e: 681b ldr r3, [r3, #0] - 8004030: 6a5b ldr r3, [r3, #36] @ 0x24 - 8004032: 60bb str r3, [r7, #8] + 800429c: 687b ldr r3, [r7, #4] + 800429e: 681b ldr r3, [r3, #0] + 80042a0: 6a5b ldr r3, [r3, #36] @ 0x24 + 80042a2: 60bb str r3, [r7, #8] if (fifo == 0U) - 8004034: 78fb ldrb r3, [r7, #3] - 8004036: 2b00 cmp r3, #0 - 8004038: d107 bne.n 800404a + 80042a4: 78fb ldrb r3, [r7, #3] + 80042a6: 2b00 cmp r3, #0 + 80042a8: d107 bne.n 80042ba { hpcd->Instance->DIEPTXF0_HNPTXFSIZ = ((uint32_t)size << 16) | Tx_Offset; - 800403a: 883b ldrh r3, [r7, #0] - 800403c: 0419 lsls r1, r3, #16 - 800403e: 687b ldr r3, [r7, #4] - 8004040: 681b ldr r3, [r3, #0] - 8004042: 68ba ldr r2, [r7, #8] - 8004044: 430a orrs r2, r1 - 8004046: 629a str r2, [r3, #40] @ 0x28 - 8004048: e028 b.n 800409c + 80042aa: 883b ldrh r3, [r7, #0] + 80042ac: 0419 lsls r1, r3, #16 + 80042ae: 687b ldr r3, [r7, #4] + 80042b0: 681b ldr r3, [r3, #0] + 80042b2: 68ba ldr r2, [r7, #8] + 80042b4: 430a orrs r2, r1 + 80042b6: 629a str r2, [r3, #40] @ 0x28 + 80042b8: e028 b.n 800430c } else { Tx_Offset += (hpcd->Instance->DIEPTXF0_HNPTXFSIZ) >> 16; - 800404a: 687b ldr r3, [r7, #4] - 800404c: 681b ldr r3, [r3, #0] - 800404e: 6a9b ldr r3, [r3, #40] @ 0x28 - 8004050: 0c1b lsrs r3, r3, #16 - 8004052: 68ba ldr r2, [r7, #8] - 8004054: 4413 add r3, r2 - 8004056: 60bb str r3, [r7, #8] + 80042ba: 687b ldr r3, [r7, #4] + 80042bc: 681b ldr r3, [r3, #0] + 80042be: 6a9b ldr r3, [r3, #40] @ 0x28 + 80042c0: 0c1b lsrs r3, r3, #16 + 80042c2: 68ba ldr r2, [r7, #8] + 80042c4: 4413 add r3, r2 + 80042c6: 60bb str r3, [r7, #8] for (i = 0U; i < (fifo - 1U); i++) - 8004058: 2300 movs r3, #0 - 800405a: 73fb strb r3, [r7, #15] - 800405c: e00d b.n 800407a + 80042c8: 2300 movs r3, #0 + 80042ca: 73fb strb r3, [r7, #15] + 80042cc: e00d b.n 80042ea { Tx_Offset += (hpcd->Instance->DIEPTXF[i] >> 16); - 800405e: 687b ldr r3, [r7, #4] - 8004060: 681a ldr r2, [r3, #0] - 8004062: 7bfb ldrb r3, [r7, #15] - 8004064: 3340 adds r3, #64 @ 0x40 - 8004066: 009b lsls r3, r3, #2 - 8004068: 4413 add r3, r2 - 800406a: 685b ldr r3, [r3, #4] - 800406c: 0c1b lsrs r3, r3, #16 - 800406e: 68ba ldr r2, [r7, #8] - 8004070: 4413 add r3, r2 - 8004072: 60bb str r3, [r7, #8] + 80042ce: 687b ldr r3, [r7, #4] + 80042d0: 681a ldr r2, [r3, #0] + 80042d2: 7bfb ldrb r3, [r7, #15] + 80042d4: 3340 adds r3, #64 @ 0x40 + 80042d6: 009b lsls r3, r3, #2 + 80042d8: 4413 add r3, r2 + 80042da: 685b ldr r3, [r3, #4] + 80042dc: 0c1b lsrs r3, r3, #16 + 80042de: 68ba ldr r2, [r7, #8] + 80042e0: 4413 add r3, r2 + 80042e2: 60bb str r3, [r7, #8] for (i = 0U; i < (fifo - 1U); i++) - 8004074: 7bfb ldrb r3, [r7, #15] - 8004076: 3301 adds r3, #1 - 8004078: 73fb strb r3, [r7, #15] - 800407a: 7bfa ldrb r2, [r7, #15] - 800407c: 78fb ldrb r3, [r7, #3] - 800407e: 3b01 subs r3, #1 - 8004080: 429a cmp r2, r3 - 8004082: d3ec bcc.n 800405e + 80042e4: 7bfb ldrb r3, [r7, #15] + 80042e6: 3301 adds r3, #1 + 80042e8: 73fb strb r3, [r7, #15] + 80042ea: 7bfa ldrb r2, [r7, #15] + 80042ec: 78fb ldrb r3, [r7, #3] + 80042ee: 3b01 subs r3, #1 + 80042f0: 429a cmp r2, r3 + 80042f2: d3ec bcc.n 80042ce } /* Multiply Tx_Size by 2 to get higher performance */ hpcd->Instance->DIEPTXF[fifo - 1U] = ((uint32_t)size << 16) | Tx_Offset; - 8004084: 883b ldrh r3, [r7, #0] - 8004086: 0418 lsls r0, r3, #16 - 8004088: 687b ldr r3, [r7, #4] - 800408a: 6819 ldr r1, [r3, #0] - 800408c: 78fb ldrb r3, [r7, #3] - 800408e: 3b01 subs r3, #1 - 8004090: 68ba ldr r2, [r7, #8] - 8004092: 4302 orrs r2, r0 - 8004094: 3340 adds r3, #64 @ 0x40 - 8004096: 009b lsls r3, r3, #2 - 8004098: 440b add r3, r1 - 800409a: 605a str r2, [r3, #4] + 80042f4: 883b ldrh r3, [r7, #0] + 80042f6: 0418 lsls r0, r3, #16 + 80042f8: 687b ldr r3, [r7, #4] + 80042fa: 6819 ldr r1, [r3, #0] + 80042fc: 78fb ldrb r3, [r7, #3] + 80042fe: 3b01 subs r3, #1 + 8004300: 68ba ldr r2, [r7, #8] + 8004302: 4302 orrs r2, r0 + 8004304: 3340 adds r3, #64 @ 0x40 + 8004306: 009b lsls r3, r3, #2 + 8004308: 440b add r3, r1 + 800430a: 605a str r2, [r3, #4] } return HAL_OK; - 800409c: 2300 movs r3, #0 + 800430c: 2300 movs r3, #0 } - 800409e: 4618 mov r0, r3 - 80040a0: 3714 adds r7, #20 - 80040a2: 46bd mov sp, r7 - 80040a4: f85d 7b04 ldr.w r7, [sp], #4 - 80040a8: 4770 bx lr + 800430e: 4618 mov r0, r3 + 8004310: 3714 adds r7, #20 + 8004312: 46bd mov sp, r7 + 8004314: f85d 7b04 ldr.w r7, [sp], #4 + 8004318: 4770 bx lr -080040aa : +0800431a : * @param hpcd PCD handle * @param size Size of Rx fifo * @retval HAL status */ HAL_StatusTypeDef HAL_PCDEx_SetRxFiFo(PCD_HandleTypeDef *hpcd, uint16_t size) { - 80040aa: b480 push {r7} - 80040ac: b083 sub sp, #12 - 80040ae: af00 add r7, sp, #0 - 80040b0: 6078 str r0, [r7, #4] - 80040b2: 460b mov r3, r1 - 80040b4: 807b strh r3, [r7, #2] + 800431a: b480 push {r7} + 800431c: b083 sub sp, #12 + 800431e: af00 add r7, sp, #0 + 8004320: 6078 str r0, [r7, #4] + 8004322: 460b mov r3, r1 + 8004324: 807b strh r3, [r7, #2] hpcd->Instance->GRXFSIZ = size; - 80040b6: 687b ldr r3, [r7, #4] - 80040b8: 681b ldr r3, [r3, #0] - 80040ba: 887a ldrh r2, [r7, #2] - 80040bc: 625a str r2, [r3, #36] @ 0x24 + 8004326: 687b ldr r3, [r7, #4] + 8004328: 681b ldr r3, [r3, #0] + 800432a: 887a ldrh r2, [r7, #2] + 800432c: 625a str r2, [r3, #36] @ 0x24 return HAL_OK; - 80040be: 2300 movs r3, #0 + 800432e: 2300 movs r3, #0 } - 80040c0: 4618 mov r0, r3 - 80040c2: 370c adds r7, #12 - 80040c4: 46bd mov sp, r7 - 80040c6: f85d 7b04 ldr.w r7, [sp], #4 - 80040ca: 4770 bx lr + 8004330: 4618 mov r0, r3 + 8004332: 370c adds r7, #12 + 8004334: 46bd mov sp, r7 + 8004336: f85d 7b04 ldr.w r7, [sp], #4 + 800433a: 4770 bx lr -080040cc : +0800433c : * @brief Activate LPM feature. * @param hpcd PCD handle * @retval HAL status */ HAL_StatusTypeDef HAL_PCDEx_ActivateLPM(PCD_HandleTypeDef *hpcd) { - 80040cc: b480 push {r7} - 80040ce: b085 sub sp, #20 - 80040d0: af00 add r7, sp, #0 - 80040d2: 6078 str r0, [r7, #4] + 800433c: b480 push {r7} + 800433e: b085 sub sp, #20 + 8004340: af00 add r7, sp, #0 + 8004342: 6078 str r0, [r7, #4] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 80040d4: 687b ldr r3, [r7, #4] - 80040d6: 681b ldr r3, [r3, #0] - 80040d8: 60fb str r3, [r7, #12] + 8004344: 687b ldr r3, [r7, #4] + 8004346: 681b ldr r3, [r3, #0] + 8004348: 60fb str r3, [r7, #12] hpcd->lpm_active = 1U; - 80040da: 687b ldr r3, [r7, #4] - 80040dc: 2201 movs r2, #1 - 80040de: f8c3 24d8 str.w r2, [r3, #1240] @ 0x4d8 + 800434a: 687b ldr r3, [r7, #4] + 800434c: 2201 movs r2, #1 + 800434e: f8c3 24d8 str.w r2, [r3, #1240] @ 0x4d8 hpcd->LPM_State = LPM_L0; - 80040e2: 687b ldr r3, [r7, #4] - 80040e4: 2200 movs r2, #0 - 80040e6: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc + 8004352: 687b ldr r3, [r7, #4] + 8004354: 2200 movs r2, #0 + 8004356: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc USBx->GINTMSK |= USB_OTG_GINTMSK_LPMINTM; - 80040ea: 68fb ldr r3, [r7, #12] - 80040ec: 699b ldr r3, [r3, #24] - 80040ee: f043 6200 orr.w r2, r3, #134217728 @ 0x8000000 - 80040f2: 68fb ldr r3, [r7, #12] - 80040f4: 619a str r2, [r3, #24] + 800435a: 68fb ldr r3, [r7, #12] + 800435c: 699b ldr r3, [r3, #24] + 800435e: f043 6200 orr.w r2, r3, #134217728 @ 0x8000000 + 8004362: 68fb ldr r3, [r7, #12] + 8004364: 619a str r2, [r3, #24] USBx->GLPMCFG |= (USB_OTG_GLPMCFG_LPMEN | USB_OTG_GLPMCFG_LPMACK | USB_OTG_GLPMCFG_ENBESL); - 80040f6: 68fb ldr r3, [r7, #12] - 80040f8: 6d5b ldr r3, [r3, #84] @ 0x54 - 80040fa: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 80040fe: f043 0303 orr.w r3, r3, #3 - 8004102: 68fa ldr r2, [r7, #12] - 8004104: 6553 str r3, [r2, #84] @ 0x54 + 8004366: 68fb ldr r3, [r7, #12] + 8004368: 6d5b ldr r3, [r3, #84] @ 0x54 + 800436a: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 800436e: f043 0303 orr.w r3, r3, #3 + 8004372: 68fa ldr r2, [r7, #12] + 8004374: 6553 str r3, [r2, #84] @ 0x54 return HAL_OK; - 8004106: 2300 movs r3, #0 + 8004376: 2300 movs r3, #0 } - 8004108: 4618 mov r0, r3 - 800410a: 3714 adds r7, #20 - 800410c: 46bd mov sp, r7 - 800410e: f85d 7b04 ldr.w r7, [sp], #4 - 8004112: 4770 bx lr + 8004378: 4618 mov r0, r3 + 800437a: 3714 adds r7, #20 + 800437c: 46bd mov sp, r7 + 800437e: f85d 7b04 ldr.w r7, [sp], #4 + 8004382: 4770 bx lr -08004114 : +08004384 : * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency * (for more details refer to section above "Initialization/de-initialization functions") * @retval None */ HAL_StatusTypeDef HAL_RCC_ClockConfig(const RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) { - 8004114: b580 push {r7, lr} - 8004116: b084 sub sp, #16 - 8004118: af00 add r7, sp, #0 - 800411a: 6078 str r0, [r7, #4] - 800411c: 6039 str r1, [r7, #0] + 8004384: b580 push {r7, lr} + 8004386: b084 sub sp, #16 + 8004388: af00 add r7, sp, #0 + 800438a: 6078 str r0, [r7, #4] + 800438c: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if (RCC_ClkInitStruct == NULL) - 800411e: 687b ldr r3, [r7, #4] - 8004120: 2b00 cmp r3, #0 - 8004122: d101 bne.n 8004128 + 800438e: 687b ldr r3, [r7, #4] + 8004390: 2b00 cmp r3, #0 + 8004392: d101 bne.n 8004398 { return HAL_ERROR; - 8004124: 2301 movs r3, #1 - 8004126: e0cc b.n 80042c2 + 8004394: 2301 movs r3, #1 + 8004396: e0cc b.n 8004532 /* To correctly read data from FLASH memory, the number of wait states (LATENCY) must be correctly programmed according to the frequency of the CPU clock (HCLK) and the supply voltage of the device. */ /* Increasing the number of wait states because of higher CPU frequency */ if (FLatency > __HAL_FLASH_GET_LATENCY()) - 8004128: 4b68 ldr r3, [pc, #416] @ (80042cc ) - 800412a: 681b ldr r3, [r3, #0] - 800412c: f003 030f and.w r3, r3, #15 - 8004130: 683a ldr r2, [r7, #0] - 8004132: 429a cmp r2, r3 - 8004134: d90c bls.n 8004150 + 8004398: 4b68 ldr r3, [pc, #416] @ (800453c ) + 800439a: 681b ldr r3, [r3, #0] + 800439c: f003 030f and.w r3, r3, #15 + 80043a0: 683a ldr r2, [r7, #0] + 80043a2: 429a cmp r2, r3 + 80043a4: d90c bls.n 80043c0 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 8004136: 4b65 ldr r3, [pc, #404] @ (80042cc ) - 8004138: 683a ldr r2, [r7, #0] - 800413a: b2d2 uxtb r2, r2 - 800413c: 701a strb r2, [r3, #0] + 80043a6: 4b65 ldr r3, [pc, #404] @ (800453c ) + 80043a8: 683a ldr r2, [r7, #0] + 80043aa: b2d2 uxtb r2, r2 + 80043ac: 701a strb r2, [r3, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 800413e: 4b63 ldr r3, [pc, #396] @ (80042cc ) - 8004140: 681b ldr r3, [r3, #0] - 8004142: f003 030f and.w r3, r3, #15 - 8004146: 683a ldr r2, [r7, #0] - 8004148: 429a cmp r2, r3 - 800414a: d001 beq.n 8004150 + 80043ae: 4b63 ldr r3, [pc, #396] @ (800453c ) + 80043b0: 681b ldr r3, [r3, #0] + 80043b2: f003 030f and.w r3, r3, #15 + 80043b6: 683a ldr r2, [r7, #0] + 80043b8: 429a cmp r2, r3 + 80043ba: d001 beq.n 80043c0 { return HAL_ERROR; - 800414c: 2301 movs r3, #1 - 800414e: e0b8 b.n 80042c2 + 80043bc: 2301 movs r3, #1 + 80043be: e0b8 b.n 8004532 } } /*-------------------------- HCLK Configuration --------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 8004150: 687b ldr r3, [r7, #4] - 8004152: 681b ldr r3, [r3, #0] - 8004154: f003 0302 and.w r3, r3, #2 - 8004158: 2b00 cmp r3, #0 - 800415a: d020 beq.n 800419e + 80043c0: 687b ldr r3, [r7, #4] + 80043c2: 681b ldr r3, [r3, #0] + 80043c4: f003 0302 and.w r3, r3, #2 + 80043c8: 2b00 cmp r3, #0 + 80043ca: d020 beq.n 800440e { /* Set the highest APBx dividers in order to ensure that we do not go through a non-spec phase whatever we decrease or increase HCLK. */ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 800415c: 687b ldr r3, [r7, #4] - 800415e: 681b ldr r3, [r3, #0] - 8004160: f003 0304 and.w r3, r3, #4 - 8004164: 2b00 cmp r3, #0 - 8004166: d005 beq.n 8004174 + 80043cc: 687b ldr r3, [r7, #4] + 80043ce: 681b ldr r3, [r3, #0] + 80043d0: f003 0304 and.w r3, r3, #4 + 80043d4: 2b00 cmp r3, #0 + 80043d6: d005 beq.n 80043e4 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 8004168: 4b59 ldr r3, [pc, #356] @ (80042d0 ) - 800416a: 689b ldr r3, [r3, #8] - 800416c: 4a58 ldr r2, [pc, #352] @ (80042d0 ) - 800416e: f443 53e0 orr.w r3, r3, #7168 @ 0x1c00 - 8004172: 6093 str r3, [r2, #8] + 80043d8: 4b59 ldr r3, [pc, #356] @ (8004540 ) + 80043da: 689b ldr r3, [r3, #8] + 80043dc: 4a58 ldr r2, [pc, #352] @ (8004540 ) + 80043de: f443 53e0 orr.w r3, r3, #7168 @ 0x1c00 + 80043e2: 6093 str r3, [r2, #8] } if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8004174: 687b ldr r3, [r7, #4] - 8004176: 681b ldr r3, [r3, #0] - 8004178: f003 0308 and.w r3, r3, #8 - 800417c: 2b00 cmp r3, #0 - 800417e: d005 beq.n 800418c + 80043e4: 687b ldr r3, [r7, #4] + 80043e6: 681b ldr r3, [r3, #0] + 80043e8: f003 0308 and.w r3, r3, #8 + 80043ec: 2b00 cmp r3, #0 + 80043ee: d005 beq.n 80043fc { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 8004180: 4b53 ldr r3, [pc, #332] @ (80042d0 ) - 8004182: 689b ldr r3, [r3, #8] - 8004184: 4a52 ldr r2, [pc, #328] @ (80042d0 ) - 8004186: f443 4360 orr.w r3, r3, #57344 @ 0xe000 - 800418a: 6093 str r3, [r2, #8] + 80043f0: 4b53 ldr r3, [pc, #332] @ (8004540 ) + 80043f2: 689b ldr r3, [r3, #8] + 80043f4: 4a52 ldr r2, [pc, #328] @ (8004540 ) + 80043f6: f443 4360 orr.w r3, r3, #57344 @ 0xe000 + 80043fa: 6093 str r3, [r2, #8] } assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 800418c: 4b50 ldr r3, [pc, #320] @ (80042d0 ) - 800418e: 689b ldr r3, [r3, #8] - 8004190: f023 02f0 bic.w r2, r3, #240 @ 0xf0 - 8004194: 687b ldr r3, [r7, #4] - 8004196: 689b ldr r3, [r3, #8] - 8004198: 494d ldr r1, [pc, #308] @ (80042d0 ) - 800419a: 4313 orrs r3, r2 - 800419c: 608b str r3, [r1, #8] + 80043fc: 4b50 ldr r3, [pc, #320] @ (8004540 ) + 80043fe: 689b ldr r3, [r3, #8] + 8004400: f023 02f0 bic.w r2, r3, #240 @ 0xf0 + 8004404: 687b ldr r3, [r7, #4] + 8004406: 689b ldr r3, [r3, #8] + 8004408: 494d ldr r1, [pc, #308] @ (8004540 ) + 800440a: 4313 orrs r3, r2 + 800440c: 608b str r3, [r1, #8] } /*------------------------- SYSCLK Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 800419e: 687b ldr r3, [r7, #4] - 80041a0: 681b ldr r3, [r3, #0] - 80041a2: f003 0301 and.w r3, r3, #1 - 80041a6: 2b00 cmp r3, #0 - 80041a8: d044 beq.n 8004234 + 800440e: 687b ldr r3, [r7, #4] + 8004410: 681b ldr r3, [r3, #0] + 8004412: f003 0301 and.w r3, r3, #1 + 8004416: 2b00 cmp r3, #0 + 8004418: d044 beq.n 80044a4 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 80041aa: 687b ldr r3, [r7, #4] - 80041ac: 685b ldr r3, [r3, #4] - 80041ae: 2b01 cmp r3, #1 - 80041b0: d107 bne.n 80041c2 + 800441a: 687b ldr r3, [r7, #4] + 800441c: 685b ldr r3, [r3, #4] + 800441e: 2b01 cmp r3, #1 + 8004420: d107 bne.n 8004432 { /* Check the HSE ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 80041b2: 4b47 ldr r3, [pc, #284] @ (80042d0 ) - 80041b4: 681b ldr r3, [r3, #0] - 80041b6: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 80041ba: 2b00 cmp r3, #0 - 80041bc: d119 bne.n 80041f2 + 8004422: 4b47 ldr r3, [pc, #284] @ (8004540 ) + 8004424: 681b ldr r3, [r3, #0] + 8004426: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800442a: 2b00 cmp r3, #0 + 800442c: d119 bne.n 8004462 { return HAL_ERROR; - 80041be: 2301 movs r3, #1 - 80041c0: e07f b.n 80042c2 + 800442e: 2301 movs r3, #1 + 8004430: e07f b.n 8004532 } } /* PLL is selected as System Clock Source */ else if ((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 80041c2: 687b ldr r3, [r7, #4] - 80041c4: 685b ldr r3, [r3, #4] - 80041c6: 2b02 cmp r3, #2 - 80041c8: d003 beq.n 80041d2 + 8004432: 687b ldr r3, [r7, #4] + 8004434: 685b ldr r3, [r3, #4] + 8004436: 2b02 cmp r3, #2 + 8004438: d003 beq.n 8004442 (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLRCLK)) - 80041ca: 687b ldr r3, [r7, #4] - 80041cc: 685b ldr r3, [r3, #4] + 800443a: 687b ldr r3, [r7, #4] + 800443c: 685b ldr r3, [r3, #4] else if ((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 80041ce: 2b03 cmp r3, #3 - 80041d0: d107 bne.n 80041e2 + 800443e: 2b03 cmp r3, #3 + 8004440: d107 bne.n 8004452 { /* Check the PLL ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80041d2: 4b3f ldr r3, [pc, #252] @ (80042d0 ) - 80041d4: 681b ldr r3, [r3, #0] - 80041d6: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 80041da: 2b00 cmp r3, #0 - 80041dc: d109 bne.n 80041f2 + 8004442: 4b3f ldr r3, [pc, #252] @ (8004540 ) + 8004444: 681b ldr r3, [r3, #0] + 8004446: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 800444a: 2b00 cmp r3, #0 + 800444c: d109 bne.n 8004462 { return HAL_ERROR; - 80041de: 2301 movs r3, #1 - 80041e0: e06f b.n 80042c2 + 800444e: 2301 movs r3, #1 + 8004450: e06f b.n 8004532 } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 80041e2: 4b3b ldr r3, [pc, #236] @ (80042d0 ) - 80041e4: 681b ldr r3, [r3, #0] - 80041e6: f003 0302 and.w r3, r3, #2 - 80041ea: 2b00 cmp r3, #0 - 80041ec: d101 bne.n 80041f2 + 8004452: 4b3b ldr r3, [pc, #236] @ (8004540 ) + 8004454: 681b ldr r3, [r3, #0] + 8004456: f003 0302 and.w r3, r3, #2 + 800445a: 2b00 cmp r3, #0 + 800445c: d101 bne.n 8004462 { return HAL_ERROR; - 80041ee: 2301 movs r3, #1 - 80041f0: e067 b.n 80042c2 + 800445e: 2301 movs r3, #1 + 8004460: e067 b.n 8004532 } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 80041f2: 4b37 ldr r3, [pc, #220] @ (80042d0 ) - 80041f4: 689b ldr r3, [r3, #8] - 80041f6: f023 0203 bic.w r2, r3, #3 - 80041fa: 687b ldr r3, [r7, #4] - 80041fc: 685b ldr r3, [r3, #4] - 80041fe: 4934 ldr r1, [pc, #208] @ (80042d0 ) - 8004200: 4313 orrs r3, r2 - 8004202: 608b str r3, [r1, #8] + 8004462: 4b37 ldr r3, [pc, #220] @ (8004540 ) + 8004464: 689b ldr r3, [r3, #8] + 8004466: f023 0203 bic.w r2, r3, #3 + 800446a: 687b ldr r3, [r7, #4] + 800446c: 685b ldr r3, [r3, #4] + 800446e: 4934 ldr r1, [pc, #208] @ (8004540 ) + 8004470: 4313 orrs r3, r2 + 8004472: 608b str r3, [r1, #8] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8004204: f7fd fcb2 bl 8001b6c - 8004208: 60f8 str r0, [r7, #12] + 8004474: f7fd fcb2 bl 8001ddc + 8004478: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 800420a: e00a b.n 8004222 + 800447a: e00a b.n 8004492 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 800420c: f7fd fcae bl 8001b6c - 8004210: 4602 mov r2, r0 - 8004212: 68fb ldr r3, [r7, #12] - 8004214: 1ad3 subs r3, r2, r3 - 8004216: f241 3288 movw r2, #5000 @ 0x1388 - 800421a: 4293 cmp r3, r2 - 800421c: d901 bls.n 8004222 + 800447c: f7fd fcae bl 8001ddc + 8004480: 4602 mov r2, r0 + 8004482: 68fb ldr r3, [r7, #12] + 8004484: 1ad3 subs r3, r2, r3 + 8004486: f241 3288 movw r2, #5000 @ 0x1388 + 800448a: 4293 cmp r3, r2 + 800448c: d901 bls.n 8004492 { return HAL_TIMEOUT; - 800421e: 2303 movs r3, #3 - 8004220: e04f b.n 80042c2 + 800448e: 2303 movs r3, #3 + 8004490: e04f b.n 8004532 while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 8004222: 4b2b ldr r3, [pc, #172] @ (80042d0 ) - 8004224: 689b ldr r3, [r3, #8] - 8004226: f003 020c and.w r2, r3, #12 - 800422a: 687b ldr r3, [r7, #4] - 800422c: 685b ldr r3, [r3, #4] - 800422e: 009b lsls r3, r3, #2 - 8004230: 429a cmp r2, r3 - 8004232: d1eb bne.n 800420c + 8004492: 4b2b ldr r3, [pc, #172] @ (8004540 ) + 8004494: 689b ldr r3, [r3, #8] + 8004496: f003 020c and.w r2, r3, #12 + 800449a: 687b ldr r3, [r7, #4] + 800449c: 685b ldr r3, [r3, #4] + 800449e: 009b lsls r3, r3, #2 + 80044a0: 429a cmp r2, r3 + 80044a2: d1eb bne.n 800447c } } } /* Decreasing the number of wait states because of lower CPU frequency */ if (FLatency < __HAL_FLASH_GET_LATENCY()) - 8004234: 4b25 ldr r3, [pc, #148] @ (80042cc ) - 8004236: 681b ldr r3, [r3, #0] - 8004238: f003 030f and.w r3, r3, #15 - 800423c: 683a ldr r2, [r7, #0] - 800423e: 429a cmp r2, r3 - 8004240: d20c bcs.n 800425c + 80044a4: 4b25 ldr r3, [pc, #148] @ (800453c ) + 80044a6: 681b ldr r3, [r3, #0] + 80044a8: f003 030f and.w r3, r3, #15 + 80044ac: 683a ldr r2, [r7, #0] + 80044ae: 429a cmp r2, r3 + 80044b0: d20c bcs.n 80044cc { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 8004242: 4b22 ldr r3, [pc, #136] @ (80042cc ) - 8004244: 683a ldr r2, [r7, #0] - 8004246: b2d2 uxtb r2, r2 - 8004248: 701a strb r2, [r3, #0] + 80044b2: 4b22 ldr r3, [pc, #136] @ (800453c ) + 80044b4: 683a ldr r2, [r7, #0] + 80044b6: b2d2 uxtb r2, r2 + 80044b8: 701a strb r2, [r3, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 800424a: 4b20 ldr r3, [pc, #128] @ (80042cc ) - 800424c: 681b ldr r3, [r3, #0] - 800424e: f003 030f and.w r3, r3, #15 - 8004252: 683a ldr r2, [r7, #0] - 8004254: 429a cmp r2, r3 - 8004256: d001 beq.n 800425c + 80044ba: 4b20 ldr r3, [pc, #128] @ (800453c ) + 80044bc: 681b ldr r3, [r3, #0] + 80044be: f003 030f and.w r3, r3, #15 + 80044c2: 683a ldr r2, [r7, #0] + 80044c4: 429a cmp r2, r3 + 80044c6: d001 beq.n 80044cc { return HAL_ERROR; - 8004258: 2301 movs r3, #1 - 800425a: e032 b.n 80042c2 + 80044c8: 2301 movs r3, #1 + 80044ca: e032 b.n 8004532 } } /*-------------------------- PCLK1 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 800425c: 687b ldr r3, [r7, #4] - 800425e: 681b ldr r3, [r3, #0] - 8004260: f003 0304 and.w r3, r3, #4 - 8004264: 2b00 cmp r3, #0 - 8004266: d008 beq.n 800427a + 80044cc: 687b ldr r3, [r7, #4] + 80044ce: 681b ldr r3, [r3, #0] + 80044d0: f003 0304 and.w r3, r3, #4 + 80044d4: 2b00 cmp r3, #0 + 80044d6: d008 beq.n 80044ea { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 8004268: 4b19 ldr r3, [pc, #100] @ (80042d0 ) - 800426a: 689b ldr r3, [r3, #8] - 800426c: f423 52e0 bic.w r2, r3, #7168 @ 0x1c00 - 8004270: 687b ldr r3, [r7, #4] - 8004272: 68db ldr r3, [r3, #12] - 8004274: 4916 ldr r1, [pc, #88] @ (80042d0 ) - 8004276: 4313 orrs r3, r2 - 8004278: 608b str r3, [r1, #8] + 80044d8: 4b19 ldr r3, [pc, #100] @ (8004540 ) + 80044da: 689b ldr r3, [r3, #8] + 80044dc: f423 52e0 bic.w r2, r3, #7168 @ 0x1c00 + 80044e0: 687b ldr r3, [r7, #4] + 80044e2: 68db ldr r3, [r3, #12] + 80044e4: 4916 ldr r1, [pc, #88] @ (8004540 ) + 80044e6: 4313 orrs r3, r2 + 80044e8: 608b str r3, [r1, #8] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 800427a: 687b ldr r3, [r7, #4] - 800427c: 681b ldr r3, [r3, #0] - 800427e: f003 0308 and.w r3, r3, #8 - 8004282: 2b00 cmp r3, #0 - 8004284: d009 beq.n 800429a + 80044ea: 687b ldr r3, [r7, #4] + 80044ec: 681b ldr r3, [r3, #0] + 80044ee: f003 0308 and.w r3, r3, #8 + 80044f2: 2b00 cmp r3, #0 + 80044f4: d009 beq.n 800450a { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3U)); - 8004286: 4b12 ldr r3, [pc, #72] @ (80042d0 ) - 8004288: 689b ldr r3, [r3, #8] - 800428a: f423 4260 bic.w r2, r3, #57344 @ 0xe000 - 800428e: 687b ldr r3, [r7, #4] - 8004290: 691b ldr r3, [r3, #16] - 8004292: 00db lsls r3, r3, #3 - 8004294: 490e ldr r1, [pc, #56] @ (80042d0 ) - 8004296: 4313 orrs r3, r2 - 8004298: 608b str r3, [r1, #8] + 80044f6: 4b12 ldr r3, [pc, #72] @ (8004540 ) + 80044f8: 689b ldr r3, [r3, #8] + 80044fa: f423 4260 bic.w r2, r3, #57344 @ 0xe000 + 80044fe: 687b ldr r3, [r7, #4] + 8004500: 691b ldr r3, [r3, #16] + 8004502: 00db lsls r3, r3, #3 + 8004504: 490e ldr r1, [pc, #56] @ (8004540 ) + 8004506: 4313 orrs r3, r2 + 8004508: 608b str r3, [r1, #8] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos]; - 800429a: f000 fb7f bl 800499c - 800429e: 4602 mov r2, r0 - 80042a0: 4b0b ldr r3, [pc, #44] @ (80042d0 ) - 80042a2: 689b ldr r3, [r3, #8] - 80042a4: 091b lsrs r3, r3, #4 - 80042a6: f003 030f and.w r3, r3, #15 - 80042aa: 490a ldr r1, [pc, #40] @ (80042d4 ) - 80042ac: 5ccb ldrb r3, [r1, r3] - 80042ae: fa22 f303 lsr.w r3, r2, r3 - 80042b2: 4a09 ldr r2, [pc, #36] @ (80042d8 ) - 80042b4: 6013 str r3, [r2, #0] + 800450a: f000 fb7f bl 8004c0c + 800450e: 4602 mov r2, r0 + 8004510: 4b0b ldr r3, [pc, #44] @ (8004540 ) + 8004512: 689b ldr r3, [r3, #8] + 8004514: 091b lsrs r3, r3, #4 + 8004516: f003 030f and.w r3, r3, #15 + 800451a: 490a ldr r1, [pc, #40] @ (8004544 ) + 800451c: 5ccb ldrb r3, [r1, r3] + 800451e: fa22 f303 lsr.w r3, r2, r3 + 8004522: 4a09 ldr r2, [pc, #36] @ (8004548 ) + 8004524: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings */ HAL_InitTick(uwTickPrio); - 80042b6: 4b09 ldr r3, [pc, #36] @ (80042dc ) - 80042b8: 681b ldr r3, [r3, #0] - 80042ba: 4618 mov r0, r3 - 80042bc: f7fd fc12 bl 8001ae4 + 8004526: 4b09 ldr r3, [pc, #36] @ (800454c ) + 8004528: 681b ldr r3, [r3, #0] + 800452a: 4618 mov r0, r3 + 800452c: f7fd fc12 bl 8001d54 return HAL_OK; - 80042c0: 2300 movs r3, #0 + 8004530: 2300 movs r3, #0 } - 80042c2: 4618 mov r0, r3 - 80042c4: 3710 adds r7, #16 - 80042c6: 46bd mov sp, r7 - 80042c8: bd80 pop {r7, pc} - 80042ca: bf00 nop - 80042cc: 40023c00 .word 0x40023c00 - 80042d0: 40023800 .word 0x40023800 - 80042d4: 0800ab14 .word 0x0800ab14 - 80042d8: 20000090 .word 0x20000090 - 80042dc: 20000094 .word 0x20000094 + 8004532: 4618 mov r0, r3 + 8004534: 3710 adds r7, #16 + 8004536: 46bd mov sp, r7 + 8004538: bd80 pop {r7, pc} + 800453a: bf00 nop + 800453c: 40023c00 .word 0x40023c00 + 8004540: 40023800 .word 0x40023800 + 8004544: 0800af08 .word 0x0800af08 + 8004548: 20000090 .word 0x20000090 + 800454c: 20000094 .word 0x20000094 -080042e0 : +08004550 : * @note The SystemCoreClock CMSIS variable is used to store System Clock Frequency * and updated within this function * @retval HCLK frequency */ uint32_t HAL_RCC_GetHCLKFreq(void) { - 80042e0: b480 push {r7} - 80042e2: af00 add r7, sp, #0 + 8004550: b480 push {r7} + 8004552: af00 add r7, sp, #0 return SystemCoreClock; - 80042e4: 4b03 ldr r3, [pc, #12] @ (80042f4 ) - 80042e6: 681b ldr r3, [r3, #0] + 8004554: 4b03 ldr r3, [pc, #12] @ (8004564 ) + 8004556: 681b ldr r3, [r3, #0] } - 80042e8: 4618 mov r0, r3 - 80042ea: 46bd mov sp, r7 - 80042ec: f85d 7b04 ldr.w r7, [sp], #4 - 80042f0: 4770 bx lr - 80042f2: bf00 nop - 80042f4: 20000090 .word 0x20000090 + 8004558: 4618 mov r0, r3 + 800455a: 46bd mov sp, r7 + 800455c: f85d 7b04 ldr.w r7, [sp], #4 + 8004560: 4770 bx lr + 8004562: bf00 nop + 8004564: 20000090 .word 0x20000090 -080042f8 : +08004568 : * @note Each time PCLK1 changes, this function must be called to update the * right PCLK1 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK1 frequency */ uint32_t HAL_RCC_GetPCLK1Freq(void) { - 80042f8: b580 push {r7, lr} - 80042fa: af00 add r7, sp, #0 + 8004568: b580 push {r7, lr} + 800456a: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK1 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq() >> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE1) >> RCC_CFGR_PPRE1_Pos]); - 80042fc: f7ff fff0 bl 80042e0 - 8004300: 4602 mov r2, r0 - 8004302: 4b05 ldr r3, [pc, #20] @ (8004318 ) - 8004304: 689b ldr r3, [r3, #8] - 8004306: 0a9b lsrs r3, r3, #10 - 8004308: f003 0307 and.w r3, r3, #7 - 800430c: 4903 ldr r1, [pc, #12] @ (800431c ) - 800430e: 5ccb ldrb r3, [r1, r3] - 8004310: fa22 f303 lsr.w r3, r2, r3 + 800456c: f7ff fff0 bl 8004550 + 8004570: 4602 mov r2, r0 + 8004572: 4b05 ldr r3, [pc, #20] @ (8004588 ) + 8004574: 689b ldr r3, [r3, #8] + 8004576: 0a9b lsrs r3, r3, #10 + 8004578: f003 0307 and.w r3, r3, #7 + 800457c: 4903 ldr r1, [pc, #12] @ (800458c ) + 800457e: 5ccb ldrb r3, [r1, r3] + 8004580: fa22 f303 lsr.w r3, r2, r3 } - 8004314: 4618 mov r0, r3 - 8004316: bd80 pop {r7, pc} - 8004318: 40023800 .word 0x40023800 - 800431c: 0800ab24 .word 0x0800ab24 + 8004584: 4618 mov r0, r3 + 8004586: bd80 pop {r7, pc} + 8004588: 40023800 .word 0x40023800 + 800458c: 0800af18 .word 0x0800af18 -08004320 : +08004590 : * @note Each time PCLK2 changes, this function must be called to update the * right PCLK2 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK2 frequency */ uint32_t HAL_RCC_GetPCLK2Freq(void) { - 8004320: b580 push {r7, lr} - 8004322: af00 add r7, sp, #0 + 8004590: b580 push {r7, lr} + 8004592: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK2 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq() >> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE2) >> RCC_CFGR_PPRE2_Pos]); - 8004324: f7ff ffdc bl 80042e0 - 8004328: 4602 mov r2, r0 - 800432a: 4b05 ldr r3, [pc, #20] @ (8004340 ) - 800432c: 689b ldr r3, [r3, #8] - 800432e: 0b5b lsrs r3, r3, #13 - 8004330: f003 0307 and.w r3, r3, #7 - 8004334: 4903 ldr r1, [pc, #12] @ (8004344 ) - 8004336: 5ccb ldrb r3, [r1, r3] - 8004338: fa22 f303 lsr.w r3, r2, r3 + 8004594: f7ff ffdc bl 8004550 + 8004598: 4602 mov r2, r0 + 800459a: 4b05 ldr r3, [pc, #20] @ (80045b0 ) + 800459c: 689b ldr r3, [r3, #8] + 800459e: 0b5b lsrs r3, r3, #13 + 80045a0: f003 0307 and.w r3, r3, #7 + 80045a4: 4903 ldr r1, [pc, #12] @ (80045b4 ) + 80045a6: 5ccb ldrb r3, [r1, r3] + 80045a8: fa22 f303 lsr.w r3, r2, r3 } - 800433c: 4618 mov r0, r3 - 800433e: bd80 pop {r7, pc} - 8004340: 40023800 .word 0x40023800 - 8004344: 0800ab24 .word 0x0800ab24 + 80045ac: 4618 mov r0, r3 + 80045ae: bd80 pop {r7, pc} + 80045b0: 40023800 .word 0x40023800 + 80045b4: 0800af18 .word 0x0800af18 -08004348 : +080045b8 : * the backup registers) and RCC_BDCR register are set to their reset values. * * @retval HAL status */ HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit) { - 8004348: b580 push {r7, lr} - 800434a: b08c sub sp, #48 @ 0x30 - 800434c: af00 add r7, sp, #0 - 800434e: 6078 str r0, [r7, #4] + 80045b8: b580 push {r7, lr} + 80045ba: b08c sub sp, #48 @ 0x30 + 80045bc: af00 add r7, sp, #0 + 80045be: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 8004350: 2300 movs r3, #0 - 8004352: 627b str r3, [r7, #36] @ 0x24 + 80045c0: 2300 movs r3, #0 + 80045c2: 627b str r3, [r7, #36] @ 0x24 uint32_t tmpreg1 = 0U; - 8004354: 2300 movs r3, #0 - 8004356: 623b str r3, [r7, #32] + 80045c4: 2300 movs r3, #0 + 80045c6: 623b str r3, [r7, #32] uint32_t plli2sp = 0U; - 8004358: 2300 movs r3, #0 - 800435a: 61fb str r3, [r7, #28] + 80045c8: 2300 movs r3, #0 + 80045ca: 61fb str r3, [r7, #28] uint32_t plli2sq = 0U; - 800435c: 2300 movs r3, #0 - 800435e: 61bb str r3, [r7, #24] + 80045cc: 2300 movs r3, #0 + 80045ce: 61bb str r3, [r7, #24] uint32_t plli2sr = 0U; - 8004360: 2300 movs r3, #0 - 8004362: 617b str r3, [r7, #20] + 80045d0: 2300 movs r3, #0 + 80045d2: 617b str r3, [r7, #20] uint32_t pllsaip = 0U; - 8004364: 2300 movs r3, #0 - 8004366: 613b str r3, [r7, #16] + 80045d4: 2300 movs r3, #0 + 80045d6: 613b str r3, [r7, #16] uint32_t pllsaiq = 0U; - 8004368: 2300 movs r3, #0 - 800436a: 60fb str r3, [r7, #12] + 80045d8: 2300 movs r3, #0 + 80045da: 60fb str r3, [r7, #12] uint32_t plli2sused = 0U; - 800436c: 2300 movs r3, #0 - 800436e: 62fb str r3, [r7, #44] @ 0x2c + 80045dc: 2300 movs r3, #0 + 80045de: 62fb str r3, [r7, #44] @ 0x2c uint32_t pllsaiused = 0U; - 8004370: 2300 movs r3, #0 - 8004372: 62bb str r3, [r7, #40] @ 0x28 + 80045e0: 2300 movs r3, #0 + 80045e2: 62bb str r3, [r7, #40] @ 0x28 /* Check the peripheral clock selection parameters */ assert_param(IS_RCC_PERIPHCLOCK(PeriphClkInit->PeriphClockSelection)); /*------------------------ I2S APB1 configuration --------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB1) == (RCC_PERIPHCLK_I2S_APB1)) - 8004374: 687b ldr r3, [r7, #4] - 8004376: 681b ldr r3, [r3, #0] - 8004378: f003 0301 and.w r3, r3, #1 - 800437c: 2b00 cmp r3, #0 - 800437e: d010 beq.n 80043a2 + 80045e4: 687b ldr r3, [r7, #4] + 80045e6: 681b ldr r3, [r3, #0] + 80045e8: f003 0301 and.w r3, r3, #1 + 80045ec: 2b00 cmp r3, #0 + 80045ee: d010 beq.n 8004612 { /* Check the parameters */ assert_param(IS_RCC_I2SAPB1CLKSOURCE(PeriphClkInit->I2sApb1ClockSelection)); /* Configure I2S Clock source */ __HAL_RCC_I2S_APB1_CONFIG(PeriphClkInit->I2sApb1ClockSelection); - 8004380: 4b6f ldr r3, [pc, #444] @ (8004540 ) - 8004382: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 8004386: f023 62c0 bic.w r2, r3, #100663296 @ 0x6000000 - 800438a: 687b ldr r3, [r7, #4] - 800438c: 6b9b ldr r3, [r3, #56] @ 0x38 - 800438e: 496c ldr r1, [pc, #432] @ (8004540 ) - 8004390: 4313 orrs r3, r2 - 8004392: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 80045f0: 4b6f ldr r3, [pc, #444] @ (80047b0 ) + 80045f2: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 80045f6: f023 62c0 bic.w r2, r3, #100663296 @ 0x6000000 + 80045fa: 687b ldr r3, [r7, #4] + 80045fc: 6b9b ldr r3, [r3, #56] @ 0x38 + 80045fe: 496c ldr r1, [pc, #432] @ (80047b0 ) + 8004600: 4313 orrs r3, r2 + 8004602: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for I2S */ if (PeriphClkInit->I2sApb1ClockSelection == RCC_I2SAPB1CLKSOURCE_PLLI2S) - 8004396: 687b ldr r3, [r7, #4] - 8004398: 6b9b ldr r3, [r3, #56] @ 0x38 - 800439a: 2b00 cmp r3, #0 - 800439c: d101 bne.n 80043a2 + 8004606: 687b ldr r3, [r7, #4] + 8004608: 6b9b ldr r3, [r3, #56] @ 0x38 + 800460a: 2b00 cmp r3, #0 + 800460c: d101 bne.n 8004612 { plli2sused = 1U; - 800439e: 2301 movs r3, #1 - 80043a0: 62fb str r3, [r7, #44] @ 0x2c + 800460e: 2301 movs r3, #1 + 8004610: 62fb str r3, [r7, #44] @ 0x2c } } /*--------------------------------------------------------------------------*/ /*---------------------------- I2S APB2 configuration ----------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB2) == (RCC_PERIPHCLK_I2S_APB2)) - 80043a2: 687b ldr r3, [r7, #4] - 80043a4: 681b ldr r3, [r3, #0] - 80043a6: f003 0302 and.w r3, r3, #2 - 80043aa: 2b00 cmp r3, #0 - 80043ac: d010 beq.n 80043d0 + 8004612: 687b ldr r3, [r7, #4] + 8004614: 681b ldr r3, [r3, #0] + 8004616: f003 0302 and.w r3, r3, #2 + 800461a: 2b00 cmp r3, #0 + 800461c: d010 beq.n 8004640 { /* Check the parameters */ assert_param(IS_RCC_I2SAPB2CLKSOURCE(PeriphClkInit->I2sApb2ClockSelection)); /* Configure I2S Clock source */ __HAL_RCC_I2S_APB2_CONFIG(PeriphClkInit->I2sApb2ClockSelection); - 80043ae: 4b64 ldr r3, [pc, #400] @ (8004540 ) - 80043b0: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 80043b4: f023 52c0 bic.w r2, r3, #402653184 @ 0x18000000 - 80043b8: 687b ldr r3, [r7, #4] - 80043ba: 6bdb ldr r3, [r3, #60] @ 0x3c - 80043bc: 4960 ldr r1, [pc, #384] @ (8004540 ) - 80043be: 4313 orrs r3, r2 - 80043c0: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 800461e: 4b64 ldr r3, [pc, #400] @ (80047b0 ) + 8004620: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 8004624: f023 52c0 bic.w r2, r3, #402653184 @ 0x18000000 + 8004628: 687b ldr r3, [r7, #4] + 800462a: 6bdb ldr r3, [r3, #60] @ 0x3c + 800462c: 4960 ldr r1, [pc, #384] @ (80047b0 ) + 800462e: 4313 orrs r3, r2 + 8004630: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for I2S */ if (PeriphClkInit->I2sApb2ClockSelection == RCC_I2SAPB2CLKSOURCE_PLLI2S) - 80043c4: 687b ldr r3, [r7, #4] - 80043c6: 6bdb ldr r3, [r3, #60] @ 0x3c - 80043c8: 2b00 cmp r3, #0 - 80043ca: d101 bne.n 80043d0 + 8004634: 687b ldr r3, [r7, #4] + 8004636: 6bdb ldr r3, [r3, #60] @ 0x3c + 8004638: 2b00 cmp r3, #0 + 800463a: d101 bne.n 8004640 { plli2sused = 1U; - 80043cc: 2301 movs r3, #1 - 80043ce: 62fb str r3, [r7, #44] @ 0x2c + 800463c: 2301 movs r3, #1 + 800463e: 62fb str r3, [r7, #44] @ 0x2c } } /*--------------------------------------------------------------------------*/ /*--------------------------- SAI1 configuration ---------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == (RCC_PERIPHCLK_SAI1)) - 80043d0: 687b ldr r3, [r7, #4] - 80043d2: 681b ldr r3, [r3, #0] - 80043d4: f003 0304 and.w r3, r3, #4 - 80043d8: 2b00 cmp r3, #0 - 80043da: d017 beq.n 800440c + 8004640: 687b ldr r3, [r7, #4] + 8004642: 681b ldr r3, [r3, #0] + 8004644: f003 0304 and.w r3, r3, #4 + 8004648: 2b00 cmp r3, #0 + 800464a: d017 beq.n 800467c { /* Check the parameters */ assert_param(IS_RCC_SAI1CLKSOURCE(PeriphClkInit->Sai1ClockSelection)); /* Configure SAI1 Clock source */ __HAL_RCC_SAI1_CONFIG(PeriphClkInit->Sai1ClockSelection); - 80043dc: 4b58 ldr r3, [pc, #352] @ (8004540 ) - 80043de: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 80043e2: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 - 80043e6: 687b ldr r3, [r7, #4] - 80043e8: 6b1b ldr r3, [r3, #48] @ 0x30 - 80043ea: 4955 ldr r1, [pc, #340] @ (8004540 ) - 80043ec: 4313 orrs r3, r2 - 80043ee: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 800464c: 4b58 ldr r3, [pc, #352] @ (80047b0 ) + 800464e: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 8004652: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 + 8004656: 687b ldr r3, [r7, #4] + 8004658: 6b1b ldr r3, [r3, #48] @ 0x30 + 800465a: 4955 ldr r1, [pc, #340] @ (80047b0 ) + 800465c: 4313 orrs r3, r2 + 800465e: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for SAI */ if (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLI2S) - 80043f2: 687b ldr r3, [r7, #4] - 80043f4: 6b1b ldr r3, [r3, #48] @ 0x30 - 80043f6: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 - 80043fa: d101 bne.n 8004400 + 8004662: 687b ldr r3, [r7, #4] + 8004664: 6b1b ldr r3, [r3, #48] @ 0x30 + 8004666: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 + 800466a: d101 bne.n 8004670 { plli2sused = 1U; - 80043fc: 2301 movs r3, #1 - 80043fe: 62fb str r3, [r7, #44] @ 0x2c + 800466c: 2301 movs r3, #1 + 800466e: 62fb str r3, [r7, #44] @ 0x2c } /* Enable the PLLSAI when it's used as clock source for SAI */ if (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLSAI) - 8004400: 687b ldr r3, [r7, #4] - 8004402: 6b1b ldr r3, [r3, #48] @ 0x30 - 8004404: 2b00 cmp r3, #0 - 8004406: d101 bne.n 800440c + 8004670: 687b ldr r3, [r7, #4] + 8004672: 6b1b ldr r3, [r3, #48] @ 0x30 + 8004674: 2b00 cmp r3, #0 + 8004676: d101 bne.n 800467c { pllsaiused = 1U; - 8004408: 2301 movs r3, #1 - 800440a: 62bb str r3, [r7, #40] @ 0x28 + 8004678: 2301 movs r3, #1 + 800467a: 62bb str r3, [r7, #40] @ 0x28 } } /*--------------------------------------------------------------------------*/ /*-------------------------- SAI2 configuration ----------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == (RCC_PERIPHCLK_SAI2)) - 800440c: 687b ldr r3, [r7, #4] - 800440e: 681b ldr r3, [r3, #0] - 8004410: f003 0308 and.w r3, r3, #8 - 8004414: 2b00 cmp r3, #0 - 8004416: d017 beq.n 8004448 + 800467c: 687b ldr r3, [r7, #4] + 800467e: 681b ldr r3, [r3, #0] + 8004680: f003 0308 and.w r3, r3, #8 + 8004684: 2b00 cmp r3, #0 + 8004686: d017 beq.n 80046b8 { /* Check the parameters */ assert_param(IS_RCC_SAI2CLKSOURCE(PeriphClkInit->Sai2ClockSelection)); /* Configure SAI2 Clock source */ __HAL_RCC_SAI2_CONFIG(PeriphClkInit->Sai2ClockSelection); - 8004418: 4b49 ldr r3, [pc, #292] @ (8004540 ) - 800441a: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 800441e: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 - 8004422: 687b ldr r3, [r7, #4] - 8004424: 6b5b ldr r3, [r3, #52] @ 0x34 - 8004426: 4946 ldr r1, [pc, #280] @ (8004540 ) - 8004428: 4313 orrs r3, r2 - 800442a: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 8004688: 4b49 ldr r3, [pc, #292] @ (80047b0 ) + 800468a: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 800468e: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 + 8004692: 687b ldr r3, [r7, #4] + 8004694: 6b5b ldr r3, [r3, #52] @ 0x34 + 8004696: 4946 ldr r1, [pc, #280] @ (80047b0 ) + 8004698: 4313 orrs r3, r2 + 800469a: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for SAI */ if (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLI2S) - 800442e: 687b ldr r3, [r7, #4] - 8004430: 6b5b ldr r3, [r3, #52] @ 0x34 - 8004432: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004436: d101 bne.n 800443c + 800469e: 687b ldr r3, [r7, #4] + 80046a0: 6b5b ldr r3, [r3, #52] @ 0x34 + 80046a2: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 80046a6: d101 bne.n 80046ac { plli2sused = 1U; - 8004438: 2301 movs r3, #1 - 800443a: 62fb str r3, [r7, #44] @ 0x2c + 80046a8: 2301 movs r3, #1 + 80046aa: 62fb str r3, [r7, #44] @ 0x2c } /* Enable the PLLSAI when it's used as clock source for SAI */ if (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLSAI) - 800443c: 687b ldr r3, [r7, #4] - 800443e: 6b5b ldr r3, [r3, #52] @ 0x34 - 8004440: 2b00 cmp r3, #0 - 8004442: d101 bne.n 8004448 + 80046ac: 687b ldr r3, [r7, #4] + 80046ae: 6b5b ldr r3, [r3, #52] @ 0x34 + 80046b0: 2b00 cmp r3, #0 + 80046b2: d101 bne.n 80046b8 { pllsaiused = 1U; - 8004444: 2301 movs r3, #1 - 8004446: 62bb str r3, [r7, #40] @ 0x28 + 80046b4: 2301 movs r3, #1 + 80046b6: 62bb str r3, [r7, #40] @ 0x28 } } /*--------------------------------------------------------------------------*/ /*----------------------------- RTC configuration --------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == (RCC_PERIPHCLK_RTC)) - 8004448: 687b ldr r3, [r7, #4] - 800444a: 681b ldr r3, [r3, #0] - 800444c: f003 0320 and.w r3, r3, #32 - 8004450: 2b00 cmp r3, #0 - 8004452: f000 808a beq.w 800456a + 80046b8: 687b ldr r3, [r7, #4] + 80046ba: 681b ldr r3, [r3, #0] + 80046bc: f003 0320 and.w r3, r3, #32 + 80046c0: 2b00 cmp r3, #0 + 80046c2: f000 808a beq.w 80047da { /* Check for RTC Parameters used to output RTCCLK */ assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->RTCClockSelection)); /* Enable Power Clock*/ __HAL_RCC_PWR_CLK_ENABLE(); - 8004456: 2300 movs r3, #0 - 8004458: 60bb str r3, [r7, #8] - 800445a: 4b39 ldr r3, [pc, #228] @ (8004540 ) - 800445c: 6c1b ldr r3, [r3, #64] @ 0x40 - 800445e: 4a38 ldr r2, [pc, #224] @ (8004540 ) - 8004460: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8004464: 6413 str r3, [r2, #64] @ 0x40 - 8004466: 4b36 ldr r3, [pc, #216] @ (8004540 ) - 8004468: 6c1b ldr r3, [r3, #64] @ 0x40 - 800446a: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800446e: 60bb str r3, [r7, #8] - 8004470: 68bb ldr r3, [r7, #8] + 80046c6: 2300 movs r3, #0 + 80046c8: 60bb str r3, [r7, #8] + 80046ca: 4b39 ldr r3, [pc, #228] @ (80047b0 ) + 80046cc: 6c1b ldr r3, [r3, #64] @ 0x40 + 80046ce: 4a38 ldr r2, [pc, #224] @ (80047b0 ) + 80046d0: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80046d4: 6413 str r3, [r2, #64] @ 0x40 + 80046d6: 4b36 ldr r3, [pc, #216] @ (80047b0 ) + 80046d8: 6c1b ldr r3, [r3, #64] @ 0x40 + 80046da: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 80046de: 60bb str r3, [r7, #8] + 80046e0: 68bb ldr r3, [r7, #8] /* Enable write access to Backup domain */ PWR->CR |= PWR_CR_DBP; - 8004472: 4b34 ldr r3, [pc, #208] @ (8004544 ) - 8004474: 681b ldr r3, [r3, #0] - 8004476: 4a33 ldr r2, [pc, #204] @ (8004544 ) - 8004478: f443 7380 orr.w r3, r3, #256 @ 0x100 - 800447c: 6013 str r3, [r2, #0] + 80046e2: 4b34 ldr r3, [pc, #208] @ (80047b4 ) + 80046e4: 681b ldr r3, [r3, #0] + 80046e6: 4a33 ldr r2, [pc, #204] @ (80047b4 ) + 80046e8: f443 7380 orr.w r3, r3, #256 @ 0x100 + 80046ec: 6013 str r3, [r2, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800447e: f7fd fb75 bl 8001b6c - 8004482: 6278 str r0, [r7, #36] @ 0x24 + 80046ee: f7fd fb75 bl 8001ddc + 80046f2: 6278 str r0, [r7, #36] @ 0x24 while ((PWR->CR & PWR_CR_DBP) == RESET) - 8004484: e008 b.n 8004498 + 80046f4: e008 b.n 8004708 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 8004486: f7fd fb71 bl 8001b6c - 800448a: 4602 mov r2, r0 - 800448c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800448e: 1ad3 subs r3, r2, r3 - 8004490: 2b02 cmp r3, #2 - 8004492: d901 bls.n 8004498 + 80046f6: f7fd fb71 bl 8001ddc + 80046fa: 4602 mov r2, r0 + 80046fc: 6a7b ldr r3, [r7, #36] @ 0x24 + 80046fe: 1ad3 subs r3, r2, r3 + 8004700: 2b02 cmp r3, #2 + 8004702: d901 bls.n 8004708 { return HAL_TIMEOUT; - 8004494: 2303 movs r3, #3 - 8004496: e278 b.n 800498a + 8004704: 2303 movs r3, #3 + 8004706: e278 b.n 8004bfa while ((PWR->CR & PWR_CR_DBP) == RESET) - 8004498: 4b2a ldr r3, [pc, #168] @ (8004544 ) - 800449a: 681b ldr r3, [r3, #0] - 800449c: f403 7380 and.w r3, r3, #256 @ 0x100 - 80044a0: 2b00 cmp r3, #0 - 80044a2: d0f0 beq.n 8004486 + 8004708: 4b2a ldr r3, [pc, #168] @ (80047b4 ) + 800470a: 681b ldr r3, [r3, #0] + 800470c: f403 7380 and.w r3, r3, #256 @ 0x100 + 8004710: 2b00 cmp r3, #0 + 8004712: d0f0 beq.n 80046f6 } } /* Reset the Backup domain only if the RTC Clock source selection is modified from reset value */ tmpreg1 = (RCC->BDCR & RCC_BDCR_RTCSEL); - 80044a4: 4b26 ldr r3, [pc, #152] @ (8004540 ) - 80044a6: 6f1b ldr r3, [r3, #112] @ 0x70 - 80044a8: f403 7340 and.w r3, r3, #768 @ 0x300 - 80044ac: 623b str r3, [r7, #32] + 8004714: 4b26 ldr r3, [pc, #152] @ (80047b0 ) + 8004716: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004718: f403 7340 and.w r3, r3, #768 @ 0x300 + 800471c: 623b str r3, [r7, #32] if ((tmpreg1 != 0x00000000U) && ((tmpreg1) != (PeriphClkInit->RTCClockSelection & RCC_BDCR_RTCSEL))) - 80044ae: 6a3b ldr r3, [r7, #32] - 80044b0: 2b00 cmp r3, #0 - 80044b2: d02f beq.n 8004514 - 80044b4: 687b ldr r3, [r7, #4] - 80044b6: 6c1b ldr r3, [r3, #64] @ 0x40 - 80044b8: f403 7340 and.w r3, r3, #768 @ 0x300 - 80044bc: 6a3a ldr r2, [r7, #32] - 80044be: 429a cmp r2, r3 - 80044c0: d028 beq.n 8004514 + 800471e: 6a3b ldr r3, [r7, #32] + 8004720: 2b00 cmp r3, #0 + 8004722: d02f beq.n 8004784 + 8004724: 687b ldr r3, [r7, #4] + 8004726: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004728: f403 7340 and.w r3, r3, #768 @ 0x300 + 800472c: 6a3a ldr r2, [r7, #32] + 800472e: 429a cmp r2, r3 + 8004730: d028 beq.n 8004784 { /* Store the content of BDCR register before the reset of Backup Domain */ tmpreg1 = (RCC->BDCR & ~(RCC_BDCR_RTCSEL)); - 80044c2: 4b1f ldr r3, [pc, #124] @ (8004540 ) - 80044c4: 6f1b ldr r3, [r3, #112] @ 0x70 - 80044c6: f423 7340 bic.w r3, r3, #768 @ 0x300 - 80044ca: 623b str r3, [r7, #32] + 8004732: 4b1f ldr r3, [pc, #124] @ (80047b0 ) + 8004734: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004736: f423 7340 bic.w r3, r3, #768 @ 0x300 + 800473a: 623b str r3, [r7, #32] /* RTC Clock selection can be changed only if the Backup Domain is reset */ __HAL_RCC_BACKUPRESET_FORCE(); - 80044cc: 4b1e ldr r3, [pc, #120] @ (8004548 ) - 80044ce: 2201 movs r2, #1 - 80044d0: 601a str r2, [r3, #0] + 800473c: 4b1e ldr r3, [pc, #120] @ (80047b8 ) + 800473e: 2201 movs r2, #1 + 8004740: 601a str r2, [r3, #0] __HAL_RCC_BACKUPRESET_RELEASE(); - 80044d2: 4b1d ldr r3, [pc, #116] @ (8004548 ) - 80044d4: 2200 movs r2, #0 - 80044d6: 601a str r2, [r3, #0] + 8004742: 4b1d ldr r3, [pc, #116] @ (80047b8 ) + 8004744: 2200 movs r2, #0 + 8004746: 601a str r2, [r3, #0] /* Restore the Content of BDCR register */ RCC->BDCR = tmpreg1; - 80044d8: 4a19 ldr r2, [pc, #100] @ (8004540 ) - 80044da: 6a3b ldr r3, [r7, #32] - 80044dc: 6713 str r3, [r2, #112] @ 0x70 + 8004748: 4a19 ldr r2, [pc, #100] @ (80047b0 ) + 800474a: 6a3b ldr r3, [r7, #32] + 800474c: 6713 str r3, [r2, #112] @ 0x70 /* Wait for LSE reactivation if LSE was enable prior to Backup Domain reset */ if (HAL_IS_BIT_SET(RCC->BDCR, RCC_BDCR_LSEON)) - 80044de: 4b18 ldr r3, [pc, #96] @ (8004540 ) - 80044e0: 6f1b ldr r3, [r3, #112] @ 0x70 - 80044e2: f003 0301 and.w r3, r3, #1 - 80044e6: 2b01 cmp r3, #1 - 80044e8: d114 bne.n 8004514 + 800474e: 4b18 ldr r3, [pc, #96] @ (80047b0 ) + 8004750: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004752: f003 0301 and.w r3, r3, #1 + 8004756: 2b01 cmp r3, #1 + 8004758: d114 bne.n 8004784 { /* Get tick */ tickstart = HAL_GetTick(); - 80044ea: f7fd fb3f bl 8001b6c - 80044ee: 6278 str r0, [r7, #36] @ 0x24 + 800475a: f7fd fb3f bl 8001ddc + 800475e: 6278 str r0, [r7, #36] @ 0x24 /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80044f0: e00a b.n 8004508 + 8004760: e00a b.n 8004778 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 80044f2: f7fd fb3b bl 8001b6c - 80044f6: 4602 mov r2, r0 - 80044f8: 6a7b ldr r3, [r7, #36] @ 0x24 - 80044fa: 1ad3 subs r3, r2, r3 - 80044fc: f241 3288 movw r2, #5000 @ 0x1388 - 8004500: 4293 cmp r3, r2 - 8004502: d901 bls.n 8004508 + 8004762: f7fd fb3b bl 8001ddc + 8004766: 4602 mov r2, r0 + 8004768: 6a7b ldr r3, [r7, #36] @ 0x24 + 800476a: 1ad3 subs r3, r2, r3 + 800476c: f241 3288 movw r2, #5000 @ 0x1388 + 8004770: 4293 cmp r3, r2 + 8004772: d901 bls.n 8004778 { return HAL_TIMEOUT; - 8004504: 2303 movs r3, #3 - 8004506: e240 b.n 800498a + 8004774: 2303 movs r3, #3 + 8004776: e240 b.n 8004bfa while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8004508: 4b0d ldr r3, [pc, #52] @ (8004540 ) - 800450a: 6f1b ldr r3, [r3, #112] @ 0x70 - 800450c: f003 0302 and.w r3, r3, #2 - 8004510: 2b00 cmp r3, #0 - 8004512: d0ee beq.n 80044f2 + 8004778: 4b0d ldr r3, [pc, #52] @ (80047b0 ) + 800477a: 6f1b ldr r3, [r3, #112] @ 0x70 + 800477c: f003 0302 and.w r3, r3, #2 + 8004780: 2b00 cmp r3, #0 + 8004782: d0ee beq.n 8004762 } } } } __HAL_RCC_RTC_CONFIG(PeriphClkInit->RTCClockSelection); - 8004514: 687b ldr r3, [r7, #4] - 8004516: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004518: f403 7340 and.w r3, r3, #768 @ 0x300 - 800451c: f5b3 7f40 cmp.w r3, #768 @ 0x300 - 8004520: d114 bne.n 800454c - 8004522: 4b07 ldr r3, [pc, #28] @ (8004540 ) - 8004524: 689b ldr r3, [r3, #8] - 8004526: f423 12f8 bic.w r2, r3, #2031616 @ 0x1f0000 - 800452a: 687b ldr r3, [r7, #4] - 800452c: 6c1b ldr r3, [r3, #64] @ 0x40 - 800452e: f023 4370 bic.w r3, r3, #4026531840 @ 0xf0000000 - 8004532: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8004536: 4902 ldr r1, [pc, #8] @ (8004540 ) - 8004538: 4313 orrs r3, r2 - 800453a: 608b str r3, [r1, #8] - 800453c: e00c b.n 8004558 - 800453e: bf00 nop - 8004540: 40023800 .word 0x40023800 - 8004544: 40007000 .word 0x40007000 - 8004548: 42470e40 .word 0x42470e40 - 800454c: 4b4a ldr r3, [pc, #296] @ (8004678 ) - 800454e: 689b ldr r3, [r3, #8] - 8004550: 4a49 ldr r2, [pc, #292] @ (8004678 ) - 8004552: f423 13f8 bic.w r3, r3, #2031616 @ 0x1f0000 - 8004556: 6093 str r3, [r2, #8] - 8004558: 4b47 ldr r3, [pc, #284] @ (8004678 ) - 800455a: 6f1a ldr r2, [r3, #112] @ 0x70 - 800455c: 687b ldr r3, [r7, #4] - 800455e: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004560: f3c3 030b ubfx r3, r3, #0, #12 - 8004564: 4944 ldr r1, [pc, #272] @ (8004678 ) - 8004566: 4313 orrs r3, r2 - 8004568: 670b str r3, [r1, #112] @ 0x70 + 8004784: 687b ldr r3, [r7, #4] + 8004786: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004788: f403 7340 and.w r3, r3, #768 @ 0x300 + 800478c: f5b3 7f40 cmp.w r3, #768 @ 0x300 + 8004790: d114 bne.n 80047bc + 8004792: 4b07 ldr r3, [pc, #28] @ (80047b0 ) + 8004794: 689b ldr r3, [r3, #8] + 8004796: f423 12f8 bic.w r2, r3, #2031616 @ 0x1f0000 + 800479a: 687b ldr r3, [r7, #4] + 800479c: 6c1b ldr r3, [r3, #64] @ 0x40 + 800479e: f023 4370 bic.w r3, r3, #4026531840 @ 0xf0000000 + 80047a2: f423 7340 bic.w r3, r3, #768 @ 0x300 + 80047a6: 4902 ldr r1, [pc, #8] @ (80047b0 ) + 80047a8: 4313 orrs r3, r2 + 80047aa: 608b str r3, [r1, #8] + 80047ac: e00c b.n 80047c8 + 80047ae: bf00 nop + 80047b0: 40023800 .word 0x40023800 + 80047b4: 40007000 .word 0x40007000 + 80047b8: 42470e40 .word 0x42470e40 + 80047bc: 4b4a ldr r3, [pc, #296] @ (80048e8 ) + 80047be: 689b ldr r3, [r3, #8] + 80047c0: 4a49 ldr r2, [pc, #292] @ (80048e8 ) + 80047c2: f423 13f8 bic.w r3, r3, #2031616 @ 0x1f0000 + 80047c6: 6093 str r3, [r2, #8] + 80047c8: 4b47 ldr r3, [pc, #284] @ (80048e8 ) + 80047ca: 6f1a ldr r2, [r3, #112] @ 0x70 + 80047cc: 687b ldr r3, [r7, #4] + 80047ce: 6c1b ldr r3, [r3, #64] @ 0x40 + 80047d0: f3c3 030b ubfx r3, r3, #0, #12 + 80047d4: 4944 ldr r1, [pc, #272] @ (80048e8 ) + 80047d6: 4313 orrs r3, r2 + 80047d8: 670b str r3, [r1, #112] @ 0x70 } /*--------------------------------------------------------------------------*/ /*---------------------------- TIM configuration ---------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_TIM) == (RCC_PERIPHCLK_TIM)) - 800456a: 687b ldr r3, [r7, #4] - 800456c: 681b ldr r3, [r3, #0] - 800456e: f003 0310 and.w r3, r3, #16 - 8004572: 2b00 cmp r3, #0 - 8004574: d004 beq.n 8004580 + 80047da: 687b ldr r3, [r7, #4] + 80047dc: 681b ldr r3, [r3, #0] + 80047de: f003 0310 and.w r3, r3, #16 + 80047e2: 2b00 cmp r3, #0 + 80047e4: d004 beq.n 80047f0 { /* Configure Timer Prescaler */ __HAL_RCC_TIMCLKPRESCALER(PeriphClkInit->TIMPresSelection); - 8004576: 687b ldr r3, [r7, #4] - 8004578: f893 2058 ldrb.w r2, [r3, #88] @ 0x58 - 800457c: 4b3f ldr r3, [pc, #252] @ (800467c ) - 800457e: 601a str r2, [r3, #0] + 80047e6: 687b ldr r3, [r7, #4] + 80047e8: f893 2058 ldrb.w r2, [r3, #88] @ 0x58 + 80047ec: 4b3f ldr r3, [pc, #252] @ (80048ec ) + 80047ee: 601a str r2, [r3, #0] } /*--------------------------------------------------------------------------*/ /*---------------------------- FMPI2C1 Configuration -----------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_FMPI2C1) == RCC_PERIPHCLK_FMPI2C1) - 8004580: 687b ldr r3, [r7, #4] - 8004582: 681b ldr r3, [r3, #0] - 8004584: f003 0380 and.w r3, r3, #128 @ 0x80 - 8004588: 2b00 cmp r3, #0 - 800458a: d00a beq.n 80045a2 + 80047f0: 687b ldr r3, [r7, #4] + 80047f2: 681b ldr r3, [r3, #0] + 80047f4: f003 0380 and.w r3, r3, #128 @ 0x80 + 80047f8: 2b00 cmp r3, #0 + 80047fa: d00a beq.n 8004812 { /* Check the parameters */ assert_param(IS_RCC_FMPI2C1CLKSOURCE(PeriphClkInit->Fmpi2c1ClockSelection)); /* Configure the FMPI2C1 clock source */ __HAL_RCC_FMPI2C1_CONFIG(PeriphClkInit->Fmpi2c1ClockSelection); - 800458c: 4b3a ldr r3, [pc, #232] @ (8004678 ) - 800458e: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004592: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 - 8004596: 687b ldr r3, [r7, #4] - 8004598: 6cdb ldr r3, [r3, #76] @ 0x4c - 800459a: 4937 ldr r1, [pc, #220] @ (8004678 ) - 800459c: 4313 orrs r3, r2 - 800459e: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 80047fc: 4b3a ldr r3, [pc, #232] @ (80048e8 ) + 80047fe: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004802: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 + 8004806: 687b ldr r3, [r7, #4] + 8004808: 6cdb ldr r3, [r3, #76] @ 0x4c + 800480a: 4937 ldr r1, [pc, #220] @ (80048e8 ) + 800480c: 4313 orrs r3, r2 + 800480e: f8c1 3094 str.w r3, [r1, #148] @ 0x94 } /*--------------------------------------------------------------------------*/ /*------------------------------ CEC Configuration -------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_CEC) == RCC_PERIPHCLK_CEC) - 80045a2: 687b ldr r3, [r7, #4] - 80045a4: 681b ldr r3, [r3, #0] - 80045a6: f003 0340 and.w r3, r3, #64 @ 0x40 - 80045aa: 2b00 cmp r3, #0 - 80045ac: d00a beq.n 80045c4 + 8004812: 687b ldr r3, [r7, #4] + 8004814: 681b ldr r3, [r3, #0] + 8004816: f003 0340 and.w r3, r3, #64 @ 0x40 + 800481a: 2b00 cmp r3, #0 + 800481c: d00a beq.n 8004834 { /* Check the parameters */ assert_param(IS_RCC_CECCLKSOURCE(PeriphClkInit->CecClockSelection)); /* Configure the CEC clock source */ __HAL_RCC_CEC_CONFIG(PeriphClkInit->CecClockSelection); - 80045ae: 4b32 ldr r3, [pc, #200] @ (8004678 ) - 80045b0: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 80045b4: f023 6280 bic.w r2, r3, #67108864 @ 0x4000000 - 80045b8: 687b ldr r3, [r7, #4] - 80045ba: 6c9b ldr r3, [r3, #72] @ 0x48 - 80045bc: 492e ldr r1, [pc, #184] @ (8004678 ) - 80045be: 4313 orrs r3, r2 - 80045c0: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 800481e: 4b32 ldr r3, [pc, #200] @ (80048e8 ) + 8004820: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004824: f023 6280 bic.w r2, r3, #67108864 @ 0x4000000 + 8004828: 687b ldr r3, [r7, #4] + 800482a: 6c9b ldr r3, [r3, #72] @ 0x48 + 800482c: 492e ldr r1, [pc, #184] @ (80048e8 ) + 800482e: 4313 orrs r3, r2 + 8004830: f8c1 3094 str.w r3, [r1, #148] @ 0x94 } /*--------------------------------------------------------------------------*/ /*----------------------------- CLK48 Configuration ------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_CLK48) == RCC_PERIPHCLK_CLK48) - 80045c4: 687b ldr r3, [r7, #4] - 80045c6: 681b ldr r3, [r3, #0] - 80045c8: f403 7380 and.w r3, r3, #256 @ 0x100 - 80045cc: 2b00 cmp r3, #0 - 80045ce: d011 beq.n 80045f4 + 8004834: 687b ldr r3, [r7, #4] + 8004836: 681b ldr r3, [r3, #0] + 8004838: f403 7380 and.w r3, r3, #256 @ 0x100 + 800483c: 2b00 cmp r3, #0 + 800483e: d011 beq.n 8004864 { /* Check the parameters */ assert_param(IS_RCC_CLK48CLKSOURCE(PeriphClkInit->Clk48ClockSelection)); /* Configure the CLK48 clock source */ __HAL_RCC_CLK48_CONFIG(PeriphClkInit->Clk48ClockSelection); - 80045d0: 4b29 ldr r3, [pc, #164] @ (8004678 ) - 80045d2: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 80045d6: f023 6200 bic.w r2, r3, #134217728 @ 0x8000000 - 80045da: 687b ldr r3, [r7, #4] - 80045dc: 6d5b ldr r3, [r3, #84] @ 0x54 - 80045de: 4926 ldr r1, [pc, #152] @ (8004678 ) - 80045e0: 4313 orrs r3, r2 - 80045e2: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 8004840: 4b29 ldr r3, [pc, #164] @ (80048e8 ) + 8004842: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004846: f023 6200 bic.w r2, r3, #134217728 @ 0x8000000 + 800484a: 687b ldr r3, [r7, #4] + 800484c: 6d5b ldr r3, [r3, #84] @ 0x54 + 800484e: 4926 ldr r1, [pc, #152] @ (80048e8 ) + 8004850: 4313 orrs r3, r2 + 8004852: f8c1 3094 str.w r3, [r1, #148] @ 0x94 /* Enable the PLLSAI when it's used as clock source for CLK48 */ if (PeriphClkInit->Clk48ClockSelection == RCC_CLK48CLKSOURCE_PLLSAIP) - 80045e6: 687b ldr r3, [r7, #4] - 80045e8: 6d5b ldr r3, [r3, #84] @ 0x54 - 80045ea: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 - 80045ee: d101 bne.n 80045f4 + 8004856: 687b ldr r3, [r7, #4] + 8004858: 6d5b ldr r3, [r3, #84] @ 0x54 + 800485a: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 + 800485e: d101 bne.n 8004864 { pllsaiused = 1U; - 80045f0: 2301 movs r3, #1 - 80045f2: 62bb str r3, [r7, #40] @ 0x28 + 8004860: 2301 movs r3, #1 + 8004862: 62bb str r3, [r7, #40] @ 0x28 } } /*--------------------------------------------------------------------------*/ /*----------------------------- SDIO Configuration -------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SDIO) == RCC_PERIPHCLK_SDIO) - 80045f4: 687b ldr r3, [r7, #4] - 80045f6: 681b ldr r3, [r3, #0] - 80045f8: f403 7300 and.w r3, r3, #512 @ 0x200 - 80045fc: 2b00 cmp r3, #0 - 80045fe: d00a beq.n 8004616 + 8004864: 687b ldr r3, [r7, #4] + 8004866: 681b ldr r3, [r3, #0] + 8004868: f403 7300 and.w r3, r3, #512 @ 0x200 + 800486c: 2b00 cmp r3, #0 + 800486e: d00a beq.n 8004886 { /* Check the parameters */ assert_param(IS_RCC_SDIOCLKSOURCE(PeriphClkInit->SdioClockSelection)); /* Configure the SDIO clock source */ __HAL_RCC_SDIO_CONFIG(PeriphClkInit->SdioClockSelection); - 8004600: 4b1d ldr r3, [pc, #116] @ (8004678 ) - 8004602: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004606: f023 5280 bic.w r2, r3, #268435456 @ 0x10000000 - 800460a: 687b ldr r3, [r7, #4] - 800460c: 6c5b ldr r3, [r3, #68] @ 0x44 - 800460e: 491a ldr r1, [pc, #104] @ (8004678 ) - 8004610: 4313 orrs r3, r2 - 8004612: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 8004870: 4b1d ldr r3, [pc, #116] @ (80048e8 ) + 8004872: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004876: f023 5280 bic.w r2, r3, #268435456 @ 0x10000000 + 800487a: 687b ldr r3, [r7, #4] + 800487c: 6c5b ldr r3, [r3, #68] @ 0x44 + 800487e: 491a ldr r1, [pc, #104] @ (80048e8 ) + 8004880: 4313 orrs r3, r2 + 8004882: f8c1 3094 str.w r3, [r1, #148] @ 0x94 } /*--------------------------------------------------------------------------*/ /*------------------------------ SPDIFRX Configuration ---------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SPDIFRX) == RCC_PERIPHCLK_SPDIFRX) - 8004616: 687b ldr r3, [r7, #4] - 8004618: 681b ldr r3, [r3, #0] - 800461a: f403 6380 and.w r3, r3, #1024 @ 0x400 - 800461e: 2b00 cmp r3, #0 - 8004620: d011 beq.n 8004646 + 8004886: 687b ldr r3, [r7, #4] + 8004888: 681b ldr r3, [r3, #0] + 800488a: f403 6380 and.w r3, r3, #1024 @ 0x400 + 800488e: 2b00 cmp r3, #0 + 8004890: d011 beq.n 80048b6 { /* Check the parameters */ assert_param(IS_RCC_SPDIFRXCLKSOURCE(PeriphClkInit->SpdifClockSelection)); /* Configure the SPDIFRX clock source */ __HAL_RCC_SPDIFRX_CONFIG(PeriphClkInit->SpdifClockSelection); - 8004622: 4b15 ldr r3, [pc, #84] @ (8004678 ) - 8004624: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004628: f023 5200 bic.w r2, r3, #536870912 @ 0x20000000 - 800462c: 687b ldr r3, [r7, #4] - 800462e: 6d1b ldr r3, [r3, #80] @ 0x50 - 8004630: 4911 ldr r1, [pc, #68] @ (8004678 ) - 8004632: 4313 orrs r3, r2 - 8004634: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 8004892: 4b15 ldr r3, [pc, #84] @ (80048e8 ) + 8004894: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004898: f023 5200 bic.w r2, r3, #536870912 @ 0x20000000 + 800489c: 687b ldr r3, [r7, #4] + 800489e: 6d1b ldr r3, [r3, #80] @ 0x50 + 80048a0: 4911 ldr r1, [pc, #68] @ (80048e8 ) + 80048a2: 4313 orrs r3, r2 + 80048a4: f8c1 3094 str.w r3, [r1, #148] @ 0x94 /* Enable the PLLI2S when it's used as clock source for SPDIFRX */ if (PeriphClkInit->SpdifClockSelection == RCC_SPDIFRXCLKSOURCE_PLLI2SP) - 8004638: 687b ldr r3, [r7, #4] - 800463a: 6d1b ldr r3, [r3, #80] @ 0x50 - 800463c: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 8004640: d101 bne.n 8004646 + 80048a8: 687b ldr r3, [r7, #4] + 80048aa: 6d1b ldr r3, [r3, #80] @ 0x50 + 80048ac: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 80048b0: d101 bne.n 80048b6 { plli2sused = 1U; - 8004642: 2301 movs r3, #1 - 8004644: 62fb str r3, [r7, #44] @ 0x2c + 80048b2: 2301 movs r3, #1 + 80048b4: 62fb str r3, [r7, #44] @ 0x2c /*--------------------------------------------------------------------------*/ /*---------------------------- PLLI2S Configuration ------------------------*/ /* PLLI2S is configured when a peripheral will use it as source clock : SAI1, SAI2, I2S on APB1, I2S on APB2 or SPDIFRX */ if ((plli2sused == 1U) || (PeriphClkInit->PeriphClockSelection == RCC_PERIPHCLK_PLLI2S)) - 8004646: 6afb ldr r3, [r7, #44] @ 0x2c - 8004648: 2b01 cmp r3, #1 - 800464a: d005 beq.n 8004658 - 800464c: 687b ldr r3, [r7, #4] - 800464e: 681b ldr r3, [r3, #0] - 8004650: f5b3 6f00 cmp.w r3, #2048 @ 0x800 - 8004654: f040 80ff bne.w 8004856 + 80048b6: 6afb ldr r3, [r7, #44] @ 0x2c + 80048b8: 2b01 cmp r3, #1 + 80048ba: d005 beq.n 80048c8 + 80048bc: 687b ldr r3, [r7, #4] + 80048be: 681b ldr r3, [r3, #0] + 80048c0: f5b3 6f00 cmp.w r3, #2048 @ 0x800 + 80048c4: f040 80ff bne.w 8004ac6 { /* Disable the PLLI2S */ __HAL_RCC_PLLI2S_DISABLE(); - 8004658: 4b09 ldr r3, [pc, #36] @ (8004680 ) - 800465a: 2200 movs r2, #0 - 800465c: 601a str r2, [r3, #0] + 80048c8: 4b09 ldr r3, [pc, #36] @ (80048f0 ) + 80048ca: 2200 movs r2, #0 + 80048cc: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800465e: f7fd fa85 bl 8001b6c - 8004662: 6278 str r0, [r7, #36] @ 0x24 + 80048ce: f7fd fa85 bl 8001ddc + 80048d2: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLI2S is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) != RESET) - 8004664: e00e b.n 8004684 + 80048d4: e00e b.n 80048f4 { if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE) - 8004666: f7fd fa81 bl 8001b6c - 800466a: 4602 mov r2, r0 - 800466c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800466e: 1ad3 subs r3, r2, r3 - 8004670: 2b02 cmp r3, #2 - 8004672: d907 bls.n 8004684 + 80048d6: f7fd fa81 bl 8001ddc + 80048da: 4602 mov r2, r0 + 80048dc: 6a7b ldr r3, [r7, #36] @ 0x24 + 80048de: 1ad3 subs r3, r2, r3 + 80048e0: 2b02 cmp r3, #2 + 80048e2: d907 bls.n 80048f4 { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 8004674: 2303 movs r3, #3 - 8004676: e188 b.n 800498a - 8004678: 40023800 .word 0x40023800 - 800467c: 424711e0 .word 0x424711e0 - 8004680: 42470068 .word 0x42470068 + 80048e4: 2303 movs r3, #3 + 80048e6: e188 b.n 8004bfa + 80048e8: 40023800 .word 0x40023800 + 80048ec: 424711e0 .word 0x424711e0 + 80048f0: 42470068 .word 0x42470068 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) != RESET) - 8004684: 4b7e ldr r3, [pc, #504] @ (8004880 ) - 8004686: 681b ldr r3, [r3, #0] - 8004688: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 800468c: 2b00 cmp r3, #0 - 800468e: d1ea bne.n 8004666 + 80048f4: 4b7e ldr r3, [pc, #504] @ (8004af0 ) + 80048f6: 681b ldr r3, [r3, #0] + 80048f8: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 80048fc: 2b00 cmp r3, #0 + 80048fe: d1ea bne.n 80048d6 /* check for common PLLI2S Parameters */ assert_param(IS_RCC_PLLI2SM_VALUE(PeriphClkInit->PLLI2S.PLLI2SM)); assert_param(IS_RCC_PLLI2SN_VALUE(PeriphClkInit->PLLI2S.PLLI2SN)); /*------ In Case of PLLI2S is selected as source clock for I2S -----------*/ if (((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB1) == RCC_PERIPHCLK_I2S_APB1) - 8004690: 687b ldr r3, [r7, #4] - 8004692: 681b ldr r3, [r3, #0] - 8004694: f003 0301 and.w r3, r3, #1 - 8004698: 2b00 cmp r3, #0 - 800469a: d003 beq.n 80046a4 + 8004900: 687b ldr r3, [r7, #4] + 8004902: 681b ldr r3, [r3, #0] + 8004904: f003 0301 and.w r3, r3, #1 + 8004908: 2b00 cmp r3, #0 + 800490a: d003 beq.n 8004914 && (PeriphClkInit->I2sApb1ClockSelection == RCC_I2SAPB1CLKSOURCE_PLLI2S)) || - 800469c: 687b ldr r3, [r7, #4] - 800469e: 6b9b ldr r3, [r3, #56] @ 0x38 - 80046a0: 2b00 cmp r3, #0 - 80046a2: d009 beq.n 80046b8 + 800490c: 687b ldr r3, [r7, #4] + 800490e: 6b9b ldr r3, [r3, #56] @ 0x38 + 8004910: 2b00 cmp r3, #0 + 8004912: d009 beq.n 8004928 ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB2) == RCC_PERIPHCLK_I2S_APB2) && (PeriphClkInit->I2sApb2ClockSelection == RCC_I2SAPB2CLKSOURCE_PLLI2S))) - 80046a4: 687b ldr r3, [r7, #4] - 80046a6: 681b ldr r3, [r3, #0] - 80046a8: f003 0302 and.w r3, r3, #2 + 8004914: 687b ldr r3, [r7, #4] + 8004916: 681b ldr r3, [r3, #0] + 8004918: f003 0302 and.w r3, r3, #2 && (PeriphClkInit->I2sApb1ClockSelection == RCC_I2SAPB1CLKSOURCE_PLLI2S)) || - 80046ac: 2b00 cmp r3, #0 - 80046ae: d028 beq.n 8004702 + 800491c: 2b00 cmp r3, #0 + 800491e: d028 beq.n 8004972 ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB2) == RCC_PERIPHCLK_I2S_APB2) && (PeriphClkInit->I2sApb2ClockSelection == RCC_I2SAPB2CLKSOURCE_PLLI2S))) - 80046b0: 687b ldr r3, [r7, #4] - 80046b2: 6bdb ldr r3, [r3, #60] @ 0x3c - 80046b4: 2b00 cmp r3, #0 - 80046b6: d124 bne.n 8004702 + 8004920: 687b ldr r3, [r7, #4] + 8004922: 6bdb ldr r3, [r3, #60] @ 0x3c + 8004924: 2b00 cmp r3, #0 + 8004926: d124 bne.n 8004972 { /* check for Parameters */ assert_param(IS_RCC_PLLI2SR_VALUE(PeriphClkInit->PLLI2S.PLLI2SR)); /* Read PLLI2SP/PLLI2SQ value from PLLI2SCFGR register (this value is not needed for I2S configuration) */ plli2sp = ((((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SP) >> RCC_PLLI2SCFGR_PLLI2SP_Pos) + 1U) << 1U); - 80046b8: 4b71 ldr r3, [pc, #452] @ (8004880 ) - 80046ba: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 80046be: 0c1b lsrs r3, r3, #16 - 80046c0: f003 0303 and.w r3, r3, #3 - 80046c4: 3301 adds r3, #1 - 80046c6: 005b lsls r3, r3, #1 - 80046c8: 61fb str r3, [r7, #28] + 8004928: 4b71 ldr r3, [pc, #452] @ (8004af0 ) + 800492a: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 800492e: 0c1b lsrs r3, r3, #16 + 8004930: f003 0303 and.w r3, r3, #3 + 8004934: 3301 adds r3, #1 + 8004936: 005b lsls r3, r3, #1 + 8004938: 61fb str r3, [r7, #28] plli2sq = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SQ) >> RCC_PLLI2SCFGR_PLLI2SQ_Pos); - 80046ca: 4b6d ldr r3, [pc, #436] @ (8004880 ) - 80046cc: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 80046d0: 0e1b lsrs r3, r3, #24 - 80046d2: f003 030f and.w r3, r3, #15 - 80046d6: 61bb str r3, [r7, #24] + 800493a: 4b6d ldr r3, [pc, #436] @ (8004af0 ) + 800493c: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 8004940: 0e1b lsrs r3, r3, #24 + 8004942: f003 030f and.w r3, r3, #15 + 8004946: 61bb str r3, [r7, #24] /* Configure the PLLI2S division factors */ /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * (PLLI2SN/PLLI2SM) */ /* I2SCLK = f(PLLI2S clock output) = f(VCO clock) / PLLI2SR */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, plli2sp, plli2sq, - 80046d8: 687b ldr r3, [r7, #4] - 80046da: 685a ldr r2, [r3, #4] - 80046dc: 687b ldr r3, [r7, #4] - 80046de: 689b ldr r3, [r3, #8] - 80046e0: 019b lsls r3, r3, #6 - 80046e2: 431a orrs r2, r3 - 80046e4: 69fb ldr r3, [r7, #28] - 80046e6: 085b lsrs r3, r3, #1 - 80046e8: 3b01 subs r3, #1 - 80046ea: 041b lsls r3, r3, #16 - 80046ec: 431a orrs r2, r3 - 80046ee: 69bb ldr r3, [r7, #24] - 80046f0: 061b lsls r3, r3, #24 - 80046f2: 431a orrs r2, r3 - 80046f4: 687b ldr r3, [r7, #4] - 80046f6: 695b ldr r3, [r3, #20] - 80046f8: 071b lsls r3, r3, #28 - 80046fa: 4961 ldr r1, [pc, #388] @ (8004880 ) - 80046fc: 4313 orrs r3, r2 - 80046fe: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 8004948: 687b ldr r3, [r7, #4] + 800494a: 685a ldr r2, [r3, #4] + 800494c: 687b ldr r3, [r7, #4] + 800494e: 689b ldr r3, [r3, #8] + 8004950: 019b lsls r3, r3, #6 + 8004952: 431a orrs r2, r3 + 8004954: 69fb ldr r3, [r7, #28] + 8004956: 085b lsrs r3, r3, #1 + 8004958: 3b01 subs r3, #1 + 800495a: 041b lsls r3, r3, #16 + 800495c: 431a orrs r2, r3 + 800495e: 69bb ldr r3, [r7, #24] + 8004960: 061b lsls r3, r3, #24 + 8004962: 431a orrs r2, r3 + 8004964: 687b ldr r3, [r7, #4] + 8004966: 695b ldr r3, [r3, #20] + 8004968: 071b lsls r3, r3, #28 + 800496a: 4961 ldr r1, [pc, #388] @ (8004af0 ) + 800496c: 4313 orrs r3, r2 + 800496e: f8c1 3084 str.w r3, [r1, #132] @ 0x84 PeriphClkInit->PLLI2S.PLLI2SR); } /*------- In Case of PLLI2S is selected as source clock for SAI ----------*/ if (((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) - 8004702: 687b ldr r3, [r7, #4] - 8004704: 681b ldr r3, [r3, #0] - 8004706: f003 0304 and.w r3, r3, #4 - 800470a: 2b00 cmp r3, #0 - 800470c: d004 beq.n 8004718 + 8004972: 687b ldr r3, [r7, #4] + 8004974: 681b ldr r3, [r3, #0] + 8004976: f003 0304 and.w r3, r3, #4 + 800497a: 2b00 cmp r3, #0 + 800497c: d004 beq.n 8004988 && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLI2S)) || - 800470e: 687b ldr r3, [r7, #4] - 8004710: 6b1b ldr r3, [r3, #48] @ 0x30 - 8004712: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 - 8004716: d00a beq.n 800472e + 800497e: 687b ldr r3, [r7, #4] + 8004980: 6b1b ldr r3, [r3, #48] @ 0x30 + 8004982: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 + 8004986: d00a beq.n 800499e ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLI2S))) - 8004718: 687b ldr r3, [r7, #4] - 800471a: 681b ldr r3, [r3, #0] - 800471c: f003 0308 and.w r3, r3, #8 + 8004988: 687b ldr r3, [r7, #4] + 800498a: 681b ldr r3, [r3, #0] + 800498c: f003 0308 and.w r3, r3, #8 && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLI2S)) || - 8004720: 2b00 cmp r3, #0 - 8004722: d035 beq.n 8004790 + 8004990: 2b00 cmp r3, #0 + 8004992: d035 beq.n 8004a00 ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLI2S))) - 8004724: 687b ldr r3, [r7, #4] - 8004726: 6b5b ldr r3, [r3, #52] @ 0x34 - 8004728: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 800472c: d130 bne.n 8004790 + 8004994: 687b ldr r3, [r7, #4] + 8004996: 6b5b ldr r3, [r3, #52] @ 0x34 + 8004998: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 800499c: d130 bne.n 8004a00 assert_param(IS_RCC_PLLI2SQ_VALUE(PeriphClkInit->PLLI2S.PLLI2SQ)); /* Check for PLLI2S/DIVQ parameters */ assert_param(IS_RCC_PLLI2S_DIVQ_VALUE(PeriphClkInit->PLLI2SDivQ)); /* Read PLLI2SP/PLLI2SR value from PLLI2SCFGR register (this value is not needed for SAI configuration) */ plli2sp = ((((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SP) >> RCC_PLLI2SCFGR_PLLI2SP_Pos) + 1U) << 1U); - 800472e: 4b54 ldr r3, [pc, #336] @ (8004880 ) - 8004730: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 8004734: 0c1b lsrs r3, r3, #16 - 8004736: f003 0303 and.w r3, r3, #3 - 800473a: 3301 adds r3, #1 - 800473c: 005b lsls r3, r3, #1 - 800473e: 61fb str r3, [r7, #28] + 800499e: 4b54 ldr r3, [pc, #336] @ (8004af0 ) + 80049a0: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 80049a4: 0c1b lsrs r3, r3, #16 + 80049a6: f003 0303 and.w r3, r3, #3 + 80049aa: 3301 adds r3, #1 + 80049ac: 005b lsls r3, r3, #1 + 80049ae: 61fb str r3, [r7, #28] plli2sr = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SR) >> RCC_PLLI2SCFGR_PLLI2SR_Pos); - 8004740: 4b4f ldr r3, [pc, #316] @ (8004880 ) - 8004742: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 8004746: 0f1b lsrs r3, r3, #28 - 8004748: f003 0307 and.w r3, r3, #7 - 800474c: 617b str r3, [r7, #20] + 80049b0: 4b4f ldr r3, [pc, #316] @ (8004af0 ) + 80049b2: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 80049b6: 0f1b lsrs r3, r3, #28 + 80049b8: f003 0307 and.w r3, r3, #7 + 80049bc: 617b str r3, [r7, #20] /* Configure the PLLI2S division factors */ /* PLLI2S_VCO Input = PLL_SOURCE/PLLI2SM */ /* PLLI2S_VCO Output = PLLI2S_VCO Input * PLLI2SN */ /* SAI_CLK(first level) = PLLI2S_VCO Output/PLLI2SQ */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, plli2sp, - 800474e: 687b ldr r3, [r7, #4] - 8004750: 685a ldr r2, [r3, #4] - 8004752: 687b ldr r3, [r7, #4] - 8004754: 689b ldr r3, [r3, #8] - 8004756: 019b lsls r3, r3, #6 - 8004758: 431a orrs r2, r3 - 800475a: 69fb ldr r3, [r7, #28] - 800475c: 085b lsrs r3, r3, #1 - 800475e: 3b01 subs r3, #1 - 8004760: 041b lsls r3, r3, #16 - 8004762: 431a orrs r2, r3 - 8004764: 687b ldr r3, [r7, #4] - 8004766: 691b ldr r3, [r3, #16] - 8004768: 061b lsls r3, r3, #24 - 800476a: 431a orrs r2, r3 - 800476c: 697b ldr r3, [r7, #20] - 800476e: 071b lsls r3, r3, #28 - 8004770: 4943 ldr r1, [pc, #268] @ (8004880 ) - 8004772: 4313 orrs r3, r2 - 8004774: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 80049be: 687b ldr r3, [r7, #4] + 80049c0: 685a ldr r2, [r3, #4] + 80049c2: 687b ldr r3, [r7, #4] + 80049c4: 689b ldr r3, [r3, #8] + 80049c6: 019b lsls r3, r3, #6 + 80049c8: 431a orrs r2, r3 + 80049ca: 69fb ldr r3, [r7, #28] + 80049cc: 085b lsrs r3, r3, #1 + 80049ce: 3b01 subs r3, #1 + 80049d0: 041b lsls r3, r3, #16 + 80049d2: 431a orrs r2, r3 + 80049d4: 687b ldr r3, [r7, #4] + 80049d6: 691b ldr r3, [r3, #16] + 80049d8: 061b lsls r3, r3, #24 + 80049da: 431a orrs r2, r3 + 80049dc: 697b ldr r3, [r7, #20] + 80049de: 071b lsls r3, r3, #28 + 80049e0: 4943 ldr r1, [pc, #268] @ (8004af0 ) + 80049e2: 4313 orrs r3, r2 + 80049e4: f8c1 3084 str.w r3, [r1, #132] @ 0x84 PeriphClkInit->PLLI2S.PLLI2SQ, plli2sr); /* SAI_CLK_x = SAI_CLK(first level)/PLLI2SDIVQ */ __HAL_RCC_PLLI2S_PLLSAICLKDIVQ_CONFIG(PeriphClkInit->PLLI2SDivQ); - 8004778: 4b41 ldr r3, [pc, #260] @ (8004880 ) - 800477a: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 800477e: f023 021f bic.w r2, r3, #31 - 8004782: 687b ldr r3, [r7, #4] - 8004784: 6a9b ldr r3, [r3, #40] @ 0x28 - 8004786: 3b01 subs r3, #1 - 8004788: 493d ldr r1, [pc, #244] @ (8004880 ) - 800478a: 4313 orrs r3, r2 - 800478c: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 80049e8: 4b41 ldr r3, [pc, #260] @ (8004af0 ) + 80049ea: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 80049ee: f023 021f bic.w r2, r3, #31 + 80049f2: 687b ldr r3, [r7, #4] + 80049f4: 6a9b ldr r3, [r3, #40] @ 0x28 + 80049f6: 3b01 subs r3, #1 + 80049f8: 493d ldr r1, [pc, #244] @ (8004af0 ) + 80049fa: 4313 orrs r3, r2 + 80049fc: f8c1 308c str.w r3, [r1, #140] @ 0x8c } /*------ In Case of PLLI2S is selected as source clock for SPDIFRX -------*/ if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SPDIFRX) == RCC_PERIPHCLK_SPDIFRX) - 8004790: 687b ldr r3, [r7, #4] - 8004792: 681b ldr r3, [r3, #0] - 8004794: f403 6380 and.w r3, r3, #1024 @ 0x400 - 8004798: 2b00 cmp r3, #0 - 800479a: d029 beq.n 80047f0 + 8004a00: 687b ldr r3, [r7, #4] + 8004a02: 681b ldr r3, [r3, #0] + 8004a04: f403 6380 and.w r3, r3, #1024 @ 0x400 + 8004a08: 2b00 cmp r3, #0 + 8004a0a: d029 beq.n 8004a60 && (PeriphClkInit->SpdifClockSelection == RCC_SPDIFRXCLKSOURCE_PLLI2SP)) - 800479c: 687b ldr r3, [r7, #4] - 800479e: 6d1b ldr r3, [r3, #80] @ 0x50 - 80047a0: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 80047a4: d124 bne.n 80047f0 + 8004a0c: 687b ldr r3, [r7, #4] + 8004a0e: 6d1b ldr r3, [r3, #80] @ 0x50 + 8004a10: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 8004a14: d124 bne.n 8004a60 { /* check for Parameters */ assert_param(IS_RCC_PLLI2SP_VALUE(PeriphClkInit->PLLI2S.PLLI2SP)); /* Read PLLI2SR value from PLLI2SCFGR register (this value is not need for SAI configuration) */ plli2sq = ((((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SP) >> RCC_PLLI2SCFGR_PLLI2SP_Pos) + 1U) << 1U); - 80047a6: 4b36 ldr r3, [pc, #216] @ (8004880 ) - 80047a8: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 80047ac: 0c1b lsrs r3, r3, #16 - 80047ae: f003 0303 and.w r3, r3, #3 - 80047b2: 3301 adds r3, #1 - 80047b4: 005b lsls r3, r3, #1 - 80047b6: 61bb str r3, [r7, #24] + 8004a16: 4b36 ldr r3, [pc, #216] @ (8004af0 ) + 8004a18: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 8004a1c: 0c1b lsrs r3, r3, #16 + 8004a1e: f003 0303 and.w r3, r3, #3 + 8004a22: 3301 adds r3, #1 + 8004a24: 005b lsls r3, r3, #1 + 8004a26: 61bb str r3, [r7, #24] plli2sr = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SR) >> RCC_PLLI2SCFGR_PLLI2SR_Pos); - 80047b8: 4b31 ldr r3, [pc, #196] @ (8004880 ) - 80047ba: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 80047be: 0f1b lsrs r3, r3, #28 - 80047c0: f003 0307 and.w r3, r3, #7 - 80047c4: 617b str r3, [r7, #20] + 8004a28: 4b31 ldr r3, [pc, #196] @ (8004af0 ) + 8004a2a: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 8004a2e: 0f1b lsrs r3, r3, #28 + 8004a30: f003 0307 and.w r3, r3, #7 + 8004a34: 617b str r3, [r7, #20] /* Configure the PLLI2S division factors */ /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * (PLLI2SN/PLLI2SM) */ /* SPDIFRXCLK = f(PLLI2S clock output) = f(VCO clock) / PLLI2SP */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, PeriphClkInit->PLLI2S.PLLI2SP, - 80047c6: 687b ldr r3, [r7, #4] - 80047c8: 685a ldr r2, [r3, #4] - 80047ca: 687b ldr r3, [r7, #4] - 80047cc: 689b ldr r3, [r3, #8] - 80047ce: 019b lsls r3, r3, #6 - 80047d0: 431a orrs r2, r3 - 80047d2: 687b ldr r3, [r7, #4] - 80047d4: 68db ldr r3, [r3, #12] - 80047d6: 085b lsrs r3, r3, #1 - 80047d8: 3b01 subs r3, #1 - 80047da: 041b lsls r3, r3, #16 - 80047dc: 431a orrs r2, r3 - 80047de: 69bb ldr r3, [r7, #24] - 80047e0: 061b lsls r3, r3, #24 - 80047e2: 431a orrs r2, r3 - 80047e4: 697b ldr r3, [r7, #20] - 80047e6: 071b lsls r3, r3, #28 - 80047e8: 4925 ldr r1, [pc, #148] @ (8004880 ) - 80047ea: 4313 orrs r3, r2 - 80047ec: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 8004a36: 687b ldr r3, [r7, #4] + 8004a38: 685a ldr r2, [r3, #4] + 8004a3a: 687b ldr r3, [r7, #4] + 8004a3c: 689b ldr r3, [r3, #8] + 8004a3e: 019b lsls r3, r3, #6 + 8004a40: 431a orrs r2, r3 + 8004a42: 687b ldr r3, [r7, #4] + 8004a44: 68db ldr r3, [r3, #12] + 8004a46: 085b lsrs r3, r3, #1 + 8004a48: 3b01 subs r3, #1 + 8004a4a: 041b lsls r3, r3, #16 + 8004a4c: 431a orrs r2, r3 + 8004a4e: 69bb ldr r3, [r7, #24] + 8004a50: 061b lsls r3, r3, #24 + 8004a52: 431a orrs r2, r3 + 8004a54: 697b ldr r3, [r7, #20] + 8004a56: 071b lsls r3, r3, #28 + 8004a58: 4925 ldr r1, [pc, #148] @ (8004af0 ) + 8004a5a: 4313 orrs r3, r2 + 8004a5c: f8c1 3084 str.w r3, [r1, #132] @ 0x84 plli2sq, plli2sr); } /*----------------- In Case of PLLI2S is just selected -----------------*/ if ((PeriphClkInit->PeriphClockSelection & RCC_PERIPHCLK_PLLI2S) == RCC_PERIPHCLK_PLLI2S) - 80047f0: 687b ldr r3, [r7, #4] - 80047f2: 681b ldr r3, [r3, #0] - 80047f4: f403 6300 and.w r3, r3, #2048 @ 0x800 - 80047f8: 2b00 cmp r3, #0 - 80047fa: d016 beq.n 800482a + 8004a60: 687b ldr r3, [r7, #4] + 8004a62: 681b ldr r3, [r3, #0] + 8004a64: f403 6300 and.w r3, r3, #2048 @ 0x800 + 8004a68: 2b00 cmp r3, #0 + 8004a6a: d016 beq.n 8004a9a assert_param(IS_RCC_PLLI2SR_VALUE(PeriphClkInit->PLLI2S.PLLI2SR)); assert_param(IS_RCC_PLLI2SQ_VALUE(PeriphClkInit->PLLI2S.PLLI2SQ)); /* Configure the PLLI2S division factors */ /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * (PLLI2SN/PLLI2SM) */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, PeriphClkInit->PLLI2S.PLLI2SP, - 80047fc: 687b ldr r3, [r7, #4] - 80047fe: 685a ldr r2, [r3, #4] - 8004800: 687b ldr r3, [r7, #4] - 8004802: 689b ldr r3, [r3, #8] - 8004804: 019b lsls r3, r3, #6 - 8004806: 431a orrs r2, r3 - 8004808: 687b ldr r3, [r7, #4] - 800480a: 68db ldr r3, [r3, #12] - 800480c: 085b lsrs r3, r3, #1 - 800480e: 3b01 subs r3, #1 - 8004810: 041b lsls r3, r3, #16 - 8004812: 431a orrs r2, r3 - 8004814: 687b ldr r3, [r7, #4] - 8004816: 691b ldr r3, [r3, #16] - 8004818: 061b lsls r3, r3, #24 - 800481a: 431a orrs r2, r3 - 800481c: 687b ldr r3, [r7, #4] - 800481e: 695b ldr r3, [r3, #20] - 8004820: 071b lsls r3, r3, #28 - 8004822: 4917 ldr r1, [pc, #92] @ (8004880 ) - 8004824: 4313 orrs r3, r2 - 8004826: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 8004a6c: 687b ldr r3, [r7, #4] + 8004a6e: 685a ldr r2, [r3, #4] + 8004a70: 687b ldr r3, [r7, #4] + 8004a72: 689b ldr r3, [r3, #8] + 8004a74: 019b lsls r3, r3, #6 + 8004a76: 431a orrs r2, r3 + 8004a78: 687b ldr r3, [r7, #4] + 8004a7a: 68db ldr r3, [r3, #12] + 8004a7c: 085b lsrs r3, r3, #1 + 8004a7e: 3b01 subs r3, #1 + 8004a80: 041b lsls r3, r3, #16 + 8004a82: 431a orrs r2, r3 + 8004a84: 687b ldr r3, [r7, #4] + 8004a86: 691b ldr r3, [r3, #16] + 8004a88: 061b lsls r3, r3, #24 + 8004a8a: 431a orrs r2, r3 + 8004a8c: 687b ldr r3, [r7, #4] + 8004a8e: 695b ldr r3, [r3, #20] + 8004a90: 071b lsls r3, r3, #28 + 8004a92: 4917 ldr r1, [pc, #92] @ (8004af0 ) + 8004a94: 4313 orrs r3, r2 + 8004a96: f8c1 3084 str.w r3, [r1, #132] @ 0x84 PeriphClkInit->PLLI2S.PLLI2SQ, PeriphClkInit->PLLI2S.PLLI2SR); } /* Enable the PLLI2S */ __HAL_RCC_PLLI2S_ENABLE(); - 800482a: 4b16 ldr r3, [pc, #88] @ (8004884 ) - 800482c: 2201 movs r2, #1 - 800482e: 601a str r2, [r3, #0] + 8004a9a: 4b16 ldr r3, [pc, #88] @ (8004af4 ) + 8004a9c: 2201 movs r2, #1 + 8004a9e: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 8004830: f7fd f99c bl 8001b6c - 8004834: 6278 str r0, [r7, #36] @ 0x24 + 8004aa0: f7fd f99c bl 8001ddc + 8004aa4: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLI2S is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) == RESET) - 8004836: e008 b.n 800484a + 8004aa6: e008 b.n 8004aba { if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE) - 8004838: f7fd f998 bl 8001b6c - 800483c: 4602 mov r2, r0 - 800483e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8004840: 1ad3 subs r3, r2, r3 - 8004842: 2b02 cmp r3, #2 - 8004844: d901 bls.n 800484a + 8004aa8: f7fd f998 bl 8001ddc + 8004aac: 4602 mov r2, r0 + 8004aae: 6a7b ldr r3, [r7, #36] @ 0x24 + 8004ab0: 1ad3 subs r3, r2, r3 + 8004ab2: 2b02 cmp r3, #2 + 8004ab4: d901 bls.n 8004aba { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 8004846: 2303 movs r3, #3 - 8004848: e09f b.n 800498a + 8004ab6: 2303 movs r3, #3 + 8004ab8: e09f b.n 8004bfa while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) == RESET) - 800484a: 4b0d ldr r3, [pc, #52] @ (8004880 ) - 800484c: 681b ldr r3, [r3, #0] - 800484e: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 8004852: 2b00 cmp r3, #0 - 8004854: d0f0 beq.n 8004838 + 8004aba: 4b0d ldr r3, [pc, #52] @ (8004af0 ) + 8004abc: 681b ldr r3, [r3, #0] + 8004abe: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 8004ac2: 2b00 cmp r3, #0 + 8004ac4: d0f0 beq.n 8004aa8 } /*--------------------------------------------------------------------------*/ /*----------------------------- PLLSAI Configuration -----------------------*/ /* PLLSAI is configured when a peripheral will use it as source clock : SAI1, SAI2, CLK48 or SDIO */ if (pllsaiused == 1U) - 8004856: 6abb ldr r3, [r7, #40] @ 0x28 - 8004858: 2b01 cmp r3, #1 - 800485a: f040 8095 bne.w 8004988 + 8004ac6: 6abb ldr r3, [r7, #40] @ 0x28 + 8004ac8: 2b01 cmp r3, #1 + 8004aca: f040 8095 bne.w 8004bf8 { /* Disable PLLSAI Clock */ __HAL_RCC_PLLSAI_DISABLE(); - 800485e: 4b0a ldr r3, [pc, #40] @ (8004888 ) - 8004860: 2200 movs r2, #0 - 8004862: 601a str r2, [r3, #0] + 8004ace: 4b0a ldr r3, [pc, #40] @ (8004af8 ) + 8004ad0: 2200 movs r2, #0 + 8004ad2: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 8004864: f7fd f982 bl 8001b6c - 8004868: 6278 str r0, [r7, #36] @ 0x24 + 8004ad4: f7fd f982 bl 8001ddc + 8004ad8: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLSAI is disabled */ while (__HAL_RCC_PLLSAI_GET_FLAG() != RESET) - 800486a: e00f b.n 800488c + 8004ada: e00f b.n 8004afc { if ((HAL_GetTick() - tickstart) > PLLSAI_TIMEOUT_VALUE) - 800486c: f7fd f97e bl 8001b6c - 8004870: 4602 mov r2, r0 - 8004872: 6a7b ldr r3, [r7, #36] @ 0x24 - 8004874: 1ad3 subs r3, r2, r3 - 8004876: 2b02 cmp r3, #2 - 8004878: d908 bls.n 800488c + 8004adc: f7fd f97e bl 8001ddc + 8004ae0: 4602 mov r2, r0 + 8004ae2: 6a7b ldr r3, [r7, #36] @ 0x24 + 8004ae4: 1ad3 subs r3, r2, r3 + 8004ae6: 2b02 cmp r3, #2 + 8004ae8: d908 bls.n 8004afc { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 800487a: 2303 movs r3, #3 - 800487c: e085 b.n 800498a - 800487e: bf00 nop - 8004880: 40023800 .word 0x40023800 - 8004884: 42470068 .word 0x42470068 - 8004888: 42470070 .word 0x42470070 + 8004aea: 2303 movs r3, #3 + 8004aec: e085 b.n 8004bfa + 8004aee: bf00 nop + 8004af0: 40023800 .word 0x40023800 + 8004af4: 42470068 .word 0x42470068 + 8004af8: 42470070 .word 0x42470070 while (__HAL_RCC_PLLSAI_GET_FLAG() != RESET) - 800488c: 4b41 ldr r3, [pc, #260] @ (8004994 ) - 800488e: 681b ldr r3, [r3, #0] - 8004890: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 - 8004894: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 8004898: d0e8 beq.n 800486c + 8004afc: 4b41 ldr r3, [pc, #260] @ (8004c04 ) + 8004afe: 681b ldr r3, [r3, #0] + 8004b00: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 + 8004b04: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 8004b08: d0e8 beq.n 8004adc /* Check the PLLSAI division factors */ assert_param(IS_RCC_PLLSAIM_VALUE(PeriphClkInit->PLLSAI.PLLSAIM)); assert_param(IS_RCC_PLLSAIN_VALUE(PeriphClkInit->PLLSAI.PLLSAIN)); /*------ In Case of PLLSAI is selected as source clock for SAI -----------*/ if (((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) - 800489a: 687b ldr r3, [r7, #4] - 800489c: 681b ldr r3, [r3, #0] - 800489e: f003 0304 and.w r3, r3, #4 - 80048a2: 2b00 cmp r3, #0 - 80048a4: d003 beq.n 80048ae + 8004b0a: 687b ldr r3, [r7, #4] + 8004b0c: 681b ldr r3, [r3, #0] + 8004b0e: f003 0304 and.w r3, r3, #4 + 8004b12: 2b00 cmp r3, #0 + 8004b14: d003 beq.n 8004b1e && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLSAI)) || - 80048a6: 687b ldr r3, [r7, #4] - 80048a8: 6b1b ldr r3, [r3, #48] @ 0x30 - 80048aa: 2b00 cmp r3, #0 - 80048ac: d009 beq.n 80048c2 + 8004b16: 687b ldr r3, [r7, #4] + 8004b18: 6b1b ldr r3, [r3, #48] @ 0x30 + 8004b1a: 2b00 cmp r3, #0 + 8004b1c: d009 beq.n 8004b32 ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLSAI))) - 80048ae: 687b ldr r3, [r7, #4] - 80048b0: 681b ldr r3, [r3, #0] - 80048b2: f003 0308 and.w r3, r3, #8 + 8004b1e: 687b ldr r3, [r7, #4] + 8004b20: 681b ldr r3, [r3, #0] + 8004b22: f003 0308 and.w r3, r3, #8 && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLSAI)) || - 80048b6: 2b00 cmp r3, #0 - 80048b8: d02b beq.n 8004912 + 8004b26: 2b00 cmp r3, #0 + 8004b28: d02b beq.n 8004b82 ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLSAI))) - 80048ba: 687b ldr r3, [r7, #4] - 80048bc: 6b5b ldr r3, [r3, #52] @ 0x34 - 80048be: 2b00 cmp r3, #0 - 80048c0: d127 bne.n 8004912 + 8004b2a: 687b ldr r3, [r7, #4] + 8004b2c: 6b5b ldr r3, [r3, #52] @ 0x34 + 8004b2e: 2b00 cmp r3, #0 + 8004b30: d127 bne.n 8004b82 assert_param(IS_RCC_PLLSAIQ_VALUE(PeriphClkInit->PLLSAI.PLLSAIQ)); /* check for PLLSAI/DIVQ Parameter */ assert_param(IS_RCC_PLLSAI_DIVQ_VALUE(PeriphClkInit->PLLSAIDivQ)); /* Read PLLSAIP value from PLLSAICFGR register (this value is not needed for SAI configuration) */ pllsaip = ((((RCC->PLLSAICFGR & RCC_PLLSAICFGR_PLLSAIP) >> RCC_PLLSAICFGR_PLLSAIP_Pos) + 1U) << 1U); - 80048c2: 4b34 ldr r3, [pc, #208] @ (8004994 ) - 80048c4: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 - 80048c8: 0c1b lsrs r3, r3, #16 - 80048ca: f003 0303 and.w r3, r3, #3 - 80048ce: 3301 adds r3, #1 - 80048d0: 005b lsls r3, r3, #1 - 80048d2: 613b str r3, [r7, #16] + 8004b32: 4b34 ldr r3, [pc, #208] @ (8004c04 ) + 8004b34: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 + 8004b38: 0c1b lsrs r3, r3, #16 + 8004b3a: f003 0303 and.w r3, r3, #3 + 8004b3e: 3301 adds r3, #1 + 8004b40: 005b lsls r3, r3, #1 + 8004b42: 613b str r3, [r7, #16] /* PLLSAI_VCO Input = PLL_SOURCE/PLLM */ /* PLLSAI_VCO Output = PLLSAI_VCO Input * PLLSAIN */ /* SAI_CLK(first level) = PLLSAI_VCO Output/PLLSAIQ */ __HAL_RCC_PLLSAI_CONFIG(PeriphClkInit->PLLSAI.PLLSAIM, PeriphClkInit->PLLSAI.PLLSAIN, pllsaip, - 80048d4: 687b ldr r3, [r7, #4] - 80048d6: 699a ldr r2, [r3, #24] - 80048d8: 687b ldr r3, [r7, #4] - 80048da: 69db ldr r3, [r3, #28] - 80048dc: 019b lsls r3, r3, #6 - 80048de: 431a orrs r2, r3 - 80048e0: 693b ldr r3, [r7, #16] - 80048e2: 085b lsrs r3, r3, #1 - 80048e4: 3b01 subs r3, #1 - 80048e6: 041b lsls r3, r3, #16 - 80048e8: 431a orrs r2, r3 - 80048ea: 687b ldr r3, [r7, #4] - 80048ec: 6a5b ldr r3, [r3, #36] @ 0x24 - 80048ee: 061b lsls r3, r3, #24 - 80048f0: 4928 ldr r1, [pc, #160] @ (8004994 ) - 80048f2: 4313 orrs r3, r2 - 80048f4: f8c1 3088 str.w r3, [r1, #136] @ 0x88 + 8004b44: 687b ldr r3, [r7, #4] + 8004b46: 699a ldr r2, [r3, #24] + 8004b48: 687b ldr r3, [r7, #4] + 8004b4a: 69db ldr r3, [r3, #28] + 8004b4c: 019b lsls r3, r3, #6 + 8004b4e: 431a orrs r2, r3 + 8004b50: 693b ldr r3, [r7, #16] + 8004b52: 085b lsrs r3, r3, #1 + 8004b54: 3b01 subs r3, #1 + 8004b56: 041b lsls r3, r3, #16 + 8004b58: 431a orrs r2, r3 + 8004b5a: 687b ldr r3, [r7, #4] + 8004b5c: 6a5b ldr r3, [r3, #36] @ 0x24 + 8004b5e: 061b lsls r3, r3, #24 + 8004b60: 4928 ldr r1, [pc, #160] @ (8004c04 ) + 8004b62: 4313 orrs r3, r2 + 8004b64: f8c1 3088 str.w r3, [r1, #136] @ 0x88 PeriphClkInit->PLLSAI.PLLSAIQ, 0U); /* SAI_CLK_x = SAI_CLK(first level)/PLLSAIDIVQ */ __HAL_RCC_PLLSAI_PLLSAICLKDIVQ_CONFIG(PeriphClkInit->PLLSAIDivQ); - 80048f8: 4b26 ldr r3, [pc, #152] @ (8004994 ) - 80048fa: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 80048fe: f423 52f8 bic.w r2, r3, #7936 @ 0x1f00 - 8004902: 687b ldr r3, [r7, #4] - 8004904: 6adb ldr r3, [r3, #44] @ 0x2c - 8004906: 3b01 subs r3, #1 - 8004908: 021b lsls r3, r3, #8 - 800490a: 4922 ldr r1, [pc, #136] @ (8004994 ) - 800490c: 4313 orrs r3, r2 - 800490e: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 8004b68: 4b26 ldr r3, [pc, #152] @ (8004c04 ) + 8004b6a: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 8004b6e: f423 52f8 bic.w r2, r3, #7936 @ 0x1f00 + 8004b72: 687b ldr r3, [r7, #4] + 8004b74: 6adb ldr r3, [r3, #44] @ 0x2c + 8004b76: 3b01 subs r3, #1 + 8004b78: 021b lsls r3, r3, #8 + 8004b7a: 4922 ldr r1, [pc, #136] @ (8004c04 ) + 8004b7c: 4313 orrs r3, r2 + 8004b7e: f8c1 308c str.w r3, [r1, #140] @ 0x8c } /*------ In Case of PLLSAI is selected as source clock for CLK48 ---------*/ /* In Case of PLLI2S is selected as source clock for CLK48 */ if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_CLK48) == RCC_PERIPHCLK_CLK48) - 8004912: 687b ldr r3, [r7, #4] - 8004914: 681b ldr r3, [r3, #0] - 8004916: f403 7380 and.w r3, r3, #256 @ 0x100 - 800491a: 2b00 cmp r3, #0 - 800491c: d01d beq.n 800495a + 8004b82: 687b ldr r3, [r7, #4] + 8004b84: 681b ldr r3, [r3, #0] + 8004b86: f403 7380 and.w r3, r3, #256 @ 0x100 + 8004b8a: 2b00 cmp r3, #0 + 8004b8c: d01d beq.n 8004bca && (PeriphClkInit->Clk48ClockSelection == RCC_CLK48CLKSOURCE_PLLSAIP)) - 800491e: 687b ldr r3, [r7, #4] - 8004920: 6d5b ldr r3, [r3, #84] @ 0x54 - 8004922: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 - 8004926: d118 bne.n 800495a + 8004b8e: 687b ldr r3, [r7, #4] + 8004b90: 6d5b ldr r3, [r3, #84] @ 0x54 + 8004b92: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 + 8004b96: d118 bne.n 8004bca { /* check for Parameters */ assert_param(IS_RCC_PLLSAIP_VALUE(PeriphClkInit->PLLSAI.PLLSAIP)); /* Read PLLSAIQ value from PLLI2SCFGR register (this value is not need for SAI configuration) */ pllsaiq = ((RCC->PLLSAICFGR & RCC_PLLSAICFGR_PLLSAIQ) >> RCC_PLLSAICFGR_PLLSAIQ_Pos); - 8004928: 4b1a ldr r3, [pc, #104] @ (8004994 ) - 800492a: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 - 800492e: 0e1b lsrs r3, r3, #24 - 8004930: f003 030f and.w r3, r3, #15 - 8004934: 60fb str r3, [r7, #12] + 8004b98: 4b1a ldr r3, [pc, #104] @ (8004c04 ) + 8004b9a: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 + 8004b9e: 0e1b lsrs r3, r3, #24 + 8004ba0: f003 030f and.w r3, r3, #15 + 8004ba4: 60fb str r3, [r7, #12] /* Configure the PLLSAI division factors */ /* PLLSAI_VCO = f(VCO clock) = f(PLLSAI clock input) * (PLLI2SN/PLLSAIM) */ /* 48CLK = f(PLLSAI clock output) = f(VCO clock) / PLLSAIP */ __HAL_RCC_PLLSAI_CONFIG(PeriphClkInit->PLLSAI.PLLSAIM, PeriphClkInit->PLLSAI.PLLSAIN, PeriphClkInit->PLLSAI.PLLSAIP, - 8004936: 687b ldr r3, [r7, #4] - 8004938: 699a ldr r2, [r3, #24] - 800493a: 687b ldr r3, [r7, #4] - 800493c: 69db ldr r3, [r3, #28] - 800493e: 019b lsls r3, r3, #6 - 8004940: 431a orrs r2, r3 - 8004942: 687b ldr r3, [r7, #4] - 8004944: 6a1b ldr r3, [r3, #32] - 8004946: 085b lsrs r3, r3, #1 - 8004948: 3b01 subs r3, #1 - 800494a: 041b lsls r3, r3, #16 - 800494c: 431a orrs r2, r3 - 800494e: 68fb ldr r3, [r7, #12] - 8004950: 061b lsls r3, r3, #24 - 8004952: 4910 ldr r1, [pc, #64] @ (8004994 ) - 8004954: 4313 orrs r3, r2 - 8004956: f8c1 3088 str.w r3, [r1, #136] @ 0x88 + 8004ba6: 687b ldr r3, [r7, #4] + 8004ba8: 699a ldr r2, [r3, #24] + 8004baa: 687b ldr r3, [r7, #4] + 8004bac: 69db ldr r3, [r3, #28] + 8004bae: 019b lsls r3, r3, #6 + 8004bb0: 431a orrs r2, r3 + 8004bb2: 687b ldr r3, [r7, #4] + 8004bb4: 6a1b ldr r3, [r3, #32] + 8004bb6: 085b lsrs r3, r3, #1 + 8004bb8: 3b01 subs r3, #1 + 8004bba: 041b lsls r3, r3, #16 + 8004bbc: 431a orrs r2, r3 + 8004bbe: 68fb ldr r3, [r7, #12] + 8004bc0: 061b lsls r3, r3, #24 + 8004bc2: 4910 ldr r1, [pc, #64] @ (8004c04 ) + 8004bc4: 4313 orrs r3, r2 + 8004bc6: f8c1 3088 str.w r3, [r1, #136] @ 0x88 pllsaiq, 0U); } /* Enable PLLSAI Clock */ __HAL_RCC_PLLSAI_ENABLE(); - 800495a: 4b0f ldr r3, [pc, #60] @ (8004998 ) - 800495c: 2201 movs r2, #1 - 800495e: 601a str r2, [r3, #0] + 8004bca: 4b0f ldr r3, [pc, #60] @ (8004c08 ) + 8004bcc: 2201 movs r2, #1 + 8004bce: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 8004960: f7fd f904 bl 8001b6c - 8004964: 6278 str r0, [r7, #36] @ 0x24 + 8004bd0: f7fd f904 bl 8001ddc + 8004bd4: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLSAI is ready */ while (__HAL_RCC_PLLSAI_GET_FLAG() == RESET) - 8004966: e008 b.n 800497a + 8004bd6: e008 b.n 8004bea { if ((HAL_GetTick() - tickstart) > PLLSAI_TIMEOUT_VALUE) - 8004968: f7fd f900 bl 8001b6c - 800496c: 4602 mov r2, r0 - 800496e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8004970: 1ad3 subs r3, r2, r3 - 8004972: 2b02 cmp r3, #2 - 8004974: d901 bls.n 800497a + 8004bd8: f7fd f900 bl 8001ddc + 8004bdc: 4602 mov r2, r0 + 8004bde: 6a7b ldr r3, [r7, #36] @ 0x24 + 8004be0: 1ad3 subs r3, r2, r3 + 8004be2: 2b02 cmp r3, #2 + 8004be4: d901 bls.n 8004bea { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 8004976: 2303 movs r3, #3 - 8004978: e007 b.n 800498a + 8004be6: 2303 movs r3, #3 + 8004be8: e007 b.n 8004bfa while (__HAL_RCC_PLLSAI_GET_FLAG() == RESET) - 800497a: 4b06 ldr r3, [pc, #24] @ (8004994 ) - 800497c: 681b ldr r3, [r3, #0] - 800497e: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 - 8004982: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 8004986: d1ef bne.n 8004968 + 8004bea: 4b06 ldr r3, [pc, #24] @ (8004c04 ) + 8004bec: 681b ldr r3, [r3, #0] + 8004bee: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 + 8004bf2: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 8004bf6: d1ef bne.n 8004bd8 } } } return HAL_OK; - 8004988: 2300 movs r3, #0 + 8004bf8: 2300 movs r3, #0 } - 800498a: 4618 mov r0, r3 - 800498c: 3730 adds r7, #48 @ 0x30 - 800498e: 46bd mov sp, r7 - 8004990: bd80 pop {r7, pc} - 8004992: bf00 nop - 8004994: 40023800 .word 0x40023800 - 8004998: 42470070 .word 0x42470070 + 8004bfa: 4618 mov r0, r3 + 8004bfc: 3730 adds r7, #48 @ 0x30 + 8004bfe: 46bd mov sp, r7 + 8004c00: bd80 pop {r7, pc} + 8004c02: bf00 nop + 8004c04: 40023800 .word 0x40023800 + 8004c08: 42470070 .word 0x42470070 -0800499c : +08004c0c : * * * @retval SYSCLK frequency */ uint32_t HAL_RCC_GetSysClockFreq(void) { - 800499c: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 80049a0: b0ae sub sp, #184 @ 0xb8 - 80049a2: af00 add r7, sp, #0 + 8004c0c: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 8004c10: b0ae sub sp, #184 @ 0xb8 + 8004c12: af00 add r7, sp, #0 uint32_t pllm = 0U; - 80049a4: 2300 movs r3, #0 - 80049a6: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8004c14: 2300 movs r3, #0 + 8004c16: f8c7 30ac str.w r3, [r7, #172] @ 0xac uint32_t pllvco = 0U; - 80049aa: 2300 movs r3, #0 - 80049ac: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004c1a: 2300 movs r3, #0 + 8004c1c: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 uint32_t pllp = 0U; - 80049b0: 2300 movs r3, #0 - 80049b2: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 + 8004c20: 2300 movs r3, #0 + 8004c22: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 uint32_t pllr = 0U; - 80049b6: 2300 movs r3, #0 - 80049b8: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 8004c26: 2300 movs r3, #0 + 8004c28: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 uint32_t sysclockfreq = 0U; - 80049bc: 2300 movs r3, #0 - 80049be: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004c2c: 2300 movs r3, #0 + 8004c2e: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 /* Get SYSCLK source -------------------------------------------------------*/ switch (RCC->CFGR & RCC_CFGR_SWS) - 80049c2: 4bcb ldr r3, [pc, #812] @ (8004cf0 ) - 80049c4: 689b ldr r3, [r3, #8] - 80049c6: f003 030c and.w r3, r3, #12 - 80049ca: 2b0c cmp r3, #12 - 80049cc: f200 8206 bhi.w 8004ddc - 80049d0: a201 add r2, pc, #4 @ (adr r2, 80049d8 ) - 80049d2: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80049d6: bf00 nop - 80049d8: 08004a0d .word 0x08004a0d - 80049dc: 08004ddd .word 0x08004ddd - 80049e0: 08004ddd .word 0x08004ddd - 80049e4: 08004ddd .word 0x08004ddd - 80049e8: 08004a15 .word 0x08004a15 - 80049ec: 08004ddd .word 0x08004ddd - 80049f0: 08004ddd .word 0x08004ddd - 80049f4: 08004ddd .word 0x08004ddd - 80049f8: 08004a1d .word 0x08004a1d - 80049fc: 08004ddd .word 0x08004ddd - 8004a00: 08004ddd .word 0x08004ddd - 8004a04: 08004ddd .word 0x08004ddd - 8004a08: 08004c0d .word 0x08004c0d + 8004c32: 4bcb ldr r3, [pc, #812] @ (8004f60 ) + 8004c34: 689b ldr r3, [r3, #8] + 8004c36: f003 030c and.w r3, r3, #12 + 8004c3a: 2b0c cmp r3, #12 + 8004c3c: f200 8206 bhi.w 800504c + 8004c40: a201 add r2, pc, #4 @ (adr r2, 8004c48 ) + 8004c42: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8004c46: bf00 nop + 8004c48: 08004c7d .word 0x08004c7d + 8004c4c: 0800504d .word 0x0800504d + 8004c50: 0800504d .word 0x0800504d + 8004c54: 0800504d .word 0x0800504d + 8004c58: 08004c85 .word 0x08004c85 + 8004c5c: 0800504d .word 0x0800504d + 8004c60: 0800504d .word 0x0800504d + 8004c64: 0800504d .word 0x0800504d + 8004c68: 08004c8d .word 0x08004c8d + 8004c6c: 0800504d .word 0x0800504d + 8004c70: 0800504d .word 0x0800504d + 8004c74: 0800504d .word 0x0800504d + 8004c78: 08004e7d .word 0x08004e7d { case RCC_CFGR_SWS_HSI: /* HSI used as system clock source */ { sysclockfreq = HSI_VALUE; - 8004a0c: 4bb9 ldr r3, [pc, #740] @ (8004cf4 ) - 8004a0e: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004c7c: 4bb9 ldr r3, [pc, #740] @ (8004f64 ) + 8004c7e: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004a12: e1e7 b.n 8004de4 + 8004c82: e1e7 b.n 8005054 } case RCC_CFGR_SWS_HSE: /* HSE used as system clock source */ { sysclockfreq = HSE_VALUE; - 8004a14: 4bb8 ldr r3, [pc, #736] @ (8004cf8 ) - 8004a16: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004c84: 4bb8 ldr r3, [pc, #736] @ (8004f68 ) + 8004c86: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004a1a: e1e3 b.n 8004de4 + 8004c8a: e1e3 b.n 8005054 } case RCC_CFGR_SWS_PLL: /* PLL/PLLP used as system clock source */ { /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLLM) * PLLN SYSCLK = PLL_VCO / PLLP */ pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - 8004a1c: 4bb4 ldr r3, [pc, #720] @ (8004cf0 ) - 8004a1e: 685b ldr r3, [r3, #4] - 8004a20: f003 033f and.w r3, r3, #63 @ 0x3f - 8004a24: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8004c8c: 4bb4 ldr r3, [pc, #720] @ (8004f60 ) + 8004c8e: 685b ldr r3, [r3, #4] + 8004c90: f003 033f and.w r3, r3, #63 @ 0x3f + 8004c94: f8c7 30ac str.w r3, [r7, #172] @ 0xac if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8004a28: 4bb1 ldr r3, [pc, #708] @ (8004cf0 ) - 8004a2a: 685b ldr r3, [r3, #4] - 8004a2c: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004a30: 2b00 cmp r3, #0 - 8004a32: d071 beq.n 8004b18 + 8004c98: 4bb1 ldr r3, [pc, #708] @ (8004f60 ) + 8004c9a: 685b ldr r3, [r3, #4] + 8004c9c: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004ca0: 2b00 cmp r3, #0 + 8004ca2: d071 beq.n 8004d88 { /* HSE used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSE_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004a34: 4bae ldr r3, [pc, #696] @ (8004cf0 ) - 8004a36: 685b ldr r3, [r3, #4] - 8004a38: 099b lsrs r3, r3, #6 - 8004a3a: 2200 movs r2, #0 - 8004a3c: f8c7 3098 str.w r3, [r7, #152] @ 0x98 - 8004a40: f8c7 209c str.w r2, [r7, #156] @ 0x9c - 8004a44: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 - 8004a48: f3c3 0308 ubfx r3, r3, #0, #9 - 8004a4c: f8c7 3090 str.w r3, [r7, #144] @ 0x90 - 8004a50: 2300 movs r3, #0 - 8004a52: f8c7 3094 str.w r3, [r7, #148] @ 0x94 - 8004a56: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 - 8004a5a: 4622 mov r2, r4 - 8004a5c: 462b mov r3, r5 - 8004a5e: f04f 0000 mov.w r0, #0 - 8004a62: f04f 0100 mov.w r1, #0 - 8004a66: 0159 lsls r1, r3, #5 - 8004a68: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8004a6c: 0150 lsls r0, r2, #5 - 8004a6e: 4602 mov r2, r0 - 8004a70: 460b mov r3, r1 - 8004a72: 4621 mov r1, r4 - 8004a74: 1a51 subs r1, r2, r1 - 8004a76: 6439 str r1, [r7, #64] @ 0x40 - 8004a78: 4629 mov r1, r5 - 8004a7a: eb63 0301 sbc.w r3, r3, r1 - 8004a7e: 647b str r3, [r7, #68] @ 0x44 - 8004a80: f04f 0200 mov.w r2, #0 - 8004a84: f04f 0300 mov.w r3, #0 - 8004a88: e9d7 8910 ldrd r8, r9, [r7, #64] @ 0x40 - 8004a8c: 4649 mov r1, r9 - 8004a8e: 018b lsls r3, r1, #6 - 8004a90: 4641 mov r1, r8 - 8004a92: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8004a96: 4641 mov r1, r8 - 8004a98: 018a lsls r2, r1, #6 - 8004a9a: 4641 mov r1, r8 - 8004a9c: 1a51 subs r1, r2, r1 - 8004a9e: 63b9 str r1, [r7, #56] @ 0x38 - 8004aa0: 4649 mov r1, r9 - 8004aa2: eb63 0301 sbc.w r3, r3, r1 - 8004aa6: 63fb str r3, [r7, #60] @ 0x3c - 8004aa8: f04f 0200 mov.w r2, #0 - 8004aac: f04f 0300 mov.w r3, #0 - 8004ab0: e9d7 890e ldrd r8, r9, [r7, #56] @ 0x38 - 8004ab4: 4649 mov r1, r9 - 8004ab6: 00cb lsls r3, r1, #3 - 8004ab8: 4641 mov r1, r8 - 8004aba: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8004abe: 4641 mov r1, r8 - 8004ac0: 00ca lsls r2, r1, #3 - 8004ac2: 4610 mov r0, r2 - 8004ac4: 4619 mov r1, r3 - 8004ac6: 4603 mov r3, r0 - 8004ac8: 4622 mov r2, r4 - 8004aca: 189b adds r3, r3, r2 - 8004acc: 633b str r3, [r7, #48] @ 0x30 - 8004ace: 462b mov r3, r5 - 8004ad0: 460a mov r2, r1 - 8004ad2: eb42 0303 adc.w r3, r2, r3 - 8004ad6: 637b str r3, [r7, #52] @ 0x34 - 8004ad8: f04f 0200 mov.w r2, #0 - 8004adc: f04f 0300 mov.w r3, #0 - 8004ae0: e9d7 450c ldrd r4, r5, [r7, #48] @ 0x30 - 8004ae4: 4629 mov r1, r5 - 8004ae6: 024b lsls r3, r1, #9 - 8004ae8: 4621 mov r1, r4 - 8004aea: ea43 53d1 orr.w r3, r3, r1, lsr #23 - 8004aee: 4621 mov r1, r4 - 8004af0: 024a lsls r2, r1, #9 - 8004af2: 4610 mov r0, r2 - 8004af4: 4619 mov r1, r3 - 8004af6: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004afa: 2200 movs r2, #0 - 8004afc: f8c7 3088 str.w r3, [r7, #136] @ 0x88 - 8004b00: f8c7 208c str.w r2, [r7, #140] @ 0x8c - 8004b04: e9d7 2322 ldrd r2, r3, [r7, #136] @ 0x88 - 8004b08: f7fb fb7c bl 8000204 <__aeabi_uldivmod> - 8004b0c: 4602 mov r2, r0 - 8004b0e: 460b mov r3, r1 - 8004b10: 4613 mov r3, r2 - 8004b12: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8004b16: e067 b.n 8004be8 + 8004ca4: 4bae ldr r3, [pc, #696] @ (8004f60 ) + 8004ca6: 685b ldr r3, [r3, #4] + 8004ca8: 099b lsrs r3, r3, #6 + 8004caa: 2200 movs r2, #0 + 8004cac: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 8004cb0: f8c7 209c str.w r2, [r7, #156] @ 0x9c + 8004cb4: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 + 8004cb8: f3c3 0308 ubfx r3, r3, #0, #9 + 8004cbc: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 8004cc0: 2300 movs r3, #0 + 8004cc2: f8c7 3094 str.w r3, [r7, #148] @ 0x94 + 8004cc6: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 + 8004cca: 4622 mov r2, r4 + 8004ccc: 462b mov r3, r5 + 8004cce: f04f 0000 mov.w r0, #0 + 8004cd2: f04f 0100 mov.w r1, #0 + 8004cd6: 0159 lsls r1, r3, #5 + 8004cd8: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004cdc: 0150 lsls r0, r2, #5 + 8004cde: 4602 mov r2, r0 + 8004ce0: 460b mov r3, r1 + 8004ce2: 4621 mov r1, r4 + 8004ce4: 1a51 subs r1, r2, r1 + 8004ce6: 6439 str r1, [r7, #64] @ 0x40 + 8004ce8: 4629 mov r1, r5 + 8004cea: eb63 0301 sbc.w r3, r3, r1 + 8004cee: 647b str r3, [r7, #68] @ 0x44 + 8004cf0: f04f 0200 mov.w r2, #0 + 8004cf4: f04f 0300 mov.w r3, #0 + 8004cf8: e9d7 8910 ldrd r8, r9, [r7, #64] @ 0x40 + 8004cfc: 4649 mov r1, r9 + 8004cfe: 018b lsls r3, r1, #6 + 8004d00: 4641 mov r1, r8 + 8004d02: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004d06: 4641 mov r1, r8 + 8004d08: 018a lsls r2, r1, #6 + 8004d0a: 4641 mov r1, r8 + 8004d0c: 1a51 subs r1, r2, r1 + 8004d0e: 63b9 str r1, [r7, #56] @ 0x38 + 8004d10: 4649 mov r1, r9 + 8004d12: eb63 0301 sbc.w r3, r3, r1 + 8004d16: 63fb str r3, [r7, #60] @ 0x3c + 8004d18: f04f 0200 mov.w r2, #0 + 8004d1c: f04f 0300 mov.w r3, #0 + 8004d20: e9d7 890e ldrd r8, r9, [r7, #56] @ 0x38 + 8004d24: 4649 mov r1, r9 + 8004d26: 00cb lsls r3, r1, #3 + 8004d28: 4641 mov r1, r8 + 8004d2a: ea43 7351 orr.w r3, r3, r1, lsr #29 + 8004d2e: 4641 mov r1, r8 + 8004d30: 00ca lsls r2, r1, #3 + 8004d32: 4610 mov r0, r2 + 8004d34: 4619 mov r1, r3 + 8004d36: 4603 mov r3, r0 + 8004d38: 4622 mov r2, r4 + 8004d3a: 189b adds r3, r3, r2 + 8004d3c: 633b str r3, [r7, #48] @ 0x30 + 8004d3e: 462b mov r3, r5 + 8004d40: 460a mov r2, r1 + 8004d42: eb42 0303 adc.w r3, r2, r3 + 8004d46: 637b str r3, [r7, #52] @ 0x34 + 8004d48: f04f 0200 mov.w r2, #0 + 8004d4c: f04f 0300 mov.w r3, #0 + 8004d50: e9d7 450c ldrd r4, r5, [r7, #48] @ 0x30 + 8004d54: 4629 mov r1, r5 + 8004d56: 024b lsls r3, r1, #9 + 8004d58: 4621 mov r1, r4 + 8004d5a: ea43 53d1 orr.w r3, r3, r1, lsr #23 + 8004d5e: 4621 mov r1, r4 + 8004d60: 024a lsls r2, r1, #9 + 8004d62: 4610 mov r0, r2 + 8004d64: 4619 mov r1, r3 + 8004d66: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8004d6a: 2200 movs r2, #0 + 8004d6c: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 8004d70: f8c7 208c str.w r2, [r7, #140] @ 0x8c + 8004d74: e9d7 2322 ldrd r2, r3, [r7, #136] @ 0x88 + 8004d78: f7fb fa44 bl 8000204 <__aeabi_uldivmod> + 8004d7c: 4602 mov r2, r0 + 8004d7e: 460b mov r3, r1 + 8004d80: 4613 mov r3, r2 + 8004d82: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004d86: e067 b.n 8004e58 } else { /* HSI used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSI_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004b18: 4b75 ldr r3, [pc, #468] @ (8004cf0 ) - 8004b1a: 685b ldr r3, [r3, #4] - 8004b1c: 099b lsrs r3, r3, #6 - 8004b1e: 2200 movs r2, #0 - 8004b20: f8c7 3080 str.w r3, [r7, #128] @ 0x80 - 8004b24: f8c7 2084 str.w r2, [r7, #132] @ 0x84 - 8004b28: f8d7 3080 ldr.w r3, [r7, #128] @ 0x80 - 8004b2c: f3c3 0308 ubfx r3, r3, #0, #9 - 8004b30: 67bb str r3, [r7, #120] @ 0x78 - 8004b32: 2300 movs r3, #0 - 8004b34: 67fb str r3, [r7, #124] @ 0x7c - 8004b36: e9d7 451e ldrd r4, r5, [r7, #120] @ 0x78 - 8004b3a: 4622 mov r2, r4 - 8004b3c: 462b mov r3, r5 - 8004b3e: f04f 0000 mov.w r0, #0 - 8004b42: f04f 0100 mov.w r1, #0 - 8004b46: 0159 lsls r1, r3, #5 - 8004b48: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8004b4c: 0150 lsls r0, r2, #5 - 8004b4e: 4602 mov r2, r0 - 8004b50: 460b mov r3, r1 - 8004b52: 4621 mov r1, r4 - 8004b54: 1a51 subs r1, r2, r1 - 8004b56: 62b9 str r1, [r7, #40] @ 0x28 - 8004b58: 4629 mov r1, r5 - 8004b5a: eb63 0301 sbc.w r3, r3, r1 - 8004b5e: 62fb str r3, [r7, #44] @ 0x2c - 8004b60: f04f 0200 mov.w r2, #0 - 8004b64: f04f 0300 mov.w r3, #0 - 8004b68: e9d7 890a ldrd r8, r9, [r7, #40] @ 0x28 - 8004b6c: 4649 mov r1, r9 - 8004b6e: 018b lsls r3, r1, #6 - 8004b70: 4641 mov r1, r8 - 8004b72: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8004b76: 4641 mov r1, r8 - 8004b78: 018a lsls r2, r1, #6 - 8004b7a: 4641 mov r1, r8 - 8004b7c: ebb2 0a01 subs.w sl, r2, r1 - 8004b80: 4649 mov r1, r9 - 8004b82: eb63 0b01 sbc.w fp, r3, r1 - 8004b86: f04f 0200 mov.w r2, #0 - 8004b8a: f04f 0300 mov.w r3, #0 - 8004b8e: ea4f 03cb mov.w r3, fp, lsl #3 - 8004b92: ea43 735a orr.w r3, r3, sl, lsr #29 - 8004b96: ea4f 02ca mov.w r2, sl, lsl #3 - 8004b9a: 4692 mov sl, r2 - 8004b9c: 469b mov fp, r3 - 8004b9e: 4623 mov r3, r4 - 8004ba0: eb1a 0303 adds.w r3, sl, r3 - 8004ba4: 623b str r3, [r7, #32] - 8004ba6: 462b mov r3, r5 - 8004ba8: eb4b 0303 adc.w r3, fp, r3 - 8004bac: 627b str r3, [r7, #36] @ 0x24 - 8004bae: f04f 0200 mov.w r2, #0 - 8004bb2: f04f 0300 mov.w r3, #0 - 8004bb6: e9d7 4508 ldrd r4, r5, [r7, #32] - 8004bba: 4629 mov r1, r5 - 8004bbc: 028b lsls r3, r1, #10 - 8004bbe: 4621 mov r1, r4 - 8004bc0: ea43 5391 orr.w r3, r3, r1, lsr #22 - 8004bc4: 4621 mov r1, r4 - 8004bc6: 028a lsls r2, r1, #10 - 8004bc8: 4610 mov r0, r2 - 8004bca: 4619 mov r1, r3 - 8004bcc: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004bd0: 2200 movs r2, #0 - 8004bd2: 673b str r3, [r7, #112] @ 0x70 - 8004bd4: 677a str r2, [r7, #116] @ 0x74 - 8004bd6: e9d7 231c ldrd r2, r3, [r7, #112] @ 0x70 - 8004bda: f7fb fb13 bl 8000204 <__aeabi_uldivmod> - 8004bde: 4602 mov r2, r0 - 8004be0: 460b mov r3, r1 - 8004be2: 4613 mov r3, r2 - 8004be4: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004d88: 4b75 ldr r3, [pc, #468] @ (8004f60 ) + 8004d8a: 685b ldr r3, [r3, #4] + 8004d8c: 099b lsrs r3, r3, #6 + 8004d8e: 2200 movs r2, #0 + 8004d90: f8c7 3080 str.w r3, [r7, #128] @ 0x80 + 8004d94: f8c7 2084 str.w r2, [r7, #132] @ 0x84 + 8004d98: f8d7 3080 ldr.w r3, [r7, #128] @ 0x80 + 8004d9c: f3c3 0308 ubfx r3, r3, #0, #9 + 8004da0: 67bb str r3, [r7, #120] @ 0x78 + 8004da2: 2300 movs r3, #0 + 8004da4: 67fb str r3, [r7, #124] @ 0x7c + 8004da6: e9d7 451e ldrd r4, r5, [r7, #120] @ 0x78 + 8004daa: 4622 mov r2, r4 + 8004dac: 462b mov r3, r5 + 8004dae: f04f 0000 mov.w r0, #0 + 8004db2: f04f 0100 mov.w r1, #0 + 8004db6: 0159 lsls r1, r3, #5 + 8004db8: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004dbc: 0150 lsls r0, r2, #5 + 8004dbe: 4602 mov r2, r0 + 8004dc0: 460b mov r3, r1 + 8004dc2: 4621 mov r1, r4 + 8004dc4: 1a51 subs r1, r2, r1 + 8004dc6: 62b9 str r1, [r7, #40] @ 0x28 + 8004dc8: 4629 mov r1, r5 + 8004dca: eb63 0301 sbc.w r3, r3, r1 + 8004dce: 62fb str r3, [r7, #44] @ 0x2c + 8004dd0: f04f 0200 mov.w r2, #0 + 8004dd4: f04f 0300 mov.w r3, #0 + 8004dd8: e9d7 890a ldrd r8, r9, [r7, #40] @ 0x28 + 8004ddc: 4649 mov r1, r9 + 8004dde: 018b lsls r3, r1, #6 + 8004de0: 4641 mov r1, r8 + 8004de2: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004de6: 4641 mov r1, r8 + 8004de8: 018a lsls r2, r1, #6 + 8004dea: 4641 mov r1, r8 + 8004dec: ebb2 0a01 subs.w sl, r2, r1 + 8004df0: 4649 mov r1, r9 + 8004df2: eb63 0b01 sbc.w fp, r3, r1 + 8004df6: f04f 0200 mov.w r2, #0 + 8004dfa: f04f 0300 mov.w r3, #0 + 8004dfe: ea4f 03cb mov.w r3, fp, lsl #3 + 8004e02: ea43 735a orr.w r3, r3, sl, lsr #29 + 8004e06: ea4f 02ca mov.w r2, sl, lsl #3 + 8004e0a: 4692 mov sl, r2 + 8004e0c: 469b mov fp, r3 + 8004e0e: 4623 mov r3, r4 + 8004e10: eb1a 0303 adds.w r3, sl, r3 + 8004e14: 623b str r3, [r7, #32] + 8004e16: 462b mov r3, r5 + 8004e18: eb4b 0303 adc.w r3, fp, r3 + 8004e1c: 627b str r3, [r7, #36] @ 0x24 + 8004e1e: f04f 0200 mov.w r2, #0 + 8004e22: f04f 0300 mov.w r3, #0 + 8004e26: e9d7 4508 ldrd r4, r5, [r7, #32] + 8004e2a: 4629 mov r1, r5 + 8004e2c: 028b lsls r3, r1, #10 + 8004e2e: 4621 mov r1, r4 + 8004e30: ea43 5391 orr.w r3, r3, r1, lsr #22 + 8004e34: 4621 mov r1, r4 + 8004e36: 028a lsls r2, r1, #10 + 8004e38: 4610 mov r0, r2 + 8004e3a: 4619 mov r1, r3 + 8004e3c: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8004e40: 2200 movs r2, #0 + 8004e42: 673b str r3, [r7, #112] @ 0x70 + 8004e44: 677a str r2, [r7, #116] @ 0x74 + 8004e46: e9d7 231c ldrd r2, r3, [r7, #112] @ 0x70 + 8004e4a: f7fb f9db bl 8000204 <__aeabi_uldivmod> + 8004e4e: 4602 mov r2, r0 + 8004e50: 460b mov r3, r1 + 8004e52: 4613 mov r3, r2 + 8004e54: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 } pllp = ((((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >> RCC_PLLCFGR_PLLP_Pos) + 1U) * 2U); - 8004be8: 4b41 ldr r3, [pc, #260] @ (8004cf0 ) - 8004bea: 685b ldr r3, [r3, #4] - 8004bec: 0c1b lsrs r3, r3, #16 - 8004bee: f003 0303 and.w r3, r3, #3 - 8004bf2: 3301 adds r3, #1 - 8004bf4: 005b lsls r3, r3, #1 - 8004bf6: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 + 8004e58: 4b41 ldr r3, [pc, #260] @ (8004f60 ) + 8004e5a: 685b ldr r3, [r3, #4] + 8004e5c: 0c1b lsrs r3, r3, #16 + 8004e5e: f003 0303 and.w r3, r3, #3 + 8004e62: 3301 adds r3, #1 + 8004e64: 005b lsls r3, r3, #1 + 8004e66: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 sysclockfreq = pllvco / pllp; - 8004bfa: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 8004bfe: f8d7 30a8 ldr.w r3, [r7, #168] @ 0xa8 - 8004c02: fbb2 f3f3 udiv r3, r2, r3 - 8004c06: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004e6a: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 8004e6e: f8d7 30a8 ldr.w r3, [r7, #168] @ 0xa8 + 8004e72: fbb2 f3f3 udiv r3, r2, r3 + 8004e76: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004c0a: e0eb b.n 8004de4 + 8004e7a: e0eb b.n 8005054 } case RCC_CFGR_SWS_PLLR: /* PLL/PLLR used as system clock source */ { /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLLM) * PLLN SYSCLK = PLL_VCO / PLLR */ pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - 8004c0c: 4b38 ldr r3, [pc, #224] @ (8004cf0 ) - 8004c0e: 685b ldr r3, [r3, #4] - 8004c10: f003 033f and.w r3, r3, #63 @ 0x3f - 8004c14: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8004e7c: 4b38 ldr r3, [pc, #224] @ (8004f60 ) + 8004e7e: 685b ldr r3, [r3, #4] + 8004e80: f003 033f and.w r3, r3, #63 @ 0x3f + 8004e84: f8c7 30ac str.w r3, [r7, #172] @ 0xac if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8004c18: 4b35 ldr r3, [pc, #212] @ (8004cf0 ) - 8004c1a: 685b ldr r3, [r3, #4] - 8004c1c: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004c20: 2b00 cmp r3, #0 - 8004c22: d06b beq.n 8004cfc + 8004e88: 4b35 ldr r3, [pc, #212] @ (8004f60 ) + 8004e8a: 685b ldr r3, [r3, #4] + 8004e8c: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004e90: 2b00 cmp r3, #0 + 8004e92: d06b beq.n 8004f6c { /* HSE used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSE_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004c24: 4b32 ldr r3, [pc, #200] @ (8004cf0 ) - 8004c26: 685b ldr r3, [r3, #4] - 8004c28: 099b lsrs r3, r3, #6 - 8004c2a: 2200 movs r2, #0 - 8004c2c: 66bb str r3, [r7, #104] @ 0x68 - 8004c2e: 66fa str r2, [r7, #108] @ 0x6c - 8004c30: 6ebb ldr r3, [r7, #104] @ 0x68 - 8004c32: f3c3 0308 ubfx r3, r3, #0, #9 - 8004c36: 663b str r3, [r7, #96] @ 0x60 - 8004c38: 2300 movs r3, #0 - 8004c3a: 667b str r3, [r7, #100] @ 0x64 - 8004c3c: e9d7 4518 ldrd r4, r5, [r7, #96] @ 0x60 - 8004c40: 4622 mov r2, r4 - 8004c42: 462b mov r3, r5 - 8004c44: f04f 0000 mov.w r0, #0 - 8004c48: f04f 0100 mov.w r1, #0 - 8004c4c: 0159 lsls r1, r3, #5 - 8004c4e: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8004c52: 0150 lsls r0, r2, #5 - 8004c54: 4602 mov r2, r0 - 8004c56: 460b mov r3, r1 - 8004c58: 4621 mov r1, r4 - 8004c5a: 1a51 subs r1, r2, r1 - 8004c5c: 61b9 str r1, [r7, #24] - 8004c5e: 4629 mov r1, r5 - 8004c60: eb63 0301 sbc.w r3, r3, r1 - 8004c64: 61fb str r3, [r7, #28] - 8004c66: f04f 0200 mov.w r2, #0 - 8004c6a: f04f 0300 mov.w r3, #0 - 8004c6e: e9d7 ab06 ldrd sl, fp, [r7, #24] - 8004c72: 4659 mov r1, fp - 8004c74: 018b lsls r3, r1, #6 - 8004c76: 4651 mov r1, sl - 8004c78: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8004c7c: 4651 mov r1, sl - 8004c7e: 018a lsls r2, r1, #6 - 8004c80: 4651 mov r1, sl - 8004c82: ebb2 0801 subs.w r8, r2, r1 - 8004c86: 4659 mov r1, fp - 8004c88: eb63 0901 sbc.w r9, r3, r1 - 8004c8c: f04f 0200 mov.w r2, #0 - 8004c90: f04f 0300 mov.w r3, #0 - 8004c94: ea4f 03c9 mov.w r3, r9, lsl #3 - 8004c98: ea43 7358 orr.w r3, r3, r8, lsr #29 - 8004c9c: ea4f 02c8 mov.w r2, r8, lsl #3 - 8004ca0: 4690 mov r8, r2 - 8004ca2: 4699 mov r9, r3 - 8004ca4: 4623 mov r3, r4 - 8004ca6: eb18 0303 adds.w r3, r8, r3 - 8004caa: 613b str r3, [r7, #16] - 8004cac: 462b mov r3, r5 - 8004cae: eb49 0303 adc.w r3, r9, r3 - 8004cb2: 617b str r3, [r7, #20] - 8004cb4: f04f 0200 mov.w r2, #0 - 8004cb8: f04f 0300 mov.w r3, #0 - 8004cbc: e9d7 4504 ldrd r4, r5, [r7, #16] - 8004cc0: 4629 mov r1, r5 - 8004cc2: 024b lsls r3, r1, #9 - 8004cc4: 4621 mov r1, r4 - 8004cc6: ea43 53d1 orr.w r3, r3, r1, lsr #23 - 8004cca: 4621 mov r1, r4 - 8004ccc: 024a lsls r2, r1, #9 - 8004cce: 4610 mov r0, r2 - 8004cd0: 4619 mov r1, r3 - 8004cd2: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004cd6: 2200 movs r2, #0 - 8004cd8: 65bb str r3, [r7, #88] @ 0x58 - 8004cda: 65fa str r2, [r7, #92] @ 0x5c - 8004cdc: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 - 8004ce0: f7fb fa90 bl 8000204 <__aeabi_uldivmod> - 8004ce4: 4602 mov r2, r0 - 8004ce6: 460b mov r3, r1 - 8004ce8: 4613 mov r3, r2 - 8004cea: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8004cee: e065 b.n 8004dbc - 8004cf0: 40023800 .word 0x40023800 - 8004cf4: 00f42400 .word 0x00f42400 - 8004cf8: 007a1200 .word 0x007a1200 + 8004e94: 4b32 ldr r3, [pc, #200] @ (8004f60 ) + 8004e96: 685b ldr r3, [r3, #4] + 8004e98: 099b lsrs r3, r3, #6 + 8004e9a: 2200 movs r2, #0 + 8004e9c: 66bb str r3, [r7, #104] @ 0x68 + 8004e9e: 66fa str r2, [r7, #108] @ 0x6c + 8004ea0: 6ebb ldr r3, [r7, #104] @ 0x68 + 8004ea2: f3c3 0308 ubfx r3, r3, #0, #9 + 8004ea6: 663b str r3, [r7, #96] @ 0x60 + 8004ea8: 2300 movs r3, #0 + 8004eaa: 667b str r3, [r7, #100] @ 0x64 + 8004eac: e9d7 4518 ldrd r4, r5, [r7, #96] @ 0x60 + 8004eb0: 4622 mov r2, r4 + 8004eb2: 462b mov r3, r5 + 8004eb4: f04f 0000 mov.w r0, #0 + 8004eb8: f04f 0100 mov.w r1, #0 + 8004ebc: 0159 lsls r1, r3, #5 + 8004ebe: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004ec2: 0150 lsls r0, r2, #5 + 8004ec4: 4602 mov r2, r0 + 8004ec6: 460b mov r3, r1 + 8004ec8: 4621 mov r1, r4 + 8004eca: 1a51 subs r1, r2, r1 + 8004ecc: 61b9 str r1, [r7, #24] + 8004ece: 4629 mov r1, r5 + 8004ed0: eb63 0301 sbc.w r3, r3, r1 + 8004ed4: 61fb str r3, [r7, #28] + 8004ed6: f04f 0200 mov.w r2, #0 + 8004eda: f04f 0300 mov.w r3, #0 + 8004ede: e9d7 ab06 ldrd sl, fp, [r7, #24] + 8004ee2: 4659 mov r1, fp + 8004ee4: 018b lsls r3, r1, #6 + 8004ee6: 4651 mov r1, sl + 8004ee8: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004eec: 4651 mov r1, sl + 8004eee: 018a lsls r2, r1, #6 + 8004ef0: 4651 mov r1, sl + 8004ef2: ebb2 0801 subs.w r8, r2, r1 + 8004ef6: 4659 mov r1, fp + 8004ef8: eb63 0901 sbc.w r9, r3, r1 + 8004efc: f04f 0200 mov.w r2, #0 + 8004f00: f04f 0300 mov.w r3, #0 + 8004f04: ea4f 03c9 mov.w r3, r9, lsl #3 + 8004f08: ea43 7358 orr.w r3, r3, r8, lsr #29 + 8004f0c: ea4f 02c8 mov.w r2, r8, lsl #3 + 8004f10: 4690 mov r8, r2 + 8004f12: 4699 mov r9, r3 + 8004f14: 4623 mov r3, r4 + 8004f16: eb18 0303 adds.w r3, r8, r3 + 8004f1a: 613b str r3, [r7, #16] + 8004f1c: 462b mov r3, r5 + 8004f1e: eb49 0303 adc.w r3, r9, r3 + 8004f22: 617b str r3, [r7, #20] + 8004f24: f04f 0200 mov.w r2, #0 + 8004f28: f04f 0300 mov.w r3, #0 + 8004f2c: e9d7 4504 ldrd r4, r5, [r7, #16] + 8004f30: 4629 mov r1, r5 + 8004f32: 024b lsls r3, r1, #9 + 8004f34: 4621 mov r1, r4 + 8004f36: ea43 53d1 orr.w r3, r3, r1, lsr #23 + 8004f3a: 4621 mov r1, r4 + 8004f3c: 024a lsls r2, r1, #9 + 8004f3e: 4610 mov r0, r2 + 8004f40: 4619 mov r1, r3 + 8004f42: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8004f46: 2200 movs r2, #0 + 8004f48: 65bb str r3, [r7, #88] @ 0x58 + 8004f4a: 65fa str r2, [r7, #92] @ 0x5c + 8004f4c: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 + 8004f50: f7fb f958 bl 8000204 <__aeabi_uldivmod> + 8004f54: 4602 mov r2, r0 + 8004f56: 460b mov r3, r1 + 8004f58: 4613 mov r3, r2 + 8004f5a: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004f5e: e065 b.n 800502c + 8004f60: 40023800 .word 0x40023800 + 8004f64: 00f42400 .word 0x00f42400 + 8004f68: 007a1200 .word 0x007a1200 } else { /* HSI used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSI_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004cfc: 4b3d ldr r3, [pc, #244] @ (8004df4 ) - 8004cfe: 685b ldr r3, [r3, #4] - 8004d00: 099b lsrs r3, r3, #6 - 8004d02: 2200 movs r2, #0 - 8004d04: 4618 mov r0, r3 - 8004d06: 4611 mov r1, r2 - 8004d08: f3c0 0308 ubfx r3, r0, #0, #9 - 8004d0c: 653b str r3, [r7, #80] @ 0x50 - 8004d0e: 2300 movs r3, #0 - 8004d10: 657b str r3, [r7, #84] @ 0x54 - 8004d12: e9d7 8914 ldrd r8, r9, [r7, #80] @ 0x50 - 8004d16: 4642 mov r2, r8 - 8004d18: 464b mov r3, r9 - 8004d1a: f04f 0000 mov.w r0, #0 - 8004d1e: f04f 0100 mov.w r1, #0 - 8004d22: 0159 lsls r1, r3, #5 - 8004d24: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8004d28: 0150 lsls r0, r2, #5 - 8004d2a: 4602 mov r2, r0 - 8004d2c: 460b mov r3, r1 - 8004d2e: 4641 mov r1, r8 - 8004d30: 1a51 subs r1, r2, r1 - 8004d32: 60b9 str r1, [r7, #8] - 8004d34: 4649 mov r1, r9 - 8004d36: eb63 0301 sbc.w r3, r3, r1 - 8004d3a: 60fb str r3, [r7, #12] - 8004d3c: f04f 0200 mov.w r2, #0 - 8004d40: f04f 0300 mov.w r3, #0 - 8004d44: e9d7 ab02 ldrd sl, fp, [r7, #8] - 8004d48: 4659 mov r1, fp - 8004d4a: 018b lsls r3, r1, #6 - 8004d4c: 4651 mov r1, sl - 8004d4e: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8004d52: 4651 mov r1, sl - 8004d54: 018a lsls r2, r1, #6 - 8004d56: 4651 mov r1, sl - 8004d58: 1a54 subs r4, r2, r1 - 8004d5a: 4659 mov r1, fp - 8004d5c: eb63 0501 sbc.w r5, r3, r1 - 8004d60: f04f 0200 mov.w r2, #0 - 8004d64: f04f 0300 mov.w r3, #0 - 8004d68: 00eb lsls r3, r5, #3 - 8004d6a: ea43 7354 orr.w r3, r3, r4, lsr #29 - 8004d6e: 00e2 lsls r2, r4, #3 - 8004d70: 4614 mov r4, r2 - 8004d72: 461d mov r5, r3 - 8004d74: 4643 mov r3, r8 - 8004d76: 18e3 adds r3, r4, r3 - 8004d78: 603b str r3, [r7, #0] - 8004d7a: 464b mov r3, r9 - 8004d7c: eb45 0303 adc.w r3, r5, r3 - 8004d80: 607b str r3, [r7, #4] - 8004d82: f04f 0200 mov.w r2, #0 - 8004d86: f04f 0300 mov.w r3, #0 - 8004d8a: e9d7 4500 ldrd r4, r5, [r7] - 8004d8e: 4629 mov r1, r5 - 8004d90: 028b lsls r3, r1, #10 - 8004d92: 4621 mov r1, r4 - 8004d94: ea43 5391 orr.w r3, r3, r1, lsr #22 - 8004d98: 4621 mov r1, r4 - 8004d9a: 028a lsls r2, r1, #10 - 8004d9c: 4610 mov r0, r2 - 8004d9e: 4619 mov r1, r3 - 8004da0: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004da4: 2200 movs r2, #0 - 8004da6: 64bb str r3, [r7, #72] @ 0x48 - 8004da8: 64fa str r2, [r7, #76] @ 0x4c - 8004daa: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 - 8004dae: f7fb fa29 bl 8000204 <__aeabi_uldivmod> - 8004db2: 4602 mov r2, r0 - 8004db4: 460b mov r3, r1 - 8004db6: 4613 mov r3, r2 - 8004db8: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004f6c: 4b3d ldr r3, [pc, #244] @ (8005064 ) + 8004f6e: 685b ldr r3, [r3, #4] + 8004f70: 099b lsrs r3, r3, #6 + 8004f72: 2200 movs r2, #0 + 8004f74: 4618 mov r0, r3 + 8004f76: 4611 mov r1, r2 + 8004f78: f3c0 0308 ubfx r3, r0, #0, #9 + 8004f7c: 653b str r3, [r7, #80] @ 0x50 + 8004f7e: 2300 movs r3, #0 + 8004f80: 657b str r3, [r7, #84] @ 0x54 + 8004f82: e9d7 8914 ldrd r8, r9, [r7, #80] @ 0x50 + 8004f86: 4642 mov r2, r8 + 8004f88: 464b mov r3, r9 + 8004f8a: f04f 0000 mov.w r0, #0 + 8004f8e: f04f 0100 mov.w r1, #0 + 8004f92: 0159 lsls r1, r3, #5 + 8004f94: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004f98: 0150 lsls r0, r2, #5 + 8004f9a: 4602 mov r2, r0 + 8004f9c: 460b mov r3, r1 + 8004f9e: 4641 mov r1, r8 + 8004fa0: 1a51 subs r1, r2, r1 + 8004fa2: 60b9 str r1, [r7, #8] + 8004fa4: 4649 mov r1, r9 + 8004fa6: eb63 0301 sbc.w r3, r3, r1 + 8004faa: 60fb str r3, [r7, #12] + 8004fac: f04f 0200 mov.w r2, #0 + 8004fb0: f04f 0300 mov.w r3, #0 + 8004fb4: e9d7 ab02 ldrd sl, fp, [r7, #8] + 8004fb8: 4659 mov r1, fp + 8004fba: 018b lsls r3, r1, #6 + 8004fbc: 4651 mov r1, sl + 8004fbe: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004fc2: 4651 mov r1, sl + 8004fc4: 018a lsls r2, r1, #6 + 8004fc6: 4651 mov r1, sl + 8004fc8: 1a54 subs r4, r2, r1 + 8004fca: 4659 mov r1, fp + 8004fcc: eb63 0501 sbc.w r5, r3, r1 + 8004fd0: f04f 0200 mov.w r2, #0 + 8004fd4: f04f 0300 mov.w r3, #0 + 8004fd8: 00eb lsls r3, r5, #3 + 8004fda: ea43 7354 orr.w r3, r3, r4, lsr #29 + 8004fde: 00e2 lsls r2, r4, #3 + 8004fe0: 4614 mov r4, r2 + 8004fe2: 461d mov r5, r3 + 8004fe4: 4643 mov r3, r8 + 8004fe6: 18e3 adds r3, r4, r3 + 8004fe8: 603b str r3, [r7, #0] + 8004fea: 464b mov r3, r9 + 8004fec: eb45 0303 adc.w r3, r5, r3 + 8004ff0: 607b str r3, [r7, #4] + 8004ff2: f04f 0200 mov.w r2, #0 + 8004ff6: f04f 0300 mov.w r3, #0 + 8004ffa: e9d7 4500 ldrd r4, r5, [r7] + 8004ffe: 4629 mov r1, r5 + 8005000: 028b lsls r3, r1, #10 + 8005002: 4621 mov r1, r4 + 8005004: ea43 5391 orr.w r3, r3, r1, lsr #22 + 8005008: 4621 mov r1, r4 + 800500a: 028a lsls r2, r1, #10 + 800500c: 4610 mov r0, r2 + 800500e: 4619 mov r1, r3 + 8005010: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8005014: 2200 movs r2, #0 + 8005016: 64bb str r3, [r7, #72] @ 0x48 + 8005018: 64fa str r2, [r7, #76] @ 0x4c + 800501a: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 + 800501e: f7fb f8f1 bl 8000204 <__aeabi_uldivmod> + 8005022: 4602 mov r2, r0 + 8005024: 460b mov r3, r1 + 8005026: 4613 mov r3, r2 + 8005028: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 } pllr = ((RCC->PLLCFGR & RCC_PLLCFGR_PLLR) >> RCC_PLLCFGR_PLLR_Pos); - 8004dbc: 4b0d ldr r3, [pc, #52] @ (8004df4 ) - 8004dbe: 685b ldr r3, [r3, #4] - 8004dc0: 0f1b lsrs r3, r3, #28 - 8004dc2: f003 0307 and.w r3, r3, #7 - 8004dc6: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 800502c: 4b0d ldr r3, [pc, #52] @ (8005064 ) + 800502e: 685b ldr r3, [r3, #4] + 8005030: 0f1b lsrs r3, r3, #28 + 8005032: f003 0307 and.w r3, r3, #7 + 8005036: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 sysclockfreq = pllvco / pllr; - 8004dca: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 8004dce: f8d7 30a4 ldr.w r3, [r7, #164] @ 0xa4 - 8004dd2: fbb2 f3f3 udiv r3, r2, r3 - 8004dd6: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 800503a: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 800503e: f8d7 30a4 ldr.w r3, [r7, #164] @ 0xa4 + 8005042: fbb2 f3f3 udiv r3, r2, r3 + 8005046: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004dda: e003 b.n 8004de4 + 800504a: e003 b.n 8005054 } default: { sysclockfreq = HSI_VALUE; - 8004ddc: 4b06 ldr r3, [pc, #24] @ (8004df8 ) - 8004dde: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 800504c: 4b06 ldr r3, [pc, #24] @ (8005068 ) + 800504e: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004de2: bf00 nop + 8005052: bf00 nop } } return sysclockfreq; - 8004de4: f8d7 30b0 ldr.w r3, [r7, #176] @ 0xb0 + 8005054: f8d7 30b0 ldr.w r3, [r7, #176] @ 0xb0 } - 8004de8: 4618 mov r0, r3 - 8004dea: 37b8 adds r7, #184 @ 0xb8 - 8004dec: 46bd mov sp, r7 - 8004dee: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8004df2: bf00 nop - 8004df4: 40023800 .word 0x40023800 - 8004df8: 00f42400 .word 0x00f42400 + 8005058: 4618 mov r0, r3 + 800505a: 37b8 adds r7, #184 @ 0xb8 + 800505c: 46bd mov sp, r7 + 800505e: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8005062: bf00 nop + 8005064: 40023800 .word 0x40023800 + 8005068: 00f42400 .word 0x00f42400 -08004dfc : +0800506c : * @note This function add the PLL/PLLR factor management during PLL configuration this feature * is only available in STM32F410xx/STM32F446xx/STM32F469xx/STM32F479xx/STM32F412Zx/STM32F412Vx/STM32F412Rx/STM32F412Cx devices * @retval HAL status */ HAL_StatusTypeDef HAL_RCC_OscConfig(const RCC_OscInitTypeDef *RCC_OscInitStruct) { - 8004dfc: b580 push {r7, lr} - 8004dfe: b086 sub sp, #24 - 8004e00: af00 add r7, sp, #0 - 8004e02: 6078 str r0, [r7, #4] + 800506c: b580 push {r7, lr} + 800506e: b086 sub sp, #24 + 8005070: af00 add r7, sp, #0 + 8005072: 6078 str r0, [r7, #4] uint32_t tickstart; uint32_t pll_config; /* Check Null pointer */ if (RCC_OscInitStruct == NULL) - 8004e04: 687b ldr r3, [r7, #4] - 8004e06: 2b00 cmp r3, #0 - 8004e08: d101 bne.n 8004e0e + 8005074: 687b ldr r3, [r7, #4] + 8005076: 2b00 cmp r3, #0 + 8005078: d101 bne.n 800507e { return HAL_ERROR; - 8004e0a: 2301 movs r3, #1 - 8004e0c: e28d b.n 800532a + 800507a: 2301 movs r3, #1 + 800507c: e28d b.n 800559a } /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8004e0e: 687b ldr r3, [r7, #4] - 8004e10: 681b ldr r3, [r3, #0] - 8004e12: f003 0301 and.w r3, r3, #1 - 8004e16: 2b00 cmp r3, #0 - 8004e18: f000 8083 beq.w 8004f22 + 800507e: 687b ldr r3, [r7, #4] + 8005080: 681b ldr r3, [r3, #0] + 8005082: f003 0301 and.w r3, r3, #1 + 8005086: 2b00 cmp r3, #0 + 8005088: f000 8083 beq.w 8005192 { /* Check the parameters */ assert_param(IS_RCC_HSE(RCC_OscInitStruct->HSEState)); /* When the HSE is used as system clock or clock source for PLL in these cases HSE will not disabled */ #if defined(STM32F446xx) if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) - 8004e1c: 4b94 ldr r3, [pc, #592] @ (8005070 ) - 8004e1e: 689b ldr r3, [r3, #8] - 8004e20: f003 030c and.w r3, r3, #12 - 8004e24: 2b04 cmp r3, #4 - 8004e26: d019 beq.n 8004e5c + 800508c: 4b94 ldr r3, [pc, #592] @ (80052e0 ) + 800508e: 689b ldr r3, [r3, #8] + 8005090: f003 030c and.w r3, r3, #12 + 8005094: 2b04 cmp r3, #4 + 8005096: d019 beq.n 80050cc || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE)) || \ - 8004e28: 4b91 ldr r3, [pc, #580] @ (8005070 ) - 8004e2a: 689b ldr r3, [r3, #8] - 8004e2c: f003 030c and.w r3, r3, #12 + 8005098: 4b91 ldr r3, [pc, #580] @ (80052e0 ) + 800509a: 689b ldr r3, [r3, #8] + 800509c: f003 030c and.w r3, r3, #12 || \ - 8004e30: 2b08 cmp r3, #8 - 8004e32: d106 bne.n 8004e42 + 80050a0: 2b08 cmp r3, #8 + 80050a2: d106 bne.n 80050b2 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE)) || \ - 8004e34: 4b8e ldr r3, [pc, #568] @ (8005070 ) - 8004e36: 685b ldr r3, [r3, #4] - 8004e38: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004e3c: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004e40: d00c beq.n 8004e5c + 80050a4: 4b8e ldr r3, [pc, #568] @ (80052e0 ) + 80050a6: 685b ldr r3, [r3, #4] + 80050a8: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 80050ac: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 80050b0: d00c beq.n 80050cc ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 8004e42: 4b8b ldr r3, [pc, #556] @ (8005070 ) - 8004e44: 689b ldr r3, [r3, #8] - 8004e46: f003 030c and.w r3, r3, #12 + 80050b2: 4b8b ldr r3, [pc, #556] @ (80052e0 ) + 80050b4: 689b ldr r3, [r3, #8] + 80050b6: f003 030c and.w r3, r3, #12 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE)) || \ - 8004e4a: 2b0c cmp r3, #12 - 8004e4c: d112 bne.n 8004e74 + 80050ba: 2b0c cmp r3, #12 + 80050bc: d112 bne.n 80050e4 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 8004e4e: 4b88 ldr r3, [pc, #544] @ (8005070 ) - 8004e50: 685b ldr r3, [r3, #4] - 8004e52: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004e56: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004e5a: d10b bne.n 8004e74 + 80050be: 4b88 ldr r3, [pc, #544] @ (80052e0 ) + 80050c0: 685b ldr r3, [r3, #4] + 80050c2: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 80050c6: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 80050ca: d10b bne.n 80050e4 if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) #endif /* STM32F446xx */ { if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8004e5c: 4b84 ldr r3, [pc, #528] @ (8005070 ) - 8004e5e: 681b ldr r3, [r3, #0] - 8004e60: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004e64: 2b00 cmp r3, #0 - 8004e66: d05b beq.n 8004f20 - 8004e68: 687b ldr r3, [r7, #4] - 8004e6a: 685b ldr r3, [r3, #4] - 8004e6c: 2b00 cmp r3, #0 - 8004e6e: d157 bne.n 8004f20 + 80050cc: 4b84 ldr r3, [pc, #528] @ (80052e0 ) + 80050ce: 681b ldr r3, [r3, #0] + 80050d0: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 80050d4: 2b00 cmp r3, #0 + 80050d6: d05b beq.n 8005190 + 80050d8: 687b ldr r3, [r7, #4] + 80050da: 685b ldr r3, [r3, #4] + 80050dc: 2b00 cmp r3, #0 + 80050de: d157 bne.n 8005190 { return HAL_ERROR; - 8004e70: 2301 movs r3, #1 - 8004e72: e25a b.n 800532a + 80050e0: 2301 movs r3, #1 + 80050e2: e25a b.n 800559a } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8004e74: 687b ldr r3, [r7, #4] - 8004e76: 685b ldr r3, [r3, #4] - 8004e78: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 8004e7c: d106 bne.n 8004e8c - 8004e7e: 4b7c ldr r3, [pc, #496] @ (8005070 ) - 8004e80: 681b ldr r3, [r3, #0] - 8004e82: 4a7b ldr r2, [pc, #492] @ (8005070 ) - 8004e84: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 8004e88: 6013 str r3, [r2, #0] - 8004e8a: e01d b.n 8004ec8 - 8004e8c: 687b ldr r3, [r7, #4] - 8004e8e: 685b ldr r3, [r3, #4] - 8004e90: f5b3 2fa0 cmp.w r3, #327680 @ 0x50000 - 8004e94: d10c bne.n 8004eb0 - 8004e96: 4b76 ldr r3, [pc, #472] @ (8005070 ) - 8004e98: 681b ldr r3, [r3, #0] - 8004e9a: 4a75 ldr r2, [pc, #468] @ (8005070 ) - 8004e9c: f443 2380 orr.w r3, r3, #262144 @ 0x40000 - 8004ea0: 6013 str r3, [r2, #0] - 8004ea2: 4b73 ldr r3, [pc, #460] @ (8005070 ) - 8004ea4: 681b ldr r3, [r3, #0] - 8004ea6: 4a72 ldr r2, [pc, #456] @ (8005070 ) - 8004ea8: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 8004eac: 6013 str r3, [r2, #0] - 8004eae: e00b b.n 8004ec8 - 8004eb0: 4b6f ldr r3, [pc, #444] @ (8005070 ) - 8004eb2: 681b ldr r3, [r3, #0] - 8004eb4: 4a6e ldr r2, [pc, #440] @ (8005070 ) - 8004eb6: f423 3380 bic.w r3, r3, #65536 @ 0x10000 - 8004eba: 6013 str r3, [r2, #0] - 8004ebc: 4b6c ldr r3, [pc, #432] @ (8005070 ) - 8004ebe: 681b ldr r3, [r3, #0] - 8004ec0: 4a6b ldr r2, [pc, #428] @ (8005070 ) - 8004ec2: f423 2380 bic.w r3, r3, #262144 @ 0x40000 - 8004ec6: 6013 str r3, [r2, #0] + 80050e4: 687b ldr r3, [r7, #4] + 80050e6: 685b ldr r3, [r3, #4] + 80050e8: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 80050ec: d106 bne.n 80050fc + 80050ee: 4b7c ldr r3, [pc, #496] @ (80052e0 ) + 80050f0: 681b ldr r3, [r3, #0] + 80050f2: 4a7b ldr r2, [pc, #492] @ (80052e0 ) + 80050f4: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 80050f8: 6013 str r3, [r2, #0] + 80050fa: e01d b.n 8005138 + 80050fc: 687b ldr r3, [r7, #4] + 80050fe: 685b ldr r3, [r3, #4] + 8005100: f5b3 2fa0 cmp.w r3, #327680 @ 0x50000 + 8005104: d10c bne.n 8005120 + 8005106: 4b76 ldr r3, [pc, #472] @ (80052e0 ) + 8005108: 681b ldr r3, [r3, #0] + 800510a: 4a75 ldr r2, [pc, #468] @ (80052e0 ) + 800510c: f443 2380 orr.w r3, r3, #262144 @ 0x40000 + 8005110: 6013 str r3, [r2, #0] + 8005112: 4b73 ldr r3, [pc, #460] @ (80052e0 ) + 8005114: 681b ldr r3, [r3, #0] + 8005116: 4a72 ldr r2, [pc, #456] @ (80052e0 ) + 8005118: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 800511c: 6013 str r3, [r2, #0] + 800511e: e00b b.n 8005138 + 8005120: 4b6f ldr r3, [pc, #444] @ (80052e0 ) + 8005122: 681b ldr r3, [r3, #0] + 8005124: 4a6e ldr r2, [pc, #440] @ (80052e0 ) + 8005126: f423 3380 bic.w r3, r3, #65536 @ 0x10000 + 800512a: 6013 str r3, [r2, #0] + 800512c: 4b6c ldr r3, [pc, #432] @ (80052e0 ) + 800512e: 681b ldr r3, [r3, #0] + 8005130: 4a6b ldr r2, [pc, #428] @ (80052e0 ) + 8005132: f423 2380 bic.w r3, r3, #262144 @ 0x40000 + 8005136: 6013 str r3, [r2, #0] /* Check the HSE State */ if ((RCC_OscInitStruct->HSEState) != RCC_HSE_OFF) - 8004ec8: 687b ldr r3, [r7, #4] - 8004eca: 685b ldr r3, [r3, #4] - 8004ecc: 2b00 cmp r3, #0 - 8004ece: d013 beq.n 8004ef8 + 8005138: 687b ldr r3, [r7, #4] + 800513a: 685b ldr r3, [r3, #4] + 800513c: 2b00 cmp r3, #0 + 800513e: d013 beq.n 8005168 { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004ed0: f7fc fe4c bl 8001b6c - 8004ed4: 6138 str r0, [r7, #16] + 8005140: f7fc fe4c bl 8001ddc + 8005144: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8004ed6: e008 b.n 8004eea + 8005146: e008 b.n 800515a { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8004ed8: f7fc fe48 bl 8001b6c - 8004edc: 4602 mov r2, r0 - 8004ede: 693b ldr r3, [r7, #16] - 8004ee0: 1ad3 subs r3, r2, r3 - 8004ee2: 2b64 cmp r3, #100 @ 0x64 - 8004ee4: d901 bls.n 8004eea + 8005148: f7fc fe48 bl 8001ddc + 800514c: 4602 mov r2, r0 + 800514e: 693b ldr r3, [r7, #16] + 8005150: 1ad3 subs r3, r2, r3 + 8005152: 2b64 cmp r3, #100 @ 0x64 + 8005154: d901 bls.n 800515a { return HAL_TIMEOUT; - 8004ee6: 2303 movs r3, #3 - 8004ee8: e21f b.n 800532a + 8005156: 2303 movs r3, #3 + 8005158: e21f b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8004eea: 4b61 ldr r3, [pc, #388] @ (8005070 ) - 8004eec: 681b ldr r3, [r3, #0] - 8004eee: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004ef2: 2b00 cmp r3, #0 - 8004ef4: d0f0 beq.n 8004ed8 - 8004ef6: e014 b.n 8004f22 + 800515a: 4b61 ldr r3, [pc, #388] @ (80052e0 ) + 800515c: 681b ldr r3, [r3, #0] + 800515e: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8005162: 2b00 cmp r3, #0 + 8005164: d0f0 beq.n 8005148 + 8005166: e014 b.n 8005192 } } else { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004ef8: f7fc fe38 bl 8001b6c - 8004efc: 6138 str r0, [r7, #16] + 8005168: f7fc fe38 bl 8001ddc + 800516c: 6138 str r0, [r7, #16] /* Wait till HSE is bypassed or disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8004efe: e008 b.n 8004f12 + 800516e: e008 b.n 8005182 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8004f00: f7fc fe34 bl 8001b6c - 8004f04: 4602 mov r2, r0 - 8004f06: 693b ldr r3, [r7, #16] - 8004f08: 1ad3 subs r3, r2, r3 - 8004f0a: 2b64 cmp r3, #100 @ 0x64 - 8004f0c: d901 bls.n 8004f12 + 8005170: f7fc fe34 bl 8001ddc + 8005174: 4602 mov r2, r0 + 8005176: 693b ldr r3, [r7, #16] + 8005178: 1ad3 subs r3, r2, r3 + 800517a: 2b64 cmp r3, #100 @ 0x64 + 800517c: d901 bls.n 8005182 { return HAL_TIMEOUT; - 8004f0e: 2303 movs r3, #3 - 8004f10: e20b b.n 800532a + 800517e: 2303 movs r3, #3 + 8005180: e20b b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8004f12: 4b57 ldr r3, [pc, #348] @ (8005070 ) - 8004f14: 681b ldr r3, [r3, #0] - 8004f16: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004f1a: 2b00 cmp r3, #0 - 8004f1c: d1f0 bne.n 8004f00 - 8004f1e: e000 b.n 8004f22 + 8005182: 4b57 ldr r3, [pc, #348] @ (80052e0 ) + 8005184: 681b ldr r3, [r3, #0] + 8005186: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800518a: 2b00 cmp r3, #0 + 800518c: d1f0 bne.n 8005170 + 800518e: e000 b.n 8005192 if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8004f20: bf00 nop + 8005190: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 8004f22: 687b ldr r3, [r7, #4] - 8004f24: 681b ldr r3, [r3, #0] - 8004f26: f003 0302 and.w r3, r3, #2 - 8004f2a: 2b00 cmp r3, #0 - 8004f2c: d06f beq.n 800500e + 8005192: 687b ldr r3, [r7, #4] + 8005194: 681b ldr r3, [r3, #0] + 8005196: f003 0302 and.w r3, r3, #2 + 800519a: 2b00 cmp r3, #0 + 800519c: d06f beq.n 800527e assert_param(IS_RCC_HSI(RCC_OscInitStruct->HSIState)); assert_param(IS_RCC_CALIBRATION_VALUE(RCC_OscInitStruct->HSICalibrationValue)); /* Check if HSI is used as system clock or as PLL source when PLL is selected as system clock */ #if defined(STM32F446xx) if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSI) - 8004f2e: 4b50 ldr r3, [pc, #320] @ (8005070 ) - 8004f30: 689b ldr r3, [r3, #8] - 8004f32: f003 030c and.w r3, r3, #12 - 8004f36: 2b00 cmp r3, #0 - 8004f38: d017 beq.n 8004f6a + 800519e: 4b50 ldr r3, [pc, #320] @ (80052e0 ) + 80051a0: 689b ldr r3, [r3, #8] + 80051a2: f003 030c and.w r3, r3, #12 + 80051a6: 2b00 cmp r3, #0 + 80051a8: d017 beq.n 80051da || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI)) || \ - 8004f3a: 4b4d ldr r3, [pc, #308] @ (8005070 ) - 8004f3c: 689b ldr r3, [r3, #8] - 8004f3e: f003 030c and.w r3, r3, #12 + 80051aa: 4b4d ldr r3, [pc, #308] @ (80052e0 ) + 80051ac: 689b ldr r3, [r3, #8] + 80051ae: f003 030c and.w r3, r3, #12 || \ - 8004f42: 2b08 cmp r3, #8 - 8004f44: d105 bne.n 8004f52 + 80051b2: 2b08 cmp r3, #8 + 80051b4: d105 bne.n 80051c2 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI)) || \ - 8004f46: 4b4a ldr r3, [pc, #296] @ (8005070 ) - 8004f48: 685b ldr r3, [r3, #4] - 8004f4a: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004f4e: 2b00 cmp r3, #0 - 8004f50: d00b beq.n 8004f6a + 80051b6: 4b4a ldr r3, [pc, #296] @ (80052e0 ) + 80051b8: 685b ldr r3, [r3, #4] + 80051ba: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 80051be: 2b00 cmp r3, #0 + 80051c0: d00b beq.n 80051da ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 8004f52: 4b47 ldr r3, [pc, #284] @ (8005070 ) - 8004f54: 689b ldr r3, [r3, #8] - 8004f56: f003 030c and.w r3, r3, #12 + 80051c2: 4b47 ldr r3, [pc, #284] @ (80052e0 ) + 80051c4: 689b ldr r3, [r3, #8] + 80051c6: f003 030c and.w r3, r3, #12 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI)) || \ - 8004f5a: 2b0c cmp r3, #12 - 8004f5c: d11c bne.n 8004f98 + 80051ca: 2b0c cmp r3, #12 + 80051cc: d11c bne.n 8005208 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 8004f5e: 4b44 ldr r3, [pc, #272] @ (8005070 ) - 8004f60: 685b ldr r3, [r3, #4] - 8004f62: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004f66: 2b00 cmp r3, #0 - 8004f68: d116 bne.n 8004f98 + 80051ce: 4b44 ldr r3, [pc, #272] @ (80052e0 ) + 80051d0: 685b ldr r3, [r3, #4] + 80051d2: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 80051d6: 2b00 cmp r3, #0 + 80051d8: d116 bne.n 8005208 || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) #endif /* STM32F446xx */ { /* When HSI is used as system clock it will not disabled */ if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 8004f6a: 4b41 ldr r3, [pc, #260] @ (8005070 ) - 8004f6c: 681b ldr r3, [r3, #0] - 8004f6e: f003 0302 and.w r3, r3, #2 - 8004f72: 2b00 cmp r3, #0 - 8004f74: d005 beq.n 8004f82 - 8004f76: 687b ldr r3, [r7, #4] - 8004f78: 68db ldr r3, [r3, #12] - 8004f7a: 2b01 cmp r3, #1 - 8004f7c: d001 beq.n 8004f82 + 80051da: 4b41 ldr r3, [pc, #260] @ (80052e0 ) + 80051dc: 681b ldr r3, [r3, #0] + 80051de: f003 0302 and.w r3, r3, #2 + 80051e2: 2b00 cmp r3, #0 + 80051e4: d005 beq.n 80051f2 + 80051e6: 687b ldr r3, [r7, #4] + 80051e8: 68db ldr r3, [r3, #12] + 80051ea: 2b01 cmp r3, #1 + 80051ec: d001 beq.n 80051f2 { return HAL_ERROR; - 8004f7e: 2301 movs r3, #1 - 8004f80: e1d3 b.n 800532a + 80051ee: 2301 movs r3, #1 + 80051f0: e1d3 b.n 800559a } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8004f82: 4b3b ldr r3, [pc, #236] @ (8005070 ) - 8004f84: 681b ldr r3, [r3, #0] - 8004f86: f023 02f8 bic.w r2, r3, #248 @ 0xf8 - 8004f8a: 687b ldr r3, [r7, #4] - 8004f8c: 691b ldr r3, [r3, #16] - 8004f8e: 00db lsls r3, r3, #3 - 8004f90: 4937 ldr r1, [pc, #220] @ (8005070 ) - 8004f92: 4313 orrs r3, r2 - 8004f94: 600b str r3, [r1, #0] + 80051f2: 4b3b ldr r3, [pc, #236] @ (80052e0 ) + 80051f4: 681b ldr r3, [r3, #0] + 80051f6: f023 02f8 bic.w r2, r3, #248 @ 0xf8 + 80051fa: 687b ldr r3, [r7, #4] + 80051fc: 691b ldr r3, [r3, #16] + 80051fe: 00db lsls r3, r3, #3 + 8005200: 4937 ldr r1, [pc, #220] @ (80052e0 ) + 8005202: 4313 orrs r3, r2 + 8005204: 600b str r3, [r1, #0] if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 8004f96: e03a b.n 800500e + 8005206: e03a b.n 800527e } } else { /* Check the HSI State */ if ((RCC_OscInitStruct->HSIState) != RCC_HSI_OFF) - 8004f98: 687b ldr r3, [r7, #4] - 8004f9a: 68db ldr r3, [r3, #12] - 8004f9c: 2b00 cmp r3, #0 - 8004f9e: d020 beq.n 8004fe2 + 8005208: 687b ldr r3, [r7, #4] + 800520a: 68db ldr r3, [r3, #12] + 800520c: 2b00 cmp r3, #0 + 800520e: d020 beq.n 8005252 { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 8004fa0: 4b34 ldr r3, [pc, #208] @ (8005074 ) - 8004fa2: 2201 movs r2, #1 - 8004fa4: 601a str r2, [r3, #0] + 8005210: 4b34 ldr r3, [pc, #208] @ (80052e4 ) + 8005212: 2201 movs r2, #1 + 8005214: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004fa6: f7fc fde1 bl 8001b6c - 8004faa: 6138 str r0, [r7, #16] + 8005216: f7fc fde1 bl 8001ddc + 800521a: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8004fac: e008 b.n 8004fc0 + 800521c: e008 b.n 8005230 { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8004fae: f7fc fddd bl 8001b6c - 8004fb2: 4602 mov r2, r0 - 8004fb4: 693b ldr r3, [r7, #16] - 8004fb6: 1ad3 subs r3, r2, r3 - 8004fb8: 2b02 cmp r3, #2 - 8004fba: d901 bls.n 8004fc0 + 800521e: f7fc fddd bl 8001ddc + 8005222: 4602 mov r2, r0 + 8005224: 693b ldr r3, [r7, #16] + 8005226: 1ad3 subs r3, r2, r3 + 8005228: 2b02 cmp r3, #2 + 800522a: d901 bls.n 8005230 { return HAL_TIMEOUT; - 8004fbc: 2303 movs r3, #3 - 8004fbe: e1b4 b.n 800532a + 800522c: 2303 movs r3, #3 + 800522e: e1b4 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8004fc0: 4b2b ldr r3, [pc, #172] @ (8005070 ) - 8004fc2: 681b ldr r3, [r3, #0] - 8004fc4: f003 0302 and.w r3, r3, #2 - 8004fc8: 2b00 cmp r3, #0 - 8004fca: d0f0 beq.n 8004fae + 8005230: 4b2b ldr r3, [pc, #172] @ (80052e0 ) + 8005232: 681b ldr r3, [r3, #0] + 8005234: f003 0302 and.w r3, r3, #2 + 8005238: 2b00 cmp r3, #0 + 800523a: d0f0 beq.n 800521e } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8004fcc: 4b28 ldr r3, [pc, #160] @ (8005070 ) - 8004fce: 681b ldr r3, [r3, #0] - 8004fd0: f023 02f8 bic.w r2, r3, #248 @ 0xf8 - 8004fd4: 687b ldr r3, [r7, #4] - 8004fd6: 691b ldr r3, [r3, #16] - 8004fd8: 00db lsls r3, r3, #3 - 8004fda: 4925 ldr r1, [pc, #148] @ (8005070 ) - 8004fdc: 4313 orrs r3, r2 - 8004fde: 600b str r3, [r1, #0] - 8004fe0: e015 b.n 800500e + 800523c: 4b28 ldr r3, [pc, #160] @ (80052e0 ) + 800523e: 681b ldr r3, [r3, #0] + 8005240: f023 02f8 bic.w r2, r3, #248 @ 0xf8 + 8005244: 687b ldr r3, [r7, #4] + 8005246: 691b ldr r3, [r3, #16] + 8005248: 00db lsls r3, r3, #3 + 800524a: 4925 ldr r1, [pc, #148] @ (80052e0 ) + 800524c: 4313 orrs r3, r2 + 800524e: 600b str r3, [r1, #0] + 8005250: e015 b.n 800527e } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 8004fe2: 4b24 ldr r3, [pc, #144] @ (8005074 ) - 8004fe4: 2200 movs r2, #0 - 8004fe6: 601a str r2, [r3, #0] + 8005252: 4b24 ldr r3, [pc, #144] @ (80052e4 ) + 8005254: 2200 movs r2, #0 + 8005256: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004fe8: f7fc fdc0 bl 8001b6c - 8004fec: 6138 str r0, [r7, #16] + 8005258: f7fc fdc0 bl 8001ddc + 800525c: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8004fee: e008 b.n 8005002 + 800525e: e008 b.n 8005272 { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8004ff0: f7fc fdbc bl 8001b6c - 8004ff4: 4602 mov r2, r0 - 8004ff6: 693b ldr r3, [r7, #16] - 8004ff8: 1ad3 subs r3, r2, r3 - 8004ffa: 2b02 cmp r3, #2 - 8004ffc: d901 bls.n 8005002 + 8005260: f7fc fdbc bl 8001ddc + 8005264: 4602 mov r2, r0 + 8005266: 693b ldr r3, [r7, #16] + 8005268: 1ad3 subs r3, r2, r3 + 800526a: 2b02 cmp r3, #2 + 800526c: d901 bls.n 8005272 { return HAL_TIMEOUT; - 8004ffe: 2303 movs r3, #3 - 8005000: e193 b.n 800532a + 800526e: 2303 movs r3, #3 + 8005270: e193 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8005002: 4b1b ldr r3, [pc, #108] @ (8005070 ) - 8005004: 681b ldr r3, [r3, #0] - 8005006: f003 0302 and.w r3, r3, #2 - 800500a: 2b00 cmp r3, #0 - 800500c: d1f0 bne.n 8004ff0 + 8005272: 4b1b ldr r3, [pc, #108] @ (80052e0 ) + 8005274: 681b ldr r3, [r3, #0] + 8005276: f003 0302 and.w r3, r3, #2 + 800527a: 2b00 cmp r3, #0 + 800527c: d1f0 bne.n 8005260 } } } } /*------------------------------ LSI Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 800500e: 687b ldr r3, [r7, #4] - 8005010: 681b ldr r3, [r3, #0] - 8005012: f003 0308 and.w r3, r3, #8 - 8005016: 2b00 cmp r3, #0 - 8005018: d036 beq.n 8005088 + 800527e: 687b ldr r3, [r7, #4] + 8005280: 681b ldr r3, [r3, #0] + 8005282: f003 0308 and.w r3, r3, #8 + 8005286: 2b00 cmp r3, #0 + 8005288: d036 beq.n 80052f8 { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if ((RCC_OscInitStruct->LSIState) != RCC_LSI_OFF) - 800501a: 687b ldr r3, [r7, #4] - 800501c: 695b ldr r3, [r3, #20] - 800501e: 2b00 cmp r3, #0 - 8005020: d016 beq.n 8005050 + 800528a: 687b ldr r3, [r7, #4] + 800528c: 695b ldr r3, [r3, #20] + 800528e: 2b00 cmp r3, #0 + 8005290: d016 beq.n 80052c0 { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 8005022: 4b15 ldr r3, [pc, #84] @ (8005078 ) - 8005024: 2201 movs r2, #1 - 8005026: 601a str r2, [r3, #0] + 8005292: 4b15 ldr r3, [pc, #84] @ (80052e8 ) + 8005294: 2201 movs r2, #1 + 8005296: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8005028: f7fc fda0 bl 8001b6c - 800502c: 6138 str r0, [r7, #16] + 8005298: f7fc fda0 bl 8001ddc + 800529c: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 800502e: e008 b.n 8005042 + 800529e: e008 b.n 80052b2 { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 8005030: f7fc fd9c bl 8001b6c - 8005034: 4602 mov r2, r0 - 8005036: 693b ldr r3, [r7, #16] - 8005038: 1ad3 subs r3, r2, r3 - 800503a: 2b02 cmp r3, #2 - 800503c: d901 bls.n 8005042 + 80052a0: f7fc fd9c bl 8001ddc + 80052a4: 4602 mov r2, r0 + 80052a6: 693b ldr r3, [r7, #16] + 80052a8: 1ad3 subs r3, r2, r3 + 80052aa: 2b02 cmp r3, #2 + 80052ac: d901 bls.n 80052b2 { return HAL_TIMEOUT; - 800503e: 2303 movs r3, #3 - 8005040: e173 b.n 800532a + 80052ae: 2303 movs r3, #3 + 80052b0: e173 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8005042: 4b0b ldr r3, [pc, #44] @ (8005070 ) - 8005044: 6f5b ldr r3, [r3, #116] @ 0x74 - 8005046: f003 0302 and.w r3, r3, #2 - 800504a: 2b00 cmp r3, #0 - 800504c: d0f0 beq.n 8005030 - 800504e: e01b b.n 8005088 + 80052b2: 4b0b ldr r3, [pc, #44] @ (80052e0 ) + 80052b4: 6f5b ldr r3, [r3, #116] @ 0x74 + 80052b6: f003 0302 and.w r3, r3, #2 + 80052ba: 2b00 cmp r3, #0 + 80052bc: d0f0 beq.n 80052a0 + 80052be: e01b b.n 80052f8 } } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 8005050: 4b09 ldr r3, [pc, #36] @ (8005078 ) - 8005052: 2200 movs r2, #0 - 8005054: 601a str r2, [r3, #0] + 80052c0: 4b09 ldr r3, [pc, #36] @ (80052e8 ) + 80052c2: 2200 movs r2, #0 + 80052c4: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8005056: f7fc fd89 bl 8001b6c - 800505a: 6138 str r0, [r7, #16] + 80052c6: f7fc fd89 bl 8001ddc + 80052ca: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 800505c: e00e b.n 800507c + 80052cc: e00e b.n 80052ec { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 800505e: f7fc fd85 bl 8001b6c - 8005062: 4602 mov r2, r0 - 8005064: 693b ldr r3, [r7, #16] - 8005066: 1ad3 subs r3, r2, r3 - 8005068: 2b02 cmp r3, #2 - 800506a: d907 bls.n 800507c + 80052ce: f7fc fd85 bl 8001ddc + 80052d2: 4602 mov r2, r0 + 80052d4: 693b ldr r3, [r7, #16] + 80052d6: 1ad3 subs r3, r2, r3 + 80052d8: 2b02 cmp r3, #2 + 80052da: d907 bls.n 80052ec { return HAL_TIMEOUT; - 800506c: 2303 movs r3, #3 - 800506e: e15c b.n 800532a - 8005070: 40023800 .word 0x40023800 - 8005074: 42470000 .word 0x42470000 - 8005078: 42470e80 .word 0x42470e80 + 80052dc: 2303 movs r3, #3 + 80052de: e15c b.n 800559a + 80052e0: 40023800 .word 0x40023800 + 80052e4: 42470000 .word 0x42470000 + 80052e8: 42470e80 .word 0x42470e80 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 800507c: 4b8a ldr r3, [pc, #552] @ (80052a8 ) - 800507e: 6f5b ldr r3, [r3, #116] @ 0x74 - 8005080: f003 0302 and.w r3, r3, #2 - 8005084: 2b00 cmp r3, #0 - 8005086: d1ea bne.n 800505e + 80052ec: 4b8a ldr r3, [pc, #552] @ (8005518 ) + 80052ee: 6f5b ldr r3, [r3, #116] @ 0x74 + 80052f0: f003 0302 and.w r3, r3, #2 + 80052f4: 2b00 cmp r3, #0 + 80052f6: d1ea bne.n 80052ce } } } } /*------------------------------ LSE Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 8005088: 687b ldr r3, [r7, #4] - 800508a: 681b ldr r3, [r3, #0] - 800508c: f003 0304 and.w r3, r3, #4 - 8005090: 2b00 cmp r3, #0 - 8005092: f000 8097 beq.w 80051c4 + 80052f8: 687b ldr r3, [r7, #4] + 80052fa: 681b ldr r3, [r3, #0] + 80052fc: f003 0304 and.w r3, r3, #4 + 8005300: 2b00 cmp r3, #0 + 8005302: f000 8097 beq.w 8005434 { FlagStatus pwrclkchanged = RESET; - 8005096: 2300 movs r3, #0 - 8005098: 75fb strb r3, [r7, #23] + 8005306: 2300 movs r3, #0 + 8005308: 75fb strb r3, [r7, #23] /* Check the parameters */ assert_param(IS_RCC_LSE(RCC_OscInitStruct->LSEState)); /* Update LSE configuration in Backup Domain control register */ /* Requires to enable write access to Backup Domain of necessary */ if (__HAL_RCC_PWR_IS_CLK_DISABLED()) - 800509a: 4b83 ldr r3, [pc, #524] @ (80052a8 ) - 800509c: 6c1b ldr r3, [r3, #64] @ 0x40 - 800509e: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 80050a2: 2b00 cmp r3, #0 - 80050a4: d10f bne.n 80050c6 + 800530a: 4b83 ldr r3, [pc, #524] @ (8005518 ) + 800530c: 6c1b ldr r3, [r3, #64] @ 0x40 + 800530e: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 8005312: 2b00 cmp r3, #0 + 8005314: d10f bne.n 8005336 { __HAL_RCC_PWR_CLK_ENABLE(); - 80050a6: 2300 movs r3, #0 - 80050a8: 60bb str r3, [r7, #8] - 80050aa: 4b7f ldr r3, [pc, #508] @ (80052a8 ) - 80050ac: 6c1b ldr r3, [r3, #64] @ 0x40 - 80050ae: 4a7e ldr r2, [pc, #504] @ (80052a8 ) - 80050b0: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 80050b4: 6413 str r3, [r2, #64] @ 0x40 - 80050b6: 4b7c ldr r3, [pc, #496] @ (80052a8 ) - 80050b8: 6c1b ldr r3, [r3, #64] @ 0x40 - 80050ba: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 80050be: 60bb str r3, [r7, #8] - 80050c0: 68bb ldr r3, [r7, #8] + 8005316: 2300 movs r3, #0 + 8005318: 60bb str r3, [r7, #8] + 800531a: 4b7f ldr r3, [pc, #508] @ (8005518 ) + 800531c: 6c1b ldr r3, [r3, #64] @ 0x40 + 800531e: 4a7e ldr r2, [pc, #504] @ (8005518 ) + 8005320: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8005324: 6413 str r3, [r2, #64] @ 0x40 + 8005326: 4b7c ldr r3, [pc, #496] @ (8005518 ) + 8005328: 6c1b ldr r3, [r3, #64] @ 0x40 + 800532a: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800532e: 60bb str r3, [r7, #8] + 8005330: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 80050c2: 2301 movs r3, #1 - 80050c4: 75fb strb r3, [r7, #23] + 8005332: 2301 movs r3, #1 + 8005334: 75fb strb r3, [r7, #23] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80050c6: 4b79 ldr r3, [pc, #484] @ (80052ac ) - 80050c8: 681b ldr r3, [r3, #0] - 80050ca: f403 7380 and.w r3, r3, #256 @ 0x100 - 80050ce: 2b00 cmp r3, #0 - 80050d0: d118 bne.n 8005104 + 8005336: 4b79 ldr r3, [pc, #484] @ (800551c ) + 8005338: 681b ldr r3, [r3, #0] + 800533a: f403 7380 and.w r3, r3, #256 @ 0x100 + 800533e: 2b00 cmp r3, #0 + 8005340: d118 bne.n 8005374 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 80050d2: 4b76 ldr r3, [pc, #472] @ (80052ac ) - 80050d4: 681b ldr r3, [r3, #0] - 80050d6: 4a75 ldr r2, [pc, #468] @ (80052ac ) - 80050d8: f443 7380 orr.w r3, r3, #256 @ 0x100 - 80050dc: 6013 str r3, [r2, #0] + 8005342: 4b76 ldr r3, [pc, #472] @ (800551c ) + 8005344: 681b ldr r3, [r3, #0] + 8005346: 4a75 ldr r2, [pc, #468] @ (800551c ) + 8005348: f443 7380 orr.w r3, r3, #256 @ 0x100 + 800534c: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 80050de: f7fc fd45 bl 8001b6c - 80050e2: 6138 str r0, [r7, #16] + 800534e: f7fc fd45 bl 8001ddc + 8005352: 6138 str r0, [r7, #16] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80050e4: e008 b.n 80050f8 + 8005354: e008 b.n 8005368 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 80050e6: f7fc fd41 bl 8001b6c - 80050ea: 4602 mov r2, r0 - 80050ec: 693b ldr r3, [r7, #16] - 80050ee: 1ad3 subs r3, r2, r3 - 80050f0: 2b02 cmp r3, #2 - 80050f2: d901 bls.n 80050f8 + 8005356: f7fc fd41 bl 8001ddc + 800535a: 4602 mov r2, r0 + 800535c: 693b ldr r3, [r7, #16] + 800535e: 1ad3 subs r3, r2, r3 + 8005360: 2b02 cmp r3, #2 + 8005362: d901 bls.n 8005368 { return HAL_TIMEOUT; - 80050f4: 2303 movs r3, #3 - 80050f6: e118 b.n 800532a + 8005364: 2303 movs r3, #3 + 8005366: e118 b.n 800559a while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80050f8: 4b6c ldr r3, [pc, #432] @ (80052ac ) - 80050fa: 681b ldr r3, [r3, #0] - 80050fc: f403 7380 and.w r3, r3, #256 @ 0x100 - 8005100: 2b00 cmp r3, #0 - 8005102: d0f0 beq.n 80050e6 + 8005368: 4b6c ldr r3, [pc, #432] @ (800551c ) + 800536a: 681b ldr r3, [r3, #0] + 800536c: f403 7380 and.w r3, r3, #256 @ 0x100 + 8005370: 2b00 cmp r3, #0 + 8005372: d0f0 beq.n 8005356 } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8005104: 687b ldr r3, [r7, #4] - 8005106: 689b ldr r3, [r3, #8] - 8005108: 2b01 cmp r3, #1 - 800510a: d106 bne.n 800511a - 800510c: 4b66 ldr r3, [pc, #408] @ (80052a8 ) - 800510e: 6f1b ldr r3, [r3, #112] @ 0x70 - 8005110: 4a65 ldr r2, [pc, #404] @ (80052a8 ) - 8005112: f043 0301 orr.w r3, r3, #1 - 8005116: 6713 str r3, [r2, #112] @ 0x70 - 8005118: e01c b.n 8005154 - 800511a: 687b ldr r3, [r7, #4] - 800511c: 689b ldr r3, [r3, #8] - 800511e: 2b05 cmp r3, #5 - 8005120: d10c bne.n 800513c - 8005122: 4b61 ldr r3, [pc, #388] @ (80052a8 ) - 8005124: 6f1b ldr r3, [r3, #112] @ 0x70 - 8005126: 4a60 ldr r2, [pc, #384] @ (80052a8 ) - 8005128: f043 0304 orr.w r3, r3, #4 - 800512c: 6713 str r3, [r2, #112] @ 0x70 - 800512e: 4b5e ldr r3, [pc, #376] @ (80052a8 ) - 8005130: 6f1b ldr r3, [r3, #112] @ 0x70 - 8005132: 4a5d ldr r2, [pc, #372] @ (80052a8 ) - 8005134: f043 0301 orr.w r3, r3, #1 - 8005138: 6713 str r3, [r2, #112] @ 0x70 - 800513a: e00b b.n 8005154 - 800513c: 4b5a ldr r3, [pc, #360] @ (80052a8 ) - 800513e: 6f1b ldr r3, [r3, #112] @ 0x70 - 8005140: 4a59 ldr r2, [pc, #356] @ (80052a8 ) - 8005142: f023 0301 bic.w r3, r3, #1 - 8005146: 6713 str r3, [r2, #112] @ 0x70 - 8005148: 4b57 ldr r3, [pc, #348] @ (80052a8 ) - 800514a: 6f1b ldr r3, [r3, #112] @ 0x70 - 800514c: 4a56 ldr r2, [pc, #344] @ (80052a8 ) - 800514e: f023 0304 bic.w r3, r3, #4 - 8005152: 6713 str r3, [r2, #112] @ 0x70 + 8005374: 687b ldr r3, [r7, #4] + 8005376: 689b ldr r3, [r3, #8] + 8005378: 2b01 cmp r3, #1 + 800537a: d106 bne.n 800538a + 800537c: 4b66 ldr r3, [pc, #408] @ (8005518 ) + 800537e: 6f1b ldr r3, [r3, #112] @ 0x70 + 8005380: 4a65 ldr r2, [pc, #404] @ (8005518 ) + 8005382: f043 0301 orr.w r3, r3, #1 + 8005386: 6713 str r3, [r2, #112] @ 0x70 + 8005388: e01c b.n 80053c4 + 800538a: 687b ldr r3, [r7, #4] + 800538c: 689b ldr r3, [r3, #8] + 800538e: 2b05 cmp r3, #5 + 8005390: d10c bne.n 80053ac + 8005392: 4b61 ldr r3, [pc, #388] @ (8005518 ) + 8005394: 6f1b ldr r3, [r3, #112] @ 0x70 + 8005396: 4a60 ldr r2, [pc, #384] @ (8005518 ) + 8005398: f043 0304 orr.w r3, r3, #4 + 800539c: 6713 str r3, [r2, #112] @ 0x70 + 800539e: 4b5e ldr r3, [pc, #376] @ (8005518 ) + 80053a0: 6f1b ldr r3, [r3, #112] @ 0x70 + 80053a2: 4a5d ldr r2, [pc, #372] @ (8005518 ) + 80053a4: f043 0301 orr.w r3, r3, #1 + 80053a8: 6713 str r3, [r2, #112] @ 0x70 + 80053aa: e00b b.n 80053c4 + 80053ac: 4b5a ldr r3, [pc, #360] @ (8005518 ) + 80053ae: 6f1b ldr r3, [r3, #112] @ 0x70 + 80053b0: 4a59 ldr r2, [pc, #356] @ (8005518 ) + 80053b2: f023 0301 bic.w r3, r3, #1 + 80053b6: 6713 str r3, [r2, #112] @ 0x70 + 80053b8: 4b57 ldr r3, [pc, #348] @ (8005518 ) + 80053ba: 6f1b ldr r3, [r3, #112] @ 0x70 + 80053bc: 4a56 ldr r2, [pc, #344] @ (8005518 ) + 80053be: f023 0304 bic.w r3, r3, #4 + 80053c2: 6713 str r3, [r2, #112] @ 0x70 /* Check the LSE State */ if ((RCC_OscInitStruct->LSEState) != RCC_LSE_OFF) - 8005154: 687b ldr r3, [r7, #4] - 8005156: 689b ldr r3, [r3, #8] - 8005158: 2b00 cmp r3, #0 - 800515a: d015 beq.n 8005188 + 80053c4: 687b ldr r3, [r7, #4] + 80053c6: 689b ldr r3, [r3, #8] + 80053c8: 2b00 cmp r3, #0 + 80053ca: d015 beq.n 80053f8 { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 800515c: f7fc fd06 bl 8001b6c - 8005160: 6138 str r0, [r7, #16] + 80053cc: f7fc fd06 bl 8001ddc + 80053d0: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8005162: e00a b.n 800517a + 80053d2: e00a b.n 80053ea { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 8005164: f7fc fd02 bl 8001b6c - 8005168: 4602 mov r2, r0 - 800516a: 693b ldr r3, [r7, #16] - 800516c: 1ad3 subs r3, r2, r3 - 800516e: f241 3288 movw r2, #5000 @ 0x1388 - 8005172: 4293 cmp r3, r2 - 8005174: d901 bls.n 800517a + 80053d4: f7fc fd02 bl 8001ddc + 80053d8: 4602 mov r2, r0 + 80053da: 693b ldr r3, [r7, #16] + 80053dc: 1ad3 subs r3, r2, r3 + 80053de: f241 3288 movw r2, #5000 @ 0x1388 + 80053e2: 4293 cmp r3, r2 + 80053e4: d901 bls.n 80053ea { return HAL_TIMEOUT; - 8005176: 2303 movs r3, #3 - 8005178: e0d7 b.n 800532a + 80053e6: 2303 movs r3, #3 + 80053e8: e0d7 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 800517a: 4b4b ldr r3, [pc, #300] @ (80052a8 ) - 800517c: 6f1b ldr r3, [r3, #112] @ 0x70 - 800517e: f003 0302 and.w r3, r3, #2 - 8005182: 2b00 cmp r3, #0 - 8005184: d0ee beq.n 8005164 - 8005186: e014 b.n 80051b2 + 80053ea: 4b4b ldr r3, [pc, #300] @ (8005518 ) + 80053ec: 6f1b ldr r3, [r3, #112] @ 0x70 + 80053ee: f003 0302 and.w r3, r3, #2 + 80053f2: 2b00 cmp r3, #0 + 80053f4: d0ee beq.n 80053d4 + 80053f6: e014 b.n 8005422 } } else { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8005188: f7fc fcf0 bl 8001b6c - 800518c: 6138 str r0, [r7, #16] + 80053f8: f7fc fcf0 bl 8001ddc + 80053fc: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 800518e: e00a b.n 80051a6 + 80053fe: e00a b.n 8005416 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 8005190: f7fc fcec bl 8001b6c - 8005194: 4602 mov r2, r0 - 8005196: 693b ldr r3, [r7, #16] - 8005198: 1ad3 subs r3, r2, r3 - 800519a: f241 3288 movw r2, #5000 @ 0x1388 - 800519e: 4293 cmp r3, r2 - 80051a0: d901 bls.n 80051a6 + 8005400: f7fc fcec bl 8001ddc + 8005404: 4602 mov r2, r0 + 8005406: 693b ldr r3, [r7, #16] + 8005408: 1ad3 subs r3, r2, r3 + 800540a: f241 3288 movw r2, #5000 @ 0x1388 + 800540e: 4293 cmp r3, r2 + 8005410: d901 bls.n 8005416 { return HAL_TIMEOUT; - 80051a2: 2303 movs r3, #3 - 80051a4: e0c1 b.n 800532a + 8005412: 2303 movs r3, #3 + 8005414: e0c1 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 80051a6: 4b40 ldr r3, [pc, #256] @ (80052a8 ) - 80051a8: 6f1b ldr r3, [r3, #112] @ 0x70 - 80051aa: f003 0302 and.w r3, r3, #2 - 80051ae: 2b00 cmp r3, #0 - 80051b0: d1ee bne.n 8005190 + 8005416: 4b40 ldr r3, [pc, #256] @ (8005518 ) + 8005418: 6f1b ldr r3, [r3, #112] @ 0x70 + 800541a: f003 0302 and.w r3, r3, #2 + 800541e: 2b00 cmp r3, #0 + 8005420: d1ee bne.n 8005400 } } } /* Restore clock configuration if changed */ if (pwrclkchanged == SET) - 80051b2: 7dfb ldrb r3, [r7, #23] - 80051b4: 2b01 cmp r3, #1 - 80051b6: d105 bne.n 80051c4 + 8005422: 7dfb ldrb r3, [r7, #23] + 8005424: 2b01 cmp r3, #1 + 8005426: d105 bne.n 8005434 { __HAL_RCC_PWR_CLK_DISABLE(); - 80051b8: 4b3b ldr r3, [pc, #236] @ (80052a8 ) - 80051ba: 6c1b ldr r3, [r3, #64] @ 0x40 - 80051bc: 4a3a ldr r2, [pc, #232] @ (80052a8 ) - 80051be: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 - 80051c2: 6413 str r3, [r2, #64] @ 0x40 + 8005428: 4b3b ldr r3, [pc, #236] @ (8005518 ) + 800542a: 6c1b ldr r3, [r3, #64] @ 0x40 + 800542c: 4a3a ldr r2, [pc, #232] @ (8005518 ) + 800542e: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 + 8005432: 6413 str r3, [r2, #64] @ 0x40 } } /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 80051c4: 687b ldr r3, [r7, #4] - 80051c6: 699b ldr r3, [r3, #24] - 80051c8: 2b00 cmp r3, #0 - 80051ca: f000 80ad beq.w 8005328 + 8005434: 687b ldr r3, [r7, #4] + 8005436: 699b ldr r3, [r3, #24] + 8005438: 2b00 cmp r3, #0 + 800543a: f000 80ad beq.w 8005598 { /* Check if the PLL is used as system clock or not */ if (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_CFGR_SWS_PLL) - 80051ce: 4b36 ldr r3, [pc, #216] @ (80052a8 ) - 80051d0: 689b ldr r3, [r3, #8] - 80051d2: f003 030c and.w r3, r3, #12 - 80051d6: 2b08 cmp r3, #8 - 80051d8: d060 beq.n 800529c + 800543e: 4b36 ldr r3, [pc, #216] @ (8005518 ) + 8005440: 689b ldr r3, [r3, #8] + 8005442: f003 030c and.w r3, r3, #12 + 8005446: 2b08 cmp r3, #8 + 8005448: d060 beq.n 800550c { if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 80051da: 687b ldr r3, [r7, #4] - 80051dc: 699b ldr r3, [r3, #24] - 80051de: 2b02 cmp r3, #2 - 80051e0: d145 bne.n 800526e + 800544a: 687b ldr r3, [r7, #4] + 800544c: 699b ldr r3, [r3, #24] + 800544e: 2b02 cmp r3, #2 + 8005450: d145 bne.n 80054de assert_param(IS_RCC_PLLP_VALUE(RCC_OscInitStruct->PLL.PLLP)); assert_param(IS_RCC_PLLQ_VALUE(RCC_OscInitStruct->PLL.PLLQ)); assert_param(IS_RCC_PLLR_VALUE(RCC_OscInitStruct->PLL.PLLR)); /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 80051e2: 4b33 ldr r3, [pc, #204] @ (80052b0 ) - 80051e4: 2200 movs r2, #0 - 80051e6: 601a str r2, [r3, #0] + 8005452: 4b33 ldr r3, [pc, #204] @ (8005520 ) + 8005454: 2200 movs r2, #0 + 8005456: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 80051e8: f7fc fcc0 bl 8001b6c - 80051ec: 6138 str r0, [r7, #16] + 8005458: f7fc fcc0 bl 8001ddc + 800545c: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80051ee: e008 b.n 8005202 + 800545e: e008 b.n 8005472 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80051f0: f7fc fcbc bl 8001b6c - 80051f4: 4602 mov r2, r0 - 80051f6: 693b ldr r3, [r7, #16] - 80051f8: 1ad3 subs r3, r2, r3 - 80051fa: 2b02 cmp r3, #2 - 80051fc: d901 bls.n 8005202 + 8005460: f7fc fcbc bl 8001ddc + 8005464: 4602 mov r2, r0 + 8005466: 693b ldr r3, [r7, #16] + 8005468: 1ad3 subs r3, r2, r3 + 800546a: 2b02 cmp r3, #2 + 800546c: d901 bls.n 8005472 { return HAL_TIMEOUT; - 80051fe: 2303 movs r3, #3 - 8005200: e093 b.n 800532a + 800546e: 2303 movs r3, #3 + 8005470: e093 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8005202: 4b29 ldr r3, [pc, #164] @ (80052a8 ) - 8005204: 681b ldr r3, [r3, #0] - 8005206: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 800520a: 2b00 cmp r3, #0 - 800520c: d1f0 bne.n 80051f0 + 8005472: 4b29 ldr r3, [pc, #164] @ (8005518 ) + 8005474: 681b ldr r3, [r3, #0] + 8005476: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 800547a: 2b00 cmp r3, #0 + 800547c: d1f0 bne.n 8005460 } } /* Configure the main PLL clock source, multiplication and division factors. */ WRITE_REG(RCC->PLLCFGR, (RCC_OscInitStruct->PLL.PLLSource | \ - 800520e: 687b ldr r3, [r7, #4] - 8005210: 69da ldr r2, [r3, #28] - 8005212: 687b ldr r3, [r7, #4] - 8005214: 6a1b ldr r3, [r3, #32] - 8005216: 431a orrs r2, r3 - 8005218: 687b ldr r3, [r7, #4] - 800521a: 6a5b ldr r3, [r3, #36] @ 0x24 - 800521c: 019b lsls r3, r3, #6 - 800521e: 431a orrs r2, r3 - 8005220: 687b ldr r3, [r7, #4] - 8005222: 6a9b ldr r3, [r3, #40] @ 0x28 - 8005224: 085b lsrs r3, r3, #1 - 8005226: 3b01 subs r3, #1 - 8005228: 041b lsls r3, r3, #16 - 800522a: 431a orrs r2, r3 - 800522c: 687b ldr r3, [r7, #4] - 800522e: 6adb ldr r3, [r3, #44] @ 0x2c - 8005230: 061b lsls r3, r3, #24 - 8005232: 431a orrs r2, r3 - 8005234: 687b ldr r3, [r7, #4] - 8005236: 6b1b ldr r3, [r3, #48] @ 0x30 - 8005238: 071b lsls r3, r3, #28 - 800523a: 491b ldr r1, [pc, #108] @ (80052a8 ) - 800523c: 4313 orrs r3, r2 - 800523e: 604b str r3, [r1, #4] + 800547e: 687b ldr r3, [r7, #4] + 8005480: 69da ldr r2, [r3, #28] + 8005482: 687b ldr r3, [r7, #4] + 8005484: 6a1b ldr r3, [r3, #32] + 8005486: 431a orrs r2, r3 + 8005488: 687b ldr r3, [r7, #4] + 800548a: 6a5b ldr r3, [r3, #36] @ 0x24 + 800548c: 019b lsls r3, r3, #6 + 800548e: 431a orrs r2, r3 + 8005490: 687b ldr r3, [r7, #4] + 8005492: 6a9b ldr r3, [r3, #40] @ 0x28 + 8005494: 085b lsrs r3, r3, #1 + 8005496: 3b01 subs r3, #1 + 8005498: 041b lsls r3, r3, #16 + 800549a: 431a orrs r2, r3 + 800549c: 687b ldr r3, [r7, #4] + 800549e: 6adb ldr r3, [r3, #44] @ 0x2c + 80054a0: 061b lsls r3, r3, #24 + 80054a2: 431a orrs r2, r3 + 80054a4: 687b ldr r3, [r7, #4] + 80054a6: 6b1b ldr r3, [r3, #48] @ 0x30 + 80054a8: 071b lsls r3, r3, #28 + 80054aa: 491b ldr r1, [pc, #108] @ (8005518 ) + 80054ac: 4313 orrs r3, r2 + 80054ae: 604b str r3, [r1, #4] (RCC_OscInitStruct->PLL.PLLN << RCC_PLLCFGR_PLLN_Pos) | \ (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U) << RCC_PLLCFGR_PLLP_Pos) | \ (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos) | \ (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 8005240: 4b1b ldr r3, [pc, #108] @ (80052b0 ) - 8005242: 2201 movs r2, #1 - 8005244: 601a str r2, [r3, #0] + 80054b0: 4b1b ldr r3, [pc, #108] @ (8005520 ) + 80054b2: 2201 movs r2, #1 + 80054b4: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8005246: f7fc fc91 bl 8001b6c - 800524a: 6138 str r0, [r7, #16] + 80054b6: f7fc fc91 bl 8001ddc + 80054ba: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800524c: e008 b.n 8005260 + 80054bc: e008 b.n 80054d0 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 800524e: f7fc fc8d bl 8001b6c - 8005252: 4602 mov r2, r0 - 8005254: 693b ldr r3, [r7, #16] - 8005256: 1ad3 subs r3, r2, r3 - 8005258: 2b02 cmp r3, #2 - 800525a: d901 bls.n 8005260 + 80054be: f7fc fc8d bl 8001ddc + 80054c2: 4602 mov r2, r0 + 80054c4: 693b ldr r3, [r7, #16] + 80054c6: 1ad3 subs r3, r2, r3 + 80054c8: 2b02 cmp r3, #2 + 80054ca: d901 bls.n 80054d0 { return HAL_TIMEOUT; - 800525c: 2303 movs r3, #3 - 800525e: e064 b.n 800532a + 80054cc: 2303 movs r3, #3 + 80054ce: e064 b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8005260: 4b11 ldr r3, [pc, #68] @ (80052a8 ) - 8005262: 681b ldr r3, [r3, #0] - 8005264: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 8005268: 2b00 cmp r3, #0 - 800526a: d0f0 beq.n 800524e - 800526c: e05c b.n 8005328 + 80054d0: 4b11 ldr r3, [pc, #68] @ (8005518 ) + 80054d2: 681b ldr r3, [r3, #0] + 80054d4: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 80054d8: 2b00 cmp r3, #0 + 80054da: d0f0 beq.n 80054be + 80054dc: e05c b.n 8005598 } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 800526e: 4b10 ldr r3, [pc, #64] @ (80052b0 ) - 8005270: 2200 movs r2, #0 - 8005272: 601a str r2, [r3, #0] + 80054de: 4b10 ldr r3, [pc, #64] @ (8005520 ) + 80054e0: 2200 movs r2, #0 + 80054e2: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8005274: f7fc fc7a bl 8001b6c - 8005278: 6138 str r0, [r7, #16] + 80054e4: f7fc fc7a bl 8001ddc + 80054e8: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800527a: e008 b.n 800528e + 80054ea: e008 b.n 80054fe { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 800527c: f7fc fc76 bl 8001b6c - 8005280: 4602 mov r2, r0 - 8005282: 693b ldr r3, [r7, #16] - 8005284: 1ad3 subs r3, r2, r3 - 8005286: 2b02 cmp r3, #2 - 8005288: d901 bls.n 800528e + 80054ec: f7fc fc76 bl 8001ddc + 80054f0: 4602 mov r2, r0 + 80054f2: 693b ldr r3, [r7, #16] + 80054f4: 1ad3 subs r3, r2, r3 + 80054f6: 2b02 cmp r3, #2 + 80054f8: d901 bls.n 80054fe { return HAL_TIMEOUT; - 800528a: 2303 movs r3, #3 - 800528c: e04d b.n 800532a + 80054fa: 2303 movs r3, #3 + 80054fc: e04d b.n 800559a while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800528e: 4b06 ldr r3, [pc, #24] @ (80052a8 ) - 8005290: 681b ldr r3, [r3, #0] - 8005292: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 8005296: 2b00 cmp r3, #0 - 8005298: d1f0 bne.n 800527c - 800529a: e045 b.n 8005328 + 80054fe: 4b06 ldr r3, [pc, #24] @ (8005518 ) + 8005500: 681b ldr r3, [r3, #0] + 8005502: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8005506: 2b00 cmp r3, #0 + 8005508: d1f0 bne.n 80054ec + 800550a: e045 b.n 8005598 } } else { /* Check if there is a request to disable the PLL used as System clock source */ if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 800529c: 687b ldr r3, [r7, #4] - 800529e: 699b ldr r3, [r3, #24] - 80052a0: 2b01 cmp r3, #1 - 80052a2: d107 bne.n 80052b4 + 800550c: 687b ldr r3, [r7, #4] + 800550e: 699b ldr r3, [r3, #24] + 8005510: 2b01 cmp r3, #1 + 8005512: d107 bne.n 8005524 { return HAL_ERROR; - 80052a4: 2301 movs r3, #1 - 80052a6: e040 b.n 800532a - 80052a8: 40023800 .word 0x40023800 - 80052ac: 40007000 .word 0x40007000 - 80052b0: 42470060 .word 0x42470060 + 8005514: 2301 movs r3, #1 + 8005516: e040 b.n 800559a + 8005518: 40023800 .word 0x40023800 + 800551c: 40007000 .word 0x40007000 + 8005520: 42470060 .word 0x42470060 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->PLLCFGR; - 80052b4: 4b1f ldr r3, [pc, #124] @ (8005334 ) - 80052b6: 685b ldr r3, [r3, #4] - 80052b8: 60fb str r3, [r7, #12] + 8005524: 4b1f ldr r3, [pc, #124] @ (80055a4 ) + 8005526: 685b ldr r3, [r3, #4] + 8005528: 60fb str r3, [r7, #12] #if defined (RCC_PLLCFGR_PLLR) if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 80052ba: 687b ldr r3, [r7, #4] - 80052bc: 699b ldr r3, [r3, #24] - 80052be: 2b01 cmp r3, #1 - 80052c0: d030 beq.n 8005324 + 800552a: 687b ldr r3, [r7, #4] + 800552c: 699b ldr r3, [r3, #24] + 800552e: 2b01 cmp r3, #1 + 8005530: d030 beq.n 8005594 (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 80052c2: 68fb ldr r3, [r7, #12] - 80052c4: f403 0280 and.w r2, r3, #4194304 @ 0x400000 - 80052c8: 687b ldr r3, [r7, #4] - 80052ca: 69db ldr r3, [r3, #28] + 8005532: 68fb ldr r3, [r7, #12] + 8005534: f403 0280 and.w r2, r3, #4194304 @ 0x400000 + 8005538: 687b ldr r3, [r7, #4] + 800553a: 69db ldr r3, [r3, #28] if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 80052cc: 429a cmp r2, r3 - 80052ce: d129 bne.n 8005324 + 800553c: 429a cmp r2, r3 + 800553e: d129 bne.n 8005594 (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 80052d0: 68fb ldr r3, [r7, #12] - 80052d2: f003 023f and.w r2, r3, #63 @ 0x3f - 80052d6: 687b ldr r3, [r7, #4] - 80052d8: 6a1b ldr r3, [r3, #32] + 8005540: 68fb ldr r3, [r7, #12] + 8005542: f003 023f and.w r2, r3, #63 @ 0x3f + 8005546: 687b ldr r3, [r7, #4] + 8005548: 6a1b ldr r3, [r3, #32] (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 80052da: 429a cmp r2, r3 - 80052dc: d122 bne.n 8005324 + 800554a: 429a cmp r2, r3 + 800554c: d122 bne.n 8005594 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 80052de: 68fa ldr r2, [r7, #12] - 80052e0: f647 73c0 movw r3, #32704 @ 0x7fc0 - 80052e4: 4013 ands r3, r2 - 80052e6: 687a ldr r2, [r7, #4] - 80052e8: 6a52 ldr r2, [r2, #36] @ 0x24 - 80052ea: 0192 lsls r2, r2, #6 + 800554e: 68fa ldr r2, [r7, #12] + 8005550: f647 73c0 movw r3, #32704 @ 0x7fc0 + 8005554: 4013 ands r3, r2 + 8005556: 687a ldr r2, [r7, #4] + 8005558: 6a52 ldr r2, [r2, #36] @ 0x24 + 800555a: 0192 lsls r2, r2, #6 (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 80052ec: 4293 cmp r3, r2 - 80052ee: d119 bne.n 8005324 + 800555c: 4293 cmp r3, r2 + 800555e: d119 bne.n 8005594 (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 80052f0: 68fb ldr r3, [r7, #12] - 80052f2: f403 3240 and.w r2, r3, #196608 @ 0x30000 - 80052f6: 687b ldr r3, [r7, #4] - 80052f8: 6a9b ldr r3, [r3, #40] @ 0x28 - 80052fa: 085b lsrs r3, r3, #1 - 80052fc: 3b01 subs r3, #1 - 80052fe: 041b lsls r3, r3, #16 + 8005560: 68fb ldr r3, [r7, #12] + 8005562: f403 3240 and.w r2, r3, #196608 @ 0x30000 + 8005566: 687b ldr r3, [r7, #4] + 8005568: 6a9b ldr r3, [r3, #40] @ 0x28 + 800556a: 085b lsrs r3, r3, #1 + 800556c: 3b01 subs r3, #1 + 800556e: 041b lsls r3, r3, #16 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 8005300: 429a cmp r2, r3 - 8005302: d10f bne.n 8005324 + 8005570: 429a cmp r2, r3 + 8005572: d10f bne.n 8005594 (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || - 8005304: 68fb ldr r3, [r7, #12] - 8005306: f003 6270 and.w r2, r3, #251658240 @ 0xf000000 - 800530a: 687b ldr r3, [r7, #4] - 800530c: 6adb ldr r3, [r3, #44] @ 0x2c - 800530e: 061b lsls r3, r3, #24 + 8005574: 68fb ldr r3, [r7, #12] + 8005576: f003 6270 and.w r2, r3, #251658240 @ 0xf000000 + 800557a: 687b ldr r3, [r7, #4] + 800557c: 6adb ldr r3, [r3, #44] @ 0x2c + 800557e: 061b lsls r3, r3, #24 (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 8005310: 429a cmp r2, r3 - 8005312: d107 bne.n 8005324 + 8005580: 429a cmp r2, r3 + 8005582: d107 bne.n 8005594 (READ_BIT(pll_config, RCC_PLLCFGR_PLLR) != (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))) - 8005314: 68fb ldr r3, [r7, #12] - 8005316: f003 42e0 and.w r2, r3, #1879048192 @ 0x70000000 - 800531a: 687b ldr r3, [r7, #4] - 800531c: 6b1b ldr r3, [r3, #48] @ 0x30 - 800531e: 071b lsls r3, r3, #28 + 8005584: 68fb ldr r3, [r7, #12] + 8005586: f003 42e0 and.w r2, r3, #1879048192 @ 0x70000000 + 800558a: 687b ldr r3, [r7, #4] + 800558c: 6b1b ldr r3, [r3, #48] @ 0x30 + 800558e: 071b lsls r3, r3, #28 (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || - 8005320: 429a cmp r2, r3 - 8005322: d001 beq.n 8005328 + 8005590: 429a cmp r2, r3 + 8005592: d001 beq.n 8005598 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))) #endif /* RCC_PLLCFGR_PLLR */ { return HAL_ERROR; - 8005324: 2301 movs r3, #1 - 8005326: e000 b.n 800532a + 8005594: 2301 movs r3, #1 + 8005596: e000 b.n 800559a } } } } return HAL_OK; - 8005328: 2300 movs r3, #0 + 8005598: 2300 movs r3, #0 } - 800532a: 4618 mov r0, r3 - 800532c: 3718 adds r7, #24 - 800532e: 46bd mov sp, r7 - 8005330: bd80 pop {r7, pc} - 8005332: bf00 nop - 8005334: 40023800 .word 0x40023800 + 800559a: 4618 mov r0, r3 + 800559c: 3718 adds r7, #24 + 800559e: 46bd mov sp, r7 + 80055a0: bd80 pop {r7, pc} + 80055a2: bf00 nop + 80055a4: 40023800 .word 0x40023800 -08005338 : +080055a8 : * Ex: call @ref HAL_TIM_OC_DeInit() before HAL_TIM_OC_Init() * @param htim TIM Output Compare handle * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *htim) { - 8005338: b580 push {r7, lr} - 800533a: b082 sub sp, #8 - 800533c: af00 add r7, sp, #0 - 800533e: 6078 str r0, [r7, #4] + 80055a8: b580 push {r7, lr} + 80055aa: b082 sub sp, #8 + 80055ac: af00 add r7, sp, #0 + 80055ae: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 8005340: 687b ldr r3, [r7, #4] - 8005342: 2b00 cmp r3, #0 - 8005344: d101 bne.n 800534a + 80055b0: 687b ldr r3, [r7, #4] + 80055b2: 2b00 cmp r3, #0 + 80055b4: d101 bne.n 80055ba { return HAL_ERROR; - 8005346: 2301 movs r3, #1 - 8005348: e041 b.n 80053ce + 80055b6: 2301 movs r3, #1 + 80055b8: e041 b.n 800563e assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); assert_param(IS_TIM_PERIOD(htim, htim->Init.Period)); assert_param(IS_TIM_AUTORELOAD_PRELOAD(htim->Init.AutoReloadPreload)); if (htim->State == HAL_TIM_STATE_RESET) - 800534a: 687b ldr r3, [r7, #4] - 800534c: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 8005350: b2db uxtb r3, r3 - 8005352: 2b00 cmp r3, #0 - 8005354: d106 bne.n 8005364 + 80055ba: 687b ldr r3, [r7, #4] + 80055bc: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 80055c0: b2db uxtb r3, r3 + 80055c2: 2b00 cmp r3, #0 + 80055c4: d106 bne.n 80055d4 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 8005356: 687b ldr r3, [r7, #4] - 8005358: 2200 movs r2, #0 - 800535a: f883 203c strb.w r2, [r3, #60] @ 0x3c + 80055c6: 687b ldr r3, [r7, #4] + 80055c8: 2200 movs r2, #0 + 80055ca: f883 203c strb.w r2, [r3, #60] @ 0x3c } /* Init the low level hardware : GPIO, CLOCK, NVIC */ htim->OC_MspInitCallback(htim); #else /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ HAL_TIM_OC_MspInit(htim); - 800535e: 6878 ldr r0, [r7, #4] - 8005360: f7fb ff6a bl 8001238 + 80055ce: 6878 ldr r0, [r7, #4] + 80055d0: f7fb ff6a bl 80014a8 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8005364: 687b ldr r3, [r7, #4] - 8005366: 2202 movs r2, #2 - 8005368: f883 203d strb.w r2, [r3, #61] @ 0x3d + 80055d4: 687b ldr r3, [r7, #4] + 80055d6: 2202 movs r2, #2 + 80055d8: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Init the base time for the Output Compare */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 800536c: 687b ldr r3, [r7, #4] - 800536e: 681a ldr r2, [r3, #0] - 8005370: 687b ldr r3, [r7, #4] - 8005372: 3304 adds r3, #4 - 8005374: 4619 mov r1, r3 - 8005376: 4610 mov r0, r2 - 8005378: f000 f930 bl 80055dc + 80055dc: 687b ldr r3, [r7, #4] + 80055de: 681a ldr r2, [r3, #0] + 80055e0: 687b ldr r3, [r7, #4] + 80055e2: 3304 adds r3, #4 + 80055e4: 4619 mov r1, r3 + 80055e6: 4610 mov r0, r2 + 80055e8: f000 f9be bl 8005968 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 800537c: 687b ldr r3, [r7, #4] - 800537e: 2201 movs r2, #1 - 8005380: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 80055ec: 687b ldr r3, [r7, #4] + 80055ee: 2201 movs r2, #1 + 80055f0: f883 2046 strb.w r2, [r3, #70] @ 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8005384: 687b ldr r3, [r7, #4] - 8005386: 2201 movs r2, #1 - 8005388: f883 203e strb.w r2, [r3, #62] @ 0x3e - 800538c: 687b ldr r3, [r7, #4] - 800538e: 2201 movs r2, #1 - 8005390: f883 203f strb.w r2, [r3, #63] @ 0x3f - 8005394: 687b ldr r3, [r7, #4] - 8005396: 2201 movs r2, #1 - 8005398: f883 2040 strb.w r2, [r3, #64] @ 0x40 - 800539c: 687b ldr r3, [r7, #4] - 800539e: 2201 movs r2, #1 - 80053a0: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 80055f4: 687b ldr r3, [r7, #4] + 80055f6: 2201 movs r2, #1 + 80055f8: f883 203e strb.w r2, [r3, #62] @ 0x3e + 80055fc: 687b ldr r3, [r7, #4] + 80055fe: 2201 movs r2, #1 + 8005600: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8005604: 687b ldr r3, [r7, #4] + 8005606: 2201 movs r2, #1 + 8005608: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 800560c: 687b ldr r3, [r7, #4] + 800560e: 2201 movs r2, #1 + 8005610: f883 2041 strb.w r2, [r3, #65] @ 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 80053a4: 687b ldr r3, [r7, #4] - 80053a6: 2201 movs r2, #1 - 80053a8: f883 2042 strb.w r2, [r3, #66] @ 0x42 - 80053ac: 687b ldr r3, [r7, #4] - 80053ae: 2201 movs r2, #1 - 80053b0: f883 2043 strb.w r2, [r3, #67] @ 0x43 - 80053b4: 687b ldr r3, [r7, #4] - 80053b6: 2201 movs r2, #1 - 80053b8: f883 2044 strb.w r2, [r3, #68] @ 0x44 - 80053bc: 687b ldr r3, [r7, #4] - 80053be: 2201 movs r2, #1 - 80053c0: f883 2045 strb.w r2, [r3, #69] @ 0x45 + 8005614: 687b ldr r3, [r7, #4] + 8005616: 2201 movs r2, #1 + 8005618: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 800561c: 687b ldr r3, [r7, #4] + 800561e: 2201 movs r2, #1 + 8005620: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 8005624: 687b ldr r3, [r7, #4] + 8005626: 2201 movs r2, #1 + 8005628: f883 2044 strb.w r2, [r3, #68] @ 0x44 + 800562c: 687b ldr r3, [r7, #4] + 800562e: 2201 movs r2, #1 + 8005630: f883 2045 strb.w r2, [r3, #69] @ 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 80053c4: 687b ldr r3, [r7, #4] - 80053c6: 2201 movs r2, #1 - 80053c8: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005634: 687b ldr r3, [r7, #4] + 8005636: 2201 movs r2, #1 + 8005638: f883 203d strb.w r2, [r3, #61] @ 0x3d return HAL_OK; - 80053cc: 2300 movs r3, #0 + 800563c: 2300 movs r3, #0 } - 80053ce: 4618 mov r0, r3 - 80053d0: 3708 adds r7, #8 - 80053d2: 46bd mov sp, r7 - 80053d4: bd80 pop {r7, pc} + 800563e: 4618 mov r0, r3 + 8005640: 3708 adds r7, #8 + 8005642: 46bd mov sp, r7 + 8005644: bd80 pop {r7, pc} -080053d6 : +08005646 : * @param htim TIM Encoder Interface handle * @param sConfig TIM Encoder Interface configuration structure * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *htim, const TIM_Encoder_InitTypeDef *sConfig) { - 80053d6: b580 push {r7, lr} - 80053d8: b086 sub sp, #24 - 80053da: af00 add r7, sp, #0 - 80053dc: 6078 str r0, [r7, #4] - 80053de: 6039 str r1, [r7, #0] + 8005646: b580 push {r7, lr} + 8005648: b086 sub sp, #24 + 800564a: af00 add r7, sp, #0 + 800564c: 6078 str r0, [r7, #4] + 800564e: 6039 str r1, [r7, #0] uint32_t tmpsmcr; uint32_t tmpccmr1; uint32_t tmpccer; /* Check the TIM handle allocation */ if (htim == NULL) - 80053e0: 687b ldr r3, [r7, #4] - 80053e2: 2b00 cmp r3, #0 - 80053e4: d101 bne.n 80053ea + 8005650: 687b ldr r3, [r7, #4] + 8005652: 2b00 cmp r3, #0 + 8005654: d101 bne.n 800565a { return HAL_ERROR; - 80053e6: 2301 movs r3, #1 - 80053e8: e097 b.n 800551a + 8005656: 2301 movs r3, #1 + 8005658: e097 b.n 800578a assert_param(IS_TIM_IC_PRESCALER(sConfig->IC2Prescaler)); assert_param(IS_TIM_IC_FILTER(sConfig->IC1Filter)); assert_param(IS_TIM_IC_FILTER(sConfig->IC2Filter)); assert_param(IS_TIM_PERIOD(htim, htim->Init.Period)); if (htim->State == HAL_TIM_STATE_RESET) - 80053ea: 687b ldr r3, [r7, #4] - 80053ec: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 80053f0: b2db uxtb r3, r3 - 80053f2: 2b00 cmp r3, #0 - 80053f4: d106 bne.n 8005404 + 800565a: 687b ldr r3, [r7, #4] + 800565c: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 8005660: b2db uxtb r3, r3 + 8005662: 2b00 cmp r3, #0 + 8005664: d106 bne.n 8005674 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 80053f6: 687b ldr r3, [r7, #4] - 80053f8: 2200 movs r2, #0 - 80053fa: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8005666: 687b ldr r3, [r7, #4] + 8005668: 2200 movs r2, #0 + 800566a: f883 203c strb.w r2, [r3, #60] @ 0x3c } /* Init the low level hardware : GPIO, CLOCK, NVIC */ htim->Encoder_MspInitCallback(htim); #else /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ HAL_TIM_Encoder_MspInit(htim); - 80053fe: 6878 ldr r0, [r7, #4] - 8005400: f7fb ff3a bl 8001278 + 800566e: 6878 ldr r0, [r7, #4] + 8005670: f7fb ff3a bl 80014e8 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8005404: 687b ldr r3, [r7, #4] - 8005406: 2202 movs r2, #2 - 8005408: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005674: 687b ldr r3, [r7, #4] + 8005676: 2202 movs r2, #2 + 8005678: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Reset the SMS and ECE bits */ htim->Instance->SMCR &= ~(TIM_SMCR_SMS | TIM_SMCR_ECE); - 800540c: 687b ldr r3, [r7, #4] - 800540e: 681b ldr r3, [r3, #0] - 8005410: 689b ldr r3, [r3, #8] - 8005412: 687a ldr r2, [r7, #4] - 8005414: 6812 ldr r2, [r2, #0] - 8005416: f423 4380 bic.w r3, r3, #16384 @ 0x4000 - 800541a: f023 0307 bic.w r3, r3, #7 - 800541e: 6093 str r3, [r2, #8] + 800567c: 687b ldr r3, [r7, #4] + 800567e: 681b ldr r3, [r3, #0] + 8005680: 689b ldr r3, [r3, #8] + 8005682: 687a ldr r2, [r7, #4] + 8005684: 6812 ldr r2, [r2, #0] + 8005686: f423 4380 bic.w r3, r3, #16384 @ 0x4000 + 800568a: f023 0307 bic.w r3, r3, #7 + 800568e: 6093 str r3, [r2, #8] /* Configure the Time base in the Encoder Mode */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 8005420: 687b ldr r3, [r7, #4] - 8005422: 681a ldr r2, [r3, #0] - 8005424: 687b ldr r3, [r7, #4] - 8005426: 3304 adds r3, #4 - 8005428: 4619 mov r1, r3 - 800542a: 4610 mov r0, r2 - 800542c: f000 f8d6 bl 80055dc + 8005690: 687b ldr r3, [r7, #4] + 8005692: 681a ldr r2, [r3, #0] + 8005694: 687b ldr r3, [r7, #4] + 8005696: 3304 adds r3, #4 + 8005698: 4619 mov r1, r3 + 800569a: 4610 mov r0, r2 + 800569c: f000 f964 bl 8005968 /* Get the TIMx SMCR register value */ tmpsmcr = htim->Instance->SMCR; - 8005430: 687b ldr r3, [r7, #4] - 8005432: 681b ldr r3, [r3, #0] - 8005434: 689b ldr r3, [r3, #8] - 8005436: 617b str r3, [r7, #20] + 80056a0: 687b ldr r3, [r7, #4] + 80056a2: 681b ldr r3, [r3, #0] + 80056a4: 689b ldr r3, [r3, #8] + 80056a6: 617b str r3, [r7, #20] /* Get the TIMx CCMR1 register value */ tmpccmr1 = htim->Instance->CCMR1; - 8005438: 687b ldr r3, [r7, #4] - 800543a: 681b ldr r3, [r3, #0] - 800543c: 699b ldr r3, [r3, #24] - 800543e: 613b str r3, [r7, #16] + 80056a8: 687b ldr r3, [r7, #4] + 80056aa: 681b ldr r3, [r3, #0] + 80056ac: 699b ldr r3, [r3, #24] + 80056ae: 613b str r3, [r7, #16] /* Get the TIMx CCER register value */ tmpccer = htim->Instance->CCER; - 8005440: 687b ldr r3, [r7, #4] - 8005442: 681b ldr r3, [r3, #0] - 8005444: 6a1b ldr r3, [r3, #32] - 8005446: 60fb str r3, [r7, #12] + 80056b0: 687b ldr r3, [r7, #4] + 80056b2: 681b ldr r3, [r3, #0] + 80056b4: 6a1b ldr r3, [r3, #32] + 80056b6: 60fb str r3, [r7, #12] /* Set the encoder Mode */ tmpsmcr |= sConfig->EncoderMode; - 8005448: 683b ldr r3, [r7, #0] - 800544a: 681b ldr r3, [r3, #0] - 800544c: 697a ldr r2, [r7, #20] - 800544e: 4313 orrs r3, r2 - 8005450: 617b str r3, [r7, #20] + 80056b8: 683b ldr r3, [r7, #0] + 80056ba: 681b ldr r3, [r3, #0] + 80056bc: 697a ldr r2, [r7, #20] + 80056be: 4313 orrs r3, r2 + 80056c0: 617b str r3, [r7, #20] /* Select the Capture Compare 1 and the Capture Compare 2 as input */ tmpccmr1 &= ~(TIM_CCMR1_CC1S | TIM_CCMR1_CC2S); - 8005452: 693b ldr r3, [r7, #16] - 8005454: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8005458: f023 0303 bic.w r3, r3, #3 - 800545c: 613b str r3, [r7, #16] + 80056c2: 693b ldr r3, [r7, #16] + 80056c4: f423 7340 bic.w r3, r3, #768 @ 0x300 + 80056c8: f023 0303 bic.w r3, r3, #3 + 80056cc: 613b str r3, [r7, #16] tmpccmr1 |= (sConfig->IC1Selection | (sConfig->IC2Selection << 8U)); - 800545e: 683b ldr r3, [r7, #0] - 8005460: 689a ldr r2, [r3, #8] - 8005462: 683b ldr r3, [r7, #0] - 8005464: 699b ldr r3, [r3, #24] - 8005466: 021b lsls r3, r3, #8 - 8005468: 4313 orrs r3, r2 - 800546a: 693a ldr r2, [r7, #16] - 800546c: 4313 orrs r3, r2 - 800546e: 613b str r3, [r7, #16] + 80056ce: 683b ldr r3, [r7, #0] + 80056d0: 689a ldr r2, [r3, #8] + 80056d2: 683b ldr r3, [r7, #0] + 80056d4: 699b ldr r3, [r3, #24] + 80056d6: 021b lsls r3, r3, #8 + 80056d8: 4313 orrs r3, r2 + 80056da: 693a ldr r2, [r7, #16] + 80056dc: 4313 orrs r3, r2 + 80056de: 613b str r3, [r7, #16] /* Set the Capture Compare 1 and the Capture Compare 2 prescalers and filters */ tmpccmr1 &= ~(TIM_CCMR1_IC1PSC | TIM_CCMR1_IC2PSC); - 8005470: 693b ldr r3, [r7, #16] - 8005472: f423 6340 bic.w r3, r3, #3072 @ 0xc00 - 8005476: f023 030c bic.w r3, r3, #12 - 800547a: 613b str r3, [r7, #16] + 80056e0: 693b ldr r3, [r7, #16] + 80056e2: f423 6340 bic.w r3, r3, #3072 @ 0xc00 + 80056e6: f023 030c bic.w r3, r3, #12 + 80056ea: 613b str r3, [r7, #16] tmpccmr1 &= ~(TIM_CCMR1_IC1F | TIM_CCMR1_IC2F); - 800547c: 693b ldr r3, [r7, #16] - 800547e: f423 4370 bic.w r3, r3, #61440 @ 0xf000 - 8005482: f023 03f0 bic.w r3, r3, #240 @ 0xf0 - 8005486: 613b str r3, [r7, #16] + 80056ec: 693b ldr r3, [r7, #16] + 80056ee: f423 4370 bic.w r3, r3, #61440 @ 0xf000 + 80056f2: f023 03f0 bic.w r3, r3, #240 @ 0xf0 + 80056f6: 613b str r3, [r7, #16] tmpccmr1 |= sConfig->IC1Prescaler | (sConfig->IC2Prescaler << 8U); - 8005488: 683b ldr r3, [r7, #0] - 800548a: 68da ldr r2, [r3, #12] - 800548c: 683b ldr r3, [r7, #0] - 800548e: 69db ldr r3, [r3, #28] - 8005490: 021b lsls r3, r3, #8 - 8005492: 4313 orrs r3, r2 - 8005494: 693a ldr r2, [r7, #16] - 8005496: 4313 orrs r3, r2 - 8005498: 613b str r3, [r7, #16] + 80056f8: 683b ldr r3, [r7, #0] + 80056fa: 68da ldr r2, [r3, #12] + 80056fc: 683b ldr r3, [r7, #0] + 80056fe: 69db ldr r3, [r3, #28] + 8005700: 021b lsls r3, r3, #8 + 8005702: 4313 orrs r3, r2 + 8005704: 693a ldr r2, [r7, #16] + 8005706: 4313 orrs r3, r2 + 8005708: 613b str r3, [r7, #16] tmpccmr1 |= (sConfig->IC1Filter << 4U) | (sConfig->IC2Filter << 12U); - 800549a: 683b ldr r3, [r7, #0] - 800549c: 691b ldr r3, [r3, #16] - 800549e: 011a lsls r2, r3, #4 - 80054a0: 683b ldr r3, [r7, #0] - 80054a2: 6a1b ldr r3, [r3, #32] - 80054a4: 031b lsls r3, r3, #12 - 80054a6: 4313 orrs r3, r2 - 80054a8: 693a ldr r2, [r7, #16] - 80054aa: 4313 orrs r3, r2 - 80054ac: 613b str r3, [r7, #16] + 800570a: 683b ldr r3, [r7, #0] + 800570c: 691b ldr r3, [r3, #16] + 800570e: 011a lsls r2, r3, #4 + 8005710: 683b ldr r3, [r7, #0] + 8005712: 6a1b ldr r3, [r3, #32] + 8005714: 031b lsls r3, r3, #12 + 8005716: 4313 orrs r3, r2 + 8005718: 693a ldr r2, [r7, #16] + 800571a: 4313 orrs r3, r2 + 800571c: 613b str r3, [r7, #16] /* Set the TI1 and the TI2 Polarities */ tmpccer &= ~(TIM_CCER_CC1P | TIM_CCER_CC2P); - 80054ae: 68fb ldr r3, [r7, #12] - 80054b0: f023 0322 bic.w r3, r3, #34 @ 0x22 - 80054b4: 60fb str r3, [r7, #12] + 800571e: 68fb ldr r3, [r7, #12] + 8005720: f023 0322 bic.w r3, r3, #34 @ 0x22 + 8005724: 60fb str r3, [r7, #12] tmpccer &= ~(TIM_CCER_CC1NP | TIM_CCER_CC2NP); - 80054b6: 68fb ldr r3, [r7, #12] - 80054b8: f023 0388 bic.w r3, r3, #136 @ 0x88 - 80054bc: 60fb str r3, [r7, #12] + 8005726: 68fb ldr r3, [r7, #12] + 8005728: f023 0388 bic.w r3, r3, #136 @ 0x88 + 800572c: 60fb str r3, [r7, #12] tmpccer |= sConfig->IC1Polarity | (sConfig->IC2Polarity << 4U); - 80054be: 683b ldr r3, [r7, #0] - 80054c0: 685a ldr r2, [r3, #4] - 80054c2: 683b ldr r3, [r7, #0] - 80054c4: 695b ldr r3, [r3, #20] - 80054c6: 011b lsls r3, r3, #4 - 80054c8: 4313 orrs r3, r2 - 80054ca: 68fa ldr r2, [r7, #12] - 80054cc: 4313 orrs r3, r2 - 80054ce: 60fb str r3, [r7, #12] + 800572e: 683b ldr r3, [r7, #0] + 8005730: 685a ldr r2, [r3, #4] + 8005732: 683b ldr r3, [r7, #0] + 8005734: 695b ldr r3, [r3, #20] + 8005736: 011b lsls r3, r3, #4 + 8005738: 4313 orrs r3, r2 + 800573a: 68fa ldr r2, [r7, #12] + 800573c: 4313 orrs r3, r2 + 800573e: 60fb str r3, [r7, #12] /* Write to TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 80054d0: 687b ldr r3, [r7, #4] - 80054d2: 681b ldr r3, [r3, #0] - 80054d4: 697a ldr r2, [r7, #20] - 80054d6: 609a str r2, [r3, #8] + 8005740: 687b ldr r3, [r7, #4] + 8005742: 681b ldr r3, [r3, #0] + 8005744: 697a ldr r2, [r7, #20] + 8005746: 609a str r2, [r3, #8] /* Write to TIMx CCMR1 */ htim->Instance->CCMR1 = tmpccmr1; - 80054d8: 687b ldr r3, [r7, #4] - 80054da: 681b ldr r3, [r3, #0] - 80054dc: 693a ldr r2, [r7, #16] - 80054de: 619a str r2, [r3, #24] + 8005748: 687b ldr r3, [r7, #4] + 800574a: 681b ldr r3, [r3, #0] + 800574c: 693a ldr r2, [r7, #16] + 800574e: 619a str r2, [r3, #24] /* Write to TIMx CCER */ htim->Instance->CCER = tmpccer; - 80054e0: 687b ldr r3, [r7, #4] - 80054e2: 681b ldr r3, [r3, #0] - 80054e4: 68fa ldr r2, [r7, #12] - 80054e6: 621a str r2, [r3, #32] + 8005750: 687b ldr r3, [r7, #4] + 8005752: 681b ldr r3, [r3, #0] + 8005754: 68fa ldr r2, [r7, #12] + 8005756: 621a str r2, [r3, #32] /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 80054e8: 687b ldr r3, [r7, #4] - 80054ea: 2201 movs r2, #1 - 80054ec: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 8005758: 687b ldr r3, [r7, #4] + 800575a: 2201 movs r2, #1 + 800575c: f883 2046 strb.w r2, [r3, #70] @ 0x46 /* Set the TIM channels state */ TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_READY); - 80054f0: 687b ldr r3, [r7, #4] - 80054f2: 2201 movs r2, #1 - 80054f4: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8005760: 687b ldr r3, [r7, #4] + 8005762: 2201 movs r2, #1 + 8005764: f883 203e strb.w r2, [r3, #62] @ 0x3e TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_READY); - 80054f8: 687b ldr r3, [r7, #4] - 80054fa: 2201 movs r2, #1 - 80054fc: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8005768: 687b ldr r3, [r7, #4] + 800576a: 2201 movs r2, #1 + 800576c: f883 203f strb.w r2, [r3, #63] @ 0x3f TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_READY); - 8005500: 687b ldr r3, [r7, #4] - 8005502: 2201 movs r2, #1 - 8005504: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8005770: 687b ldr r3, [r7, #4] + 8005772: 2201 movs r2, #1 + 8005774: f883 2042 strb.w r2, [r3, #66] @ 0x42 TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_READY); - 8005508: 687b ldr r3, [r7, #4] - 800550a: 2201 movs r2, #1 - 800550c: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 8005778: 687b ldr r3, [r7, #4] + 800577a: 2201 movs r2, #1 + 800577c: f883 2043 strb.w r2, [r3, #67] @ 0x43 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 8005510: 687b ldr r3, [r7, #4] - 8005512: 2201 movs r2, #1 - 8005514: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005780: 687b ldr r3, [r7, #4] + 8005782: 2201 movs r2, #1 + 8005784: f883 203d strb.w r2, [r3, #61] @ 0x3d return HAL_OK; - 8005518: 2300 movs r3, #0 + 8005788: 2300 movs r3, #0 } - 800551a: 4618 mov r0, r3 - 800551c: 3718 adds r7, #24 - 800551e: 46bd mov sp, r7 - 8005520: bd80 pop {r7, pc} + 800578a: 4618 mov r0, r3 + 800578c: 3718 adds r7, #24 + 800578e: 46bd mov sp, r7 + 8005790: bd80 pop {r7, pc} + +08005792 : + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL: TIM Channel 1 and TIM Channel 2 are selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + 8005792: b580 push {r7, lr} + 8005794: b084 sub sp, #16 + 8005796: af00 add r7, sp, #0 + 8005798: 6078 str r0, [r7, #4] + 800579a: 6039 str r1, [r7, #0] + HAL_TIM_ChannelStateTypeDef channel_1_state = TIM_CHANNEL_STATE_GET(htim, TIM_CHANNEL_1); + 800579c: 687b ldr r3, [r7, #4] + 800579e: f893 303e ldrb.w r3, [r3, #62] @ 0x3e + 80057a2: 73fb strb r3, [r7, #15] + HAL_TIM_ChannelStateTypeDef channel_2_state = TIM_CHANNEL_STATE_GET(htim, TIM_CHANNEL_2); + 80057a4: 687b ldr r3, [r7, #4] + 80057a6: f893 303f ldrb.w r3, [r3, #63] @ 0x3f + 80057aa: 73bb strb r3, [r7, #14] + HAL_TIM_ChannelStateTypeDef complementary_channel_1_state = TIM_CHANNEL_N_STATE_GET(htim, TIM_CHANNEL_1); + 80057ac: 687b ldr r3, [r7, #4] + 80057ae: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 80057b2: 737b strb r3, [r7, #13] + HAL_TIM_ChannelStateTypeDef complementary_channel_2_state = TIM_CHANNEL_N_STATE_GET(htim, TIM_CHANNEL_2); + 80057b4: 687b ldr r3, [r7, #4] + 80057b6: f893 3043 ldrb.w r3, [r3, #67] @ 0x43 + 80057ba: 733b strb r3, [r7, #12] + + /* Check the parameters */ + assert_param(IS_TIM_ENCODER_INTERFACE_INSTANCE(htim->Instance)); + + /* Set the TIM channel(s) state */ + if (Channel == TIM_CHANNEL_1) + 80057bc: 683b ldr r3, [r7, #0] + 80057be: 2b00 cmp r3, #0 + 80057c0: d110 bne.n 80057e4 + { + if ((channel_1_state != HAL_TIM_CHANNEL_STATE_READY) + 80057c2: 7bfb ldrb r3, [r7, #15] + 80057c4: 2b01 cmp r3, #1 + 80057c6: d102 bne.n 80057ce + || (complementary_channel_1_state != HAL_TIM_CHANNEL_STATE_READY)) + 80057c8: 7b7b ldrb r3, [r7, #13] + 80057ca: 2b01 cmp r3, #1 + 80057cc: d001 beq.n 80057d2 + { + return HAL_ERROR; + 80057ce: 2301 movs r3, #1 + 80057d0: e069 b.n 80058a6 + } + else + { + TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_BUSY); + 80057d2: 687b ldr r3, [r7, #4] + 80057d4: 2202 movs r2, #2 + 80057d6: f883 203e strb.w r2, [r3, #62] @ 0x3e + TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_BUSY); + 80057da: 687b ldr r3, [r7, #4] + 80057dc: 2202 movs r2, #2 + 80057de: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80057e2: e031 b.n 8005848 + } + } + else if (Channel == TIM_CHANNEL_2) + 80057e4: 683b ldr r3, [r7, #0] + 80057e6: 2b04 cmp r3, #4 + 80057e8: d110 bne.n 800580c + { + if ((channel_2_state != HAL_TIM_CHANNEL_STATE_READY) + 80057ea: 7bbb ldrb r3, [r7, #14] + 80057ec: 2b01 cmp r3, #1 + 80057ee: d102 bne.n 80057f6 + || (complementary_channel_2_state != HAL_TIM_CHANNEL_STATE_READY)) + 80057f0: 7b3b ldrb r3, [r7, #12] + 80057f2: 2b01 cmp r3, #1 + 80057f4: d001 beq.n 80057fa + { + return HAL_ERROR; + 80057f6: 2301 movs r3, #1 + 80057f8: e055 b.n 80058a6 + } + else + { + TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_BUSY); + 80057fa: 687b ldr r3, [r7, #4] + 80057fc: 2202 movs r2, #2 + 80057fe: f883 203f strb.w r2, [r3, #63] @ 0x3f + TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_BUSY); + 8005802: 687b ldr r3, [r7, #4] + 8005804: 2202 movs r2, #2 + 8005806: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 800580a: e01d b.n 8005848 + } + } + else + { + if ((channel_1_state != HAL_TIM_CHANNEL_STATE_READY) + 800580c: 7bfb ldrb r3, [r7, #15] + 800580e: 2b01 cmp r3, #1 + 8005810: d108 bne.n 8005824 + || (channel_2_state != HAL_TIM_CHANNEL_STATE_READY) + 8005812: 7bbb ldrb r3, [r7, #14] + 8005814: 2b01 cmp r3, #1 + 8005816: d105 bne.n 8005824 + || (complementary_channel_1_state != HAL_TIM_CHANNEL_STATE_READY) + 8005818: 7b7b ldrb r3, [r7, #13] + 800581a: 2b01 cmp r3, #1 + 800581c: d102 bne.n 8005824 + || (complementary_channel_2_state != HAL_TIM_CHANNEL_STATE_READY)) + 800581e: 7b3b ldrb r3, [r7, #12] + 8005820: 2b01 cmp r3, #1 + 8005822: d001 beq.n 8005828 + { + return HAL_ERROR; + 8005824: 2301 movs r3, #1 + 8005826: e03e b.n 80058a6 + } + else + { + TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_BUSY); + 8005828: 687b ldr r3, [r7, #4] + 800582a: 2202 movs r2, #2 + 800582c: f883 203e strb.w r2, [r3, #62] @ 0x3e + TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_BUSY); + 8005830: 687b ldr r3, [r7, #4] + 8005832: 2202 movs r2, #2 + 8005834: f883 203f strb.w r2, [r3, #63] @ 0x3f + TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_BUSY); + 8005838: 687b ldr r3, [r7, #4] + 800583a: 2202 movs r2, #2 + 800583c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_BUSY); + 8005840: 687b ldr r3, [r7, #4] + 8005842: 2202 movs r2, #2 + 8005844: f883 2043 strb.w r2, [r3, #67] @ 0x43 + } + } + + /* Enable the encoder interface channels */ + switch (Channel) + 8005848: 683b ldr r3, [r7, #0] + 800584a: 2b00 cmp r3, #0 + 800584c: d003 beq.n 8005856 + 800584e: 683b ldr r3, [r7, #0] + 8005850: 2b04 cmp r3, #4 + 8005852: d008 beq.n 8005866 + 8005854: e00f b.n 8005876 + { + case TIM_CHANNEL_1: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + 8005856: 687b ldr r3, [r7, #4] + 8005858: 681b ldr r3, [r3, #0] + 800585a: 2201 movs r2, #1 + 800585c: 2100 movs r1, #0 + 800585e: 4618 mov r0, r3 + 8005860: f000 fad8 bl 8005e14 + break; + 8005864: e016 b.n 8005894 + } + + case TIM_CHANNEL_2: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + 8005866: 687b ldr r3, [r7, #4] + 8005868: 681b ldr r3, [r3, #0] + 800586a: 2201 movs r2, #1 + 800586c: 2104 movs r1, #4 + 800586e: 4618 mov r0, r3 + 8005870: f000 fad0 bl 8005e14 + break; + 8005874: e00e b.n 8005894 + } + + default : + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + 8005876: 687b ldr r3, [r7, #4] + 8005878: 681b ldr r3, [r3, #0] + 800587a: 2201 movs r2, #1 + 800587c: 2100 movs r1, #0 + 800587e: 4618 mov r0, r3 + 8005880: f000 fac8 bl 8005e14 + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + 8005884: 687b ldr r3, [r7, #4] + 8005886: 681b ldr r3, [r3, #0] + 8005888: 2201 movs r2, #1 + 800588a: 2104 movs r1, #4 + 800588c: 4618 mov r0, r3 + 800588e: f000 fac1 bl 8005e14 + break; + 8005892: bf00 nop + } + } + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + 8005894: 687b ldr r3, [r7, #4] + 8005896: 681b ldr r3, [r3, #0] + 8005898: 681a ldr r2, [r3, #0] + 800589a: 687b ldr r3, [r7, #4] + 800589c: 681b ldr r3, [r3, #0] + 800589e: f042 0201 orr.w r2, r2, #1 + 80058a2: 601a str r2, [r3, #0] + + /* Return function status */ + return HAL_OK; + 80058a4: 2300 movs r3, #0 +} + 80058a6: 4618 mov r0, r3 + 80058a8: 3710 adds r7, #16 + 80058aa: 46bd mov sp, r7 + 80058ac: bd80 pop {r7, pc} ... -08005524 : +080058b0 : * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *htim, const TIM_OC_InitTypeDef *sConfig, uint32_t Channel) { - 8005524: b580 push {r7, lr} - 8005526: b086 sub sp, #24 - 8005528: af00 add r7, sp, #0 - 800552a: 60f8 str r0, [r7, #12] - 800552c: 60b9 str r1, [r7, #8] - 800552e: 607a str r2, [r7, #4] + 80058b0: b580 push {r7, lr} + 80058b2: b086 sub sp, #24 + 80058b4: af00 add r7, sp, #0 + 80058b6: 60f8 str r0, [r7, #12] + 80058b8: 60b9 str r1, [r7, #8] + 80058ba: 607a str r2, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 8005530: 2300 movs r3, #0 - 8005532: 75fb strb r3, [r7, #23] + 80058bc: 2300 movs r3, #0 + 80058be: 75fb strb r3, [r7, #23] assert_param(IS_TIM_CHANNELS(Channel)); assert_param(IS_TIM_OC_MODE(sConfig->OCMode)); assert_param(IS_TIM_OC_POLARITY(sConfig->OCPolarity)); /* Process Locked */ __HAL_LOCK(htim); - 8005534: 68fb ldr r3, [r7, #12] - 8005536: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 800553a: 2b01 cmp r3, #1 - 800553c: d101 bne.n 8005542 - 800553e: 2302 movs r3, #2 - 8005540: e048 b.n 80055d4 - 8005542: 68fb ldr r3, [r7, #12] - 8005544: 2201 movs r2, #1 - 8005546: f883 203c strb.w r2, [r3, #60] @ 0x3c + 80058c0: 68fb ldr r3, [r7, #12] + 80058c2: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 80058c6: 2b01 cmp r3, #1 + 80058c8: d101 bne.n 80058ce + 80058ca: 2302 movs r3, #2 + 80058cc: e048 b.n 8005960 + 80058ce: 68fb ldr r3, [r7, #12] + 80058d0: 2201 movs r2, #1 + 80058d2: f883 203c strb.w r2, [r3, #60] @ 0x3c switch (Channel) - 800554a: 687b ldr r3, [r7, #4] - 800554c: 2b0c cmp r3, #12 - 800554e: d839 bhi.n 80055c4 - 8005550: a201 add r2, pc, #4 @ (adr r2, 8005558 ) - 8005552: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8005556: bf00 nop - 8005558: 0800558d .word 0x0800558d - 800555c: 080055c5 .word 0x080055c5 - 8005560: 080055c5 .word 0x080055c5 - 8005564: 080055c5 .word 0x080055c5 - 8005568: 0800559b .word 0x0800559b - 800556c: 080055c5 .word 0x080055c5 - 8005570: 080055c5 .word 0x080055c5 - 8005574: 080055c5 .word 0x080055c5 - 8005578: 080055a9 .word 0x080055a9 - 800557c: 080055c5 .word 0x080055c5 - 8005580: 080055c5 .word 0x080055c5 - 8005584: 080055c5 .word 0x080055c5 - 8005588: 080055b7 .word 0x080055b7 + 80058d6: 687b ldr r3, [r7, #4] + 80058d8: 2b0c cmp r3, #12 + 80058da: d839 bhi.n 8005950 + 80058dc: a201 add r2, pc, #4 @ (adr r2, 80058e4 ) + 80058de: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80058e2: bf00 nop + 80058e4: 08005919 .word 0x08005919 + 80058e8: 08005951 .word 0x08005951 + 80058ec: 08005951 .word 0x08005951 + 80058f0: 08005951 .word 0x08005951 + 80058f4: 08005927 .word 0x08005927 + 80058f8: 08005951 .word 0x08005951 + 80058fc: 08005951 .word 0x08005951 + 8005900: 08005951 .word 0x08005951 + 8005904: 08005935 .word 0x08005935 + 8005908: 08005951 .word 0x08005951 + 800590c: 08005951 .word 0x08005951 + 8005910: 08005951 .word 0x08005951 + 8005914: 08005943 .word 0x08005943 { /* Check the parameters */ assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); /* Configure the TIM Channel 1 in Output Compare */ TIM_OC1_SetConfig(htim->Instance, sConfig); - 800558c: 68fb ldr r3, [r7, #12] - 800558e: 681b ldr r3, [r3, #0] - 8005590: 68b9 ldr r1, [r7, #8] - 8005592: 4618 mov r0, r3 - 8005594: f000 f8c8 bl 8005728 + 8005918: 68fb ldr r3, [r7, #12] + 800591a: 681b ldr r3, [r3, #0] + 800591c: 68b9 ldr r1, [r7, #8] + 800591e: 4618 mov r0, r3 + 8005920: f000 f8c8 bl 8005ab4 break; - 8005598: e017 b.n 80055ca + 8005924: e017 b.n 8005956 { /* Check the parameters */ assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); /* Configure the TIM Channel 2 in Output Compare */ TIM_OC2_SetConfig(htim->Instance, sConfig); - 800559a: 68fb ldr r3, [r7, #12] - 800559c: 681b ldr r3, [r3, #0] - 800559e: 68b9 ldr r1, [r7, #8] - 80055a0: 4618 mov r0, r3 - 80055a2: f000 f931 bl 8005808 + 8005926: 68fb ldr r3, [r7, #12] + 8005928: 681b ldr r3, [r3, #0] + 800592a: 68b9 ldr r1, [r7, #8] + 800592c: 4618 mov r0, r3 + 800592e: f000 f931 bl 8005b94 break; - 80055a6: e010 b.n 80055ca + 8005932: e010 b.n 8005956 { /* Check the parameters */ assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); /* Configure the TIM Channel 3 in Output Compare */ TIM_OC3_SetConfig(htim->Instance, sConfig); - 80055a8: 68fb ldr r3, [r7, #12] - 80055aa: 681b ldr r3, [r3, #0] - 80055ac: 68b9 ldr r1, [r7, #8] - 80055ae: 4618 mov r0, r3 - 80055b0: f000 f9a0 bl 80058f4 + 8005934: 68fb ldr r3, [r7, #12] + 8005936: 681b ldr r3, [r3, #0] + 8005938: 68b9 ldr r1, [r7, #8] + 800593a: 4618 mov r0, r3 + 800593c: f000 f9a0 bl 8005c80 break; - 80055b4: e009 b.n 80055ca + 8005940: e009 b.n 8005956 { /* Check the parameters */ assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); /* Configure the TIM Channel 4 in Output Compare */ TIM_OC4_SetConfig(htim->Instance, sConfig); - 80055b6: 68fb ldr r3, [r7, #12] - 80055b8: 681b ldr r3, [r3, #0] - 80055ba: 68b9 ldr r1, [r7, #8] - 80055bc: 4618 mov r0, r3 - 80055be: f000 fa0d bl 80059dc + 8005942: 68fb ldr r3, [r7, #12] + 8005944: 681b ldr r3, [r3, #0] + 8005946: 68b9 ldr r1, [r7, #8] + 8005948: 4618 mov r0, r3 + 800594a: f000 fa0d bl 8005d68 break; - 80055c2: e002 b.n 80055ca + 800594e: e002 b.n 8005956 } default: status = HAL_ERROR; - 80055c4: 2301 movs r3, #1 - 80055c6: 75fb strb r3, [r7, #23] + 8005950: 2301 movs r3, #1 + 8005952: 75fb strb r3, [r7, #23] break; - 80055c8: bf00 nop + 8005954: bf00 nop } __HAL_UNLOCK(htim); - 80055ca: 68fb ldr r3, [r7, #12] - 80055cc: 2200 movs r2, #0 - 80055ce: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8005956: 68fb ldr r3, [r7, #12] + 8005958: 2200 movs r2, #0 + 800595a: f883 203c strb.w r2, [r3, #60] @ 0x3c return status; - 80055d2: 7dfb ldrb r3, [r7, #23] + 800595e: 7dfb ldrb r3, [r7, #23] } - 80055d4: 4618 mov r0, r3 - 80055d6: 3718 adds r7, #24 - 80055d8: 46bd mov sp, r7 - 80055da: bd80 pop {r7, pc} + 8005960: 4618 mov r0, r3 + 8005962: 3718 adds r7, #24 + 8005964: 46bd mov sp, r7 + 8005966: bd80 pop {r7, pc} -080055dc : +08005968 : * @param TIMx TIM peripheral * @param Structure TIM Base configuration structure * @retval None */ void TIM_Base_SetConfig(TIM_TypeDef *TIMx, const TIM_Base_InitTypeDef *Structure) { - 80055dc: b480 push {r7} - 80055de: b085 sub sp, #20 - 80055e0: af00 add r7, sp, #0 - 80055e2: 6078 str r0, [r7, #4] - 80055e4: 6039 str r1, [r7, #0] + 8005968: b480 push {r7} + 800596a: b085 sub sp, #20 + 800596c: af00 add r7, sp, #0 + 800596e: 6078 str r0, [r7, #4] + 8005970: 6039 str r1, [r7, #0] uint32_t tmpcr1; tmpcr1 = TIMx->CR1; - 80055e6: 687b ldr r3, [r7, #4] - 80055e8: 681b ldr r3, [r3, #0] - 80055ea: 60fb str r3, [r7, #12] + 8005972: 687b ldr r3, [r7, #4] + 8005974: 681b ldr r3, [r3, #0] + 8005976: 60fb str r3, [r7, #12] /* Set TIM Time Base Unit parameters ---------------------------------------*/ if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) - 80055ec: 687b ldr r3, [r7, #4] - 80055ee: 4a43 ldr r2, [pc, #268] @ (80056fc ) - 80055f0: 4293 cmp r3, r2 - 80055f2: d013 beq.n 800561c - 80055f4: 687b ldr r3, [r7, #4] - 80055f6: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 80055fa: d00f beq.n 800561c - 80055fc: 687b ldr r3, [r7, #4] - 80055fe: 4a40 ldr r2, [pc, #256] @ (8005700 ) - 8005600: 4293 cmp r3, r2 - 8005602: d00b beq.n 800561c - 8005604: 687b ldr r3, [r7, #4] - 8005606: 4a3f ldr r2, [pc, #252] @ (8005704 ) - 8005608: 4293 cmp r3, r2 - 800560a: d007 beq.n 800561c - 800560c: 687b ldr r3, [r7, #4] - 800560e: 4a3e ldr r2, [pc, #248] @ (8005708 ) - 8005610: 4293 cmp r3, r2 - 8005612: d003 beq.n 800561c - 8005614: 687b ldr r3, [r7, #4] - 8005616: 4a3d ldr r2, [pc, #244] @ (800570c ) - 8005618: 4293 cmp r3, r2 - 800561a: d108 bne.n 800562e + 8005978: 687b ldr r3, [r7, #4] + 800597a: 4a43 ldr r2, [pc, #268] @ (8005a88 ) + 800597c: 4293 cmp r3, r2 + 800597e: d013 beq.n 80059a8 + 8005980: 687b ldr r3, [r7, #4] + 8005982: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8005986: d00f beq.n 80059a8 + 8005988: 687b ldr r3, [r7, #4] + 800598a: 4a40 ldr r2, [pc, #256] @ (8005a8c ) + 800598c: 4293 cmp r3, r2 + 800598e: d00b beq.n 80059a8 + 8005990: 687b ldr r3, [r7, #4] + 8005992: 4a3f ldr r2, [pc, #252] @ (8005a90 ) + 8005994: 4293 cmp r3, r2 + 8005996: d007 beq.n 80059a8 + 8005998: 687b ldr r3, [r7, #4] + 800599a: 4a3e ldr r2, [pc, #248] @ (8005a94 ) + 800599c: 4293 cmp r3, r2 + 800599e: d003 beq.n 80059a8 + 80059a0: 687b ldr r3, [r7, #4] + 80059a2: 4a3d ldr r2, [pc, #244] @ (8005a98 ) + 80059a4: 4293 cmp r3, r2 + 80059a6: d108 bne.n 80059ba { /* Select the Counter Mode */ tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); - 800561c: 68fb ldr r3, [r7, #12] - 800561e: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8005622: 60fb str r3, [r7, #12] + 80059a8: 68fb ldr r3, [r7, #12] + 80059aa: f023 0370 bic.w r3, r3, #112 @ 0x70 + 80059ae: 60fb str r3, [r7, #12] tmpcr1 |= Structure->CounterMode; - 8005624: 683b ldr r3, [r7, #0] - 8005626: 685b ldr r3, [r3, #4] - 8005628: 68fa ldr r2, [r7, #12] - 800562a: 4313 orrs r3, r2 - 800562c: 60fb str r3, [r7, #12] + 80059b0: 683b ldr r3, [r7, #0] + 80059b2: 685b ldr r3, [r3, #4] + 80059b4: 68fa ldr r2, [r7, #12] + 80059b6: 4313 orrs r3, r2 + 80059b8: 60fb str r3, [r7, #12] } if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) - 800562e: 687b ldr r3, [r7, #4] - 8005630: 4a32 ldr r2, [pc, #200] @ (80056fc ) - 8005632: 4293 cmp r3, r2 - 8005634: d02b beq.n 800568e - 8005636: 687b ldr r3, [r7, #4] - 8005638: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 800563c: d027 beq.n 800568e - 800563e: 687b ldr r3, [r7, #4] - 8005640: 4a2f ldr r2, [pc, #188] @ (8005700 ) - 8005642: 4293 cmp r3, r2 - 8005644: d023 beq.n 800568e - 8005646: 687b ldr r3, [r7, #4] - 8005648: 4a2e ldr r2, [pc, #184] @ (8005704 ) - 800564a: 4293 cmp r3, r2 - 800564c: d01f beq.n 800568e - 800564e: 687b ldr r3, [r7, #4] - 8005650: 4a2d ldr r2, [pc, #180] @ (8005708 ) - 8005652: 4293 cmp r3, r2 - 8005654: d01b beq.n 800568e - 8005656: 687b ldr r3, [r7, #4] - 8005658: 4a2c ldr r2, [pc, #176] @ (800570c ) - 800565a: 4293 cmp r3, r2 - 800565c: d017 beq.n 800568e - 800565e: 687b ldr r3, [r7, #4] - 8005660: 4a2b ldr r2, [pc, #172] @ (8005710 ) - 8005662: 4293 cmp r3, r2 - 8005664: d013 beq.n 800568e - 8005666: 687b ldr r3, [r7, #4] - 8005668: 4a2a ldr r2, [pc, #168] @ (8005714 ) - 800566a: 4293 cmp r3, r2 - 800566c: d00f beq.n 800568e - 800566e: 687b ldr r3, [r7, #4] - 8005670: 4a29 ldr r2, [pc, #164] @ (8005718 ) - 8005672: 4293 cmp r3, r2 - 8005674: d00b beq.n 800568e - 8005676: 687b ldr r3, [r7, #4] - 8005678: 4a28 ldr r2, [pc, #160] @ (800571c ) - 800567a: 4293 cmp r3, r2 - 800567c: d007 beq.n 800568e - 800567e: 687b ldr r3, [r7, #4] - 8005680: 4a27 ldr r2, [pc, #156] @ (8005720 ) - 8005682: 4293 cmp r3, r2 - 8005684: d003 beq.n 800568e - 8005686: 687b ldr r3, [r7, #4] - 8005688: 4a26 ldr r2, [pc, #152] @ (8005724 ) - 800568a: 4293 cmp r3, r2 - 800568c: d108 bne.n 80056a0 + 80059ba: 687b ldr r3, [r7, #4] + 80059bc: 4a32 ldr r2, [pc, #200] @ (8005a88 ) + 80059be: 4293 cmp r3, r2 + 80059c0: d02b beq.n 8005a1a + 80059c2: 687b ldr r3, [r7, #4] + 80059c4: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80059c8: d027 beq.n 8005a1a + 80059ca: 687b ldr r3, [r7, #4] + 80059cc: 4a2f ldr r2, [pc, #188] @ (8005a8c ) + 80059ce: 4293 cmp r3, r2 + 80059d0: d023 beq.n 8005a1a + 80059d2: 687b ldr r3, [r7, #4] + 80059d4: 4a2e ldr r2, [pc, #184] @ (8005a90 ) + 80059d6: 4293 cmp r3, r2 + 80059d8: d01f beq.n 8005a1a + 80059da: 687b ldr r3, [r7, #4] + 80059dc: 4a2d ldr r2, [pc, #180] @ (8005a94 ) + 80059de: 4293 cmp r3, r2 + 80059e0: d01b beq.n 8005a1a + 80059e2: 687b ldr r3, [r7, #4] + 80059e4: 4a2c ldr r2, [pc, #176] @ (8005a98 ) + 80059e6: 4293 cmp r3, r2 + 80059e8: d017 beq.n 8005a1a + 80059ea: 687b ldr r3, [r7, #4] + 80059ec: 4a2b ldr r2, [pc, #172] @ (8005a9c ) + 80059ee: 4293 cmp r3, r2 + 80059f0: d013 beq.n 8005a1a + 80059f2: 687b ldr r3, [r7, #4] + 80059f4: 4a2a ldr r2, [pc, #168] @ (8005aa0 ) + 80059f6: 4293 cmp r3, r2 + 80059f8: d00f beq.n 8005a1a + 80059fa: 687b ldr r3, [r7, #4] + 80059fc: 4a29 ldr r2, [pc, #164] @ (8005aa4 ) + 80059fe: 4293 cmp r3, r2 + 8005a00: d00b beq.n 8005a1a + 8005a02: 687b ldr r3, [r7, #4] + 8005a04: 4a28 ldr r2, [pc, #160] @ (8005aa8 ) + 8005a06: 4293 cmp r3, r2 + 8005a08: d007 beq.n 8005a1a + 8005a0a: 687b ldr r3, [r7, #4] + 8005a0c: 4a27 ldr r2, [pc, #156] @ (8005aac ) + 8005a0e: 4293 cmp r3, r2 + 8005a10: d003 beq.n 8005a1a + 8005a12: 687b ldr r3, [r7, #4] + 8005a14: 4a26 ldr r2, [pc, #152] @ (8005ab0 ) + 8005a16: 4293 cmp r3, r2 + 8005a18: d108 bne.n 8005a2c { /* Set the clock division */ tmpcr1 &= ~TIM_CR1_CKD; - 800568e: 68fb ldr r3, [r7, #12] - 8005690: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8005694: 60fb str r3, [r7, #12] + 8005a1a: 68fb ldr r3, [r7, #12] + 8005a1c: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8005a20: 60fb str r3, [r7, #12] tmpcr1 |= (uint32_t)Structure->ClockDivision; - 8005696: 683b ldr r3, [r7, #0] - 8005698: 68db ldr r3, [r3, #12] - 800569a: 68fa ldr r2, [r7, #12] - 800569c: 4313 orrs r3, r2 - 800569e: 60fb str r3, [r7, #12] + 8005a22: 683b ldr r3, [r7, #0] + 8005a24: 68db ldr r3, [r3, #12] + 8005a26: 68fa ldr r2, [r7, #12] + 8005a28: 4313 orrs r3, r2 + 8005a2a: 60fb str r3, [r7, #12] } /* Set the auto-reload preload */ MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); - 80056a0: 68fb ldr r3, [r7, #12] - 80056a2: f023 0280 bic.w r2, r3, #128 @ 0x80 - 80056a6: 683b ldr r3, [r7, #0] - 80056a8: 695b ldr r3, [r3, #20] - 80056aa: 4313 orrs r3, r2 - 80056ac: 60fb str r3, [r7, #12] + 8005a2c: 68fb ldr r3, [r7, #12] + 8005a2e: f023 0280 bic.w r2, r3, #128 @ 0x80 + 8005a32: 683b ldr r3, [r7, #0] + 8005a34: 695b ldr r3, [r3, #20] + 8005a36: 4313 orrs r3, r2 + 8005a38: 60fb str r3, [r7, #12] /* Set the Autoreload value */ TIMx->ARR = (uint32_t)Structure->Period ; - 80056ae: 683b ldr r3, [r7, #0] - 80056b0: 689a ldr r2, [r3, #8] - 80056b2: 687b ldr r3, [r7, #4] - 80056b4: 62da str r2, [r3, #44] @ 0x2c + 8005a3a: 683b ldr r3, [r7, #0] + 8005a3c: 689a ldr r2, [r3, #8] + 8005a3e: 687b ldr r3, [r7, #4] + 8005a40: 62da str r2, [r3, #44] @ 0x2c /* Set the Prescaler value */ TIMx->PSC = Structure->Prescaler; - 80056b6: 683b ldr r3, [r7, #0] - 80056b8: 681a ldr r2, [r3, #0] - 80056ba: 687b ldr r3, [r7, #4] - 80056bc: 629a str r2, [r3, #40] @ 0x28 + 8005a42: 683b ldr r3, [r7, #0] + 8005a44: 681a ldr r2, [r3, #0] + 8005a46: 687b ldr r3, [r7, #4] + 8005a48: 629a str r2, [r3, #40] @ 0x28 if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) - 80056be: 687b ldr r3, [r7, #4] - 80056c0: 4a0e ldr r2, [pc, #56] @ (80056fc ) - 80056c2: 4293 cmp r3, r2 - 80056c4: d003 beq.n 80056ce - 80056c6: 687b ldr r3, [r7, #4] - 80056c8: 4a10 ldr r2, [pc, #64] @ (800570c ) - 80056ca: 4293 cmp r3, r2 - 80056cc: d103 bne.n 80056d6 + 8005a4a: 687b ldr r3, [r7, #4] + 8005a4c: 4a0e ldr r2, [pc, #56] @ (8005a88 ) + 8005a4e: 4293 cmp r3, r2 + 8005a50: d003 beq.n 8005a5a + 8005a52: 687b ldr r3, [r7, #4] + 8005a54: 4a10 ldr r2, [pc, #64] @ (8005a98 ) + 8005a56: 4293 cmp r3, r2 + 8005a58: d103 bne.n 8005a62 { /* Set the Repetition Counter value */ TIMx->RCR = Structure->RepetitionCounter; - 80056ce: 683b ldr r3, [r7, #0] - 80056d0: 691a ldr r2, [r3, #16] - 80056d2: 687b ldr r3, [r7, #4] - 80056d4: 631a str r2, [r3, #48] @ 0x30 + 8005a5a: 683b ldr r3, [r7, #0] + 8005a5c: 691a ldr r2, [r3, #16] + 8005a5e: 687b ldr r3, [r7, #4] + 8005a60: 631a str r2, [r3, #48] @ 0x30 } /* Disable Update Event (UEV) with Update Generation (UG) by changing Update Request Source (URS) to avoid Update flag (UIF) */ SET_BIT(TIMx->CR1, TIM_CR1_URS); - 80056d6: 687b ldr r3, [r7, #4] - 80056d8: 681b ldr r3, [r3, #0] - 80056da: f043 0204 orr.w r2, r3, #4 - 80056de: 687b ldr r3, [r7, #4] - 80056e0: 601a str r2, [r3, #0] + 8005a62: 687b ldr r3, [r7, #4] + 8005a64: 681b ldr r3, [r3, #0] + 8005a66: f043 0204 orr.w r2, r3, #4 + 8005a6a: 687b ldr r3, [r7, #4] + 8005a6c: 601a str r2, [r3, #0] /* Generate an update event to reload the Prescaler and the repetition counter (only for advanced timer) value immediately */ TIMx->EGR = TIM_EGR_UG; - 80056e2: 687b ldr r3, [r7, #4] - 80056e4: 2201 movs r2, #1 - 80056e6: 615a str r2, [r3, #20] + 8005a6e: 687b ldr r3, [r7, #4] + 8005a70: 2201 movs r2, #1 + 8005a72: 615a str r2, [r3, #20] TIMx->CR1 = tmpcr1; - 80056e8: 687b ldr r3, [r7, #4] - 80056ea: 68fa ldr r2, [r7, #12] - 80056ec: 601a str r2, [r3, #0] + 8005a74: 687b ldr r3, [r7, #4] + 8005a76: 68fa ldr r2, [r7, #12] + 8005a78: 601a str r2, [r3, #0] } - 80056ee: bf00 nop - 80056f0: 3714 adds r7, #20 - 80056f2: 46bd mov sp, r7 - 80056f4: f85d 7b04 ldr.w r7, [sp], #4 - 80056f8: 4770 bx lr - 80056fa: bf00 nop - 80056fc: 40010000 .word 0x40010000 - 8005700: 40000400 .word 0x40000400 - 8005704: 40000800 .word 0x40000800 - 8005708: 40000c00 .word 0x40000c00 - 800570c: 40010400 .word 0x40010400 - 8005710: 40014000 .word 0x40014000 - 8005714: 40014400 .word 0x40014400 - 8005718: 40014800 .word 0x40014800 - 800571c: 40001800 .word 0x40001800 - 8005720: 40001c00 .word 0x40001c00 - 8005724: 40002000 .word 0x40002000 + 8005a7a: bf00 nop + 8005a7c: 3714 adds r7, #20 + 8005a7e: 46bd mov sp, r7 + 8005a80: f85d 7b04 ldr.w r7, [sp], #4 + 8005a84: 4770 bx lr + 8005a86: bf00 nop + 8005a88: 40010000 .word 0x40010000 + 8005a8c: 40000400 .word 0x40000400 + 8005a90: 40000800 .word 0x40000800 + 8005a94: 40000c00 .word 0x40000c00 + 8005a98: 40010400 .word 0x40010400 + 8005a9c: 40014000 .word 0x40014000 + 8005aa0: 40014400 .word 0x40014400 + 8005aa4: 40014800 .word 0x40014800 + 8005aa8: 40001800 .word 0x40001800 + 8005aac: 40001c00 .word 0x40001c00 + 8005ab0: 40002000 .word 0x40002000 -08005728 : +08005ab4 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC1_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8005728: b480 push {r7} - 800572a: b087 sub sp, #28 - 800572c: af00 add r7, sp, #0 - 800572e: 6078 str r0, [r7, #4] - 8005730: 6039 str r1, [r7, #0] + 8005ab4: b480 push {r7} + 8005ab6: b087 sub sp, #28 + 8005ab8: af00 add r7, sp, #0 + 8005aba: 6078 str r0, [r7, #4] + 8005abc: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 8005732: 687b ldr r3, [r7, #4] - 8005734: 6a1b ldr r3, [r3, #32] - 8005736: 617b str r3, [r7, #20] + 8005abe: 687b ldr r3, [r7, #4] + 8005ac0: 6a1b ldr r3, [r3, #32] + 8005ac2: 617b str r3, [r7, #20] /* Disable the Channel 1: Reset the CC1E Bit */ TIMx->CCER &= ~TIM_CCER_CC1E; - 8005738: 687b ldr r3, [r7, #4] - 800573a: 6a1b ldr r3, [r3, #32] - 800573c: f023 0201 bic.w r2, r3, #1 - 8005740: 687b ldr r3, [r7, #4] - 8005742: 621a str r2, [r3, #32] + 8005ac4: 687b ldr r3, [r7, #4] + 8005ac6: 6a1b ldr r3, [r3, #32] + 8005ac8: f023 0201 bic.w r2, r3, #1 + 8005acc: 687b ldr r3, [r7, #4] + 8005ace: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8005744: 687b ldr r3, [r7, #4] - 8005746: 685b ldr r3, [r3, #4] - 8005748: 613b str r3, [r7, #16] + 8005ad0: 687b ldr r3, [r7, #4] + 8005ad2: 685b ldr r3, [r3, #4] + 8005ad4: 613b str r3, [r7, #16] /* Get the TIMx CCMR1 register value */ tmpccmrx = TIMx->CCMR1; - 800574a: 687b ldr r3, [r7, #4] - 800574c: 699b ldr r3, [r3, #24] - 800574e: 60fb str r3, [r7, #12] + 8005ad6: 687b ldr r3, [r7, #4] + 8005ad8: 699b ldr r3, [r3, #24] + 8005ada: 60fb str r3, [r7, #12] /* Reset the Output Compare Mode Bits */ tmpccmrx &= ~TIM_CCMR1_OC1M; - 8005750: 68fb ldr r3, [r7, #12] - 8005752: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8005756: 60fb str r3, [r7, #12] + 8005adc: 68fb ldr r3, [r7, #12] + 8005ade: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8005ae2: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR1_CC1S; - 8005758: 68fb ldr r3, [r7, #12] - 800575a: f023 0303 bic.w r3, r3, #3 - 800575e: 60fb str r3, [r7, #12] + 8005ae4: 68fb ldr r3, [r7, #12] + 8005ae6: f023 0303 bic.w r3, r3, #3 + 8005aea: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= OC_Config->OCMode; - 8005760: 683b ldr r3, [r7, #0] - 8005762: 681b ldr r3, [r3, #0] - 8005764: 68fa ldr r2, [r7, #12] - 8005766: 4313 orrs r3, r2 - 8005768: 60fb str r3, [r7, #12] + 8005aec: 683b ldr r3, [r7, #0] + 8005aee: 681b ldr r3, [r3, #0] + 8005af0: 68fa ldr r2, [r7, #12] + 8005af2: 4313 orrs r3, r2 + 8005af4: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC1P; - 800576a: 697b ldr r3, [r7, #20] - 800576c: f023 0302 bic.w r3, r3, #2 - 8005770: 617b str r3, [r7, #20] + 8005af6: 697b ldr r3, [r7, #20] + 8005af8: f023 0302 bic.w r3, r3, #2 + 8005afc: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= OC_Config->OCPolarity; - 8005772: 683b ldr r3, [r7, #0] - 8005774: 689b ldr r3, [r3, #8] - 8005776: 697a ldr r2, [r7, #20] - 8005778: 4313 orrs r3, r2 - 800577a: 617b str r3, [r7, #20] + 8005afe: 683b ldr r3, [r7, #0] + 8005b00: 689b ldr r3, [r3, #8] + 8005b02: 697a ldr r2, [r7, #20] + 8005b04: 4313 orrs r3, r2 + 8005b06: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_1)) - 800577c: 687b ldr r3, [r7, #4] - 800577e: 4a20 ldr r2, [pc, #128] @ (8005800 ) - 8005780: 4293 cmp r3, r2 - 8005782: d003 beq.n 800578c - 8005784: 687b ldr r3, [r7, #4] - 8005786: 4a1f ldr r2, [pc, #124] @ (8005804 ) - 8005788: 4293 cmp r3, r2 - 800578a: d10c bne.n 80057a6 + 8005b08: 687b ldr r3, [r7, #4] + 8005b0a: 4a20 ldr r2, [pc, #128] @ (8005b8c ) + 8005b0c: 4293 cmp r3, r2 + 8005b0e: d003 beq.n 8005b18 + 8005b10: 687b ldr r3, [r7, #4] + 8005b12: 4a1f ldr r2, [pc, #124] @ (8005b90 ) + 8005b14: 4293 cmp r3, r2 + 8005b16: d10c bne.n 8005b32 { /* Check parameters */ assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC1NP; - 800578c: 697b ldr r3, [r7, #20] - 800578e: f023 0308 bic.w r3, r3, #8 - 8005792: 617b str r3, [r7, #20] + 8005b18: 697b ldr r3, [r7, #20] + 8005b1a: f023 0308 bic.w r3, r3, #8 + 8005b1e: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= OC_Config->OCNPolarity; - 8005794: 683b ldr r3, [r7, #0] - 8005796: 68db ldr r3, [r3, #12] - 8005798: 697a ldr r2, [r7, #20] - 800579a: 4313 orrs r3, r2 - 800579c: 617b str r3, [r7, #20] + 8005b20: 683b ldr r3, [r7, #0] + 8005b22: 68db ldr r3, [r3, #12] + 8005b24: 697a ldr r2, [r7, #20] + 8005b26: 4313 orrs r3, r2 + 8005b28: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC1NE; - 800579e: 697b ldr r3, [r7, #20] - 80057a0: f023 0304 bic.w r3, r3, #4 - 80057a4: 617b str r3, [r7, #20] + 8005b2a: 697b ldr r3, [r7, #20] + 8005b2c: f023 0304 bic.w r3, r3, #4 + 8005b30: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 80057a6: 687b ldr r3, [r7, #4] - 80057a8: 4a15 ldr r2, [pc, #84] @ (8005800 ) - 80057aa: 4293 cmp r3, r2 - 80057ac: d003 beq.n 80057b6 - 80057ae: 687b ldr r3, [r7, #4] - 80057b0: 4a14 ldr r2, [pc, #80] @ (8005804 ) - 80057b2: 4293 cmp r3, r2 - 80057b4: d111 bne.n 80057da + 8005b32: 687b ldr r3, [r7, #4] + 8005b34: 4a15 ldr r2, [pc, #84] @ (8005b8c ) + 8005b36: 4293 cmp r3, r2 + 8005b38: d003 beq.n 8005b42 + 8005b3a: 687b ldr r3, [r7, #4] + 8005b3c: 4a14 ldr r2, [pc, #80] @ (8005b90 ) + 8005b3e: 4293 cmp r3, r2 + 8005b40: d111 bne.n 8005b66 /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS1; - 80057b6: 693b ldr r3, [r7, #16] - 80057b8: f423 7380 bic.w r3, r3, #256 @ 0x100 - 80057bc: 613b str r3, [r7, #16] + 8005b42: 693b ldr r3, [r7, #16] + 8005b44: f423 7380 bic.w r3, r3, #256 @ 0x100 + 8005b48: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS1N; - 80057be: 693b ldr r3, [r7, #16] - 80057c0: f423 7300 bic.w r3, r3, #512 @ 0x200 - 80057c4: 613b str r3, [r7, #16] + 8005b4a: 693b ldr r3, [r7, #16] + 8005b4c: f423 7300 bic.w r3, r3, #512 @ 0x200 + 8005b50: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= OC_Config->OCIdleState; - 80057c6: 683b ldr r3, [r7, #0] - 80057c8: 695b ldr r3, [r3, #20] - 80057ca: 693a ldr r2, [r7, #16] - 80057cc: 4313 orrs r3, r2 - 80057ce: 613b str r3, [r7, #16] + 8005b52: 683b ldr r3, [r7, #0] + 8005b54: 695b ldr r3, [r3, #20] + 8005b56: 693a ldr r2, [r7, #16] + 8005b58: 4313 orrs r3, r2 + 8005b5a: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= OC_Config->OCNIdleState; - 80057d0: 683b ldr r3, [r7, #0] - 80057d2: 699b ldr r3, [r3, #24] - 80057d4: 693a ldr r2, [r7, #16] - 80057d6: 4313 orrs r3, r2 - 80057d8: 613b str r3, [r7, #16] + 8005b5c: 683b ldr r3, [r7, #0] + 8005b5e: 699b ldr r3, [r3, #24] + 8005b60: 693a ldr r2, [r7, #16] + 8005b62: 4313 orrs r3, r2 + 8005b64: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 80057da: 687b ldr r3, [r7, #4] - 80057dc: 693a ldr r2, [r7, #16] - 80057de: 605a str r2, [r3, #4] + 8005b66: 687b ldr r3, [r7, #4] + 8005b68: 693a ldr r2, [r7, #16] + 8005b6a: 605a str r2, [r3, #4] /* Write to TIMx CCMR1 */ TIMx->CCMR1 = tmpccmrx; - 80057e0: 687b ldr r3, [r7, #4] - 80057e2: 68fa ldr r2, [r7, #12] - 80057e4: 619a str r2, [r3, #24] + 8005b6c: 687b ldr r3, [r7, #4] + 8005b6e: 68fa ldr r2, [r7, #12] + 8005b70: 619a str r2, [r3, #24] /* Set the Capture Compare Register value */ TIMx->CCR1 = OC_Config->Pulse; - 80057e6: 683b ldr r3, [r7, #0] - 80057e8: 685a ldr r2, [r3, #4] - 80057ea: 687b ldr r3, [r7, #4] - 80057ec: 635a str r2, [r3, #52] @ 0x34 + 8005b72: 683b ldr r3, [r7, #0] + 8005b74: 685a ldr r2, [r3, #4] + 8005b76: 687b ldr r3, [r7, #4] + 8005b78: 635a str r2, [r3, #52] @ 0x34 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 80057ee: 687b ldr r3, [r7, #4] - 80057f0: 697a ldr r2, [r7, #20] - 80057f2: 621a str r2, [r3, #32] + 8005b7a: 687b ldr r3, [r7, #4] + 8005b7c: 697a ldr r2, [r7, #20] + 8005b7e: 621a str r2, [r3, #32] } - 80057f4: bf00 nop - 80057f6: 371c adds r7, #28 - 80057f8: 46bd mov sp, r7 - 80057fa: f85d 7b04 ldr.w r7, [sp], #4 - 80057fe: 4770 bx lr - 8005800: 40010000 .word 0x40010000 - 8005804: 40010400 .word 0x40010400 + 8005b80: bf00 nop + 8005b82: 371c adds r7, #28 + 8005b84: 46bd mov sp, r7 + 8005b86: f85d 7b04 ldr.w r7, [sp], #4 + 8005b8a: 4770 bx lr + 8005b8c: 40010000 .word 0x40010000 + 8005b90: 40010400 .word 0x40010400 -08005808 : +08005b94 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ void TIM_OC2_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8005808: b480 push {r7} - 800580a: b087 sub sp, #28 - 800580c: af00 add r7, sp, #0 - 800580e: 6078 str r0, [r7, #4] - 8005810: 6039 str r1, [r7, #0] + 8005b94: b480 push {r7} + 8005b96: b087 sub sp, #28 + 8005b98: af00 add r7, sp, #0 + 8005b9a: 6078 str r0, [r7, #4] + 8005b9c: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 8005812: 687b ldr r3, [r7, #4] - 8005814: 6a1b ldr r3, [r3, #32] - 8005816: 617b str r3, [r7, #20] + 8005b9e: 687b ldr r3, [r7, #4] + 8005ba0: 6a1b ldr r3, [r3, #32] + 8005ba2: 617b str r3, [r7, #20] /* Disable the Channel 2: Reset the CC2E Bit */ TIMx->CCER &= ~TIM_CCER_CC2E; - 8005818: 687b ldr r3, [r7, #4] - 800581a: 6a1b ldr r3, [r3, #32] - 800581c: f023 0210 bic.w r2, r3, #16 - 8005820: 687b ldr r3, [r7, #4] - 8005822: 621a str r2, [r3, #32] + 8005ba4: 687b ldr r3, [r7, #4] + 8005ba6: 6a1b ldr r3, [r3, #32] + 8005ba8: f023 0210 bic.w r2, r3, #16 + 8005bac: 687b ldr r3, [r7, #4] + 8005bae: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8005824: 687b ldr r3, [r7, #4] - 8005826: 685b ldr r3, [r3, #4] - 8005828: 613b str r3, [r7, #16] + 8005bb0: 687b ldr r3, [r7, #4] + 8005bb2: 685b ldr r3, [r3, #4] + 8005bb4: 613b str r3, [r7, #16] /* Get the TIMx CCMR1 register value */ tmpccmrx = TIMx->CCMR1; - 800582a: 687b ldr r3, [r7, #4] - 800582c: 699b ldr r3, [r3, #24] - 800582e: 60fb str r3, [r7, #12] + 8005bb6: 687b ldr r3, [r7, #4] + 8005bb8: 699b ldr r3, [r3, #24] + 8005bba: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR1_OC2M; - 8005830: 68fb ldr r3, [r7, #12] - 8005832: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 - 8005836: 60fb str r3, [r7, #12] + 8005bbc: 68fb ldr r3, [r7, #12] + 8005bbe: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 + 8005bc2: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR1_CC2S; - 8005838: 68fb ldr r3, [r7, #12] - 800583a: f423 7340 bic.w r3, r3, #768 @ 0x300 - 800583e: 60fb str r3, [r7, #12] + 8005bc4: 68fb ldr r3, [r7, #12] + 8005bc6: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8005bca: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= (OC_Config->OCMode << 8U); - 8005840: 683b ldr r3, [r7, #0] - 8005842: 681b ldr r3, [r3, #0] - 8005844: 021b lsls r3, r3, #8 - 8005846: 68fa ldr r2, [r7, #12] - 8005848: 4313 orrs r3, r2 - 800584a: 60fb str r3, [r7, #12] + 8005bcc: 683b ldr r3, [r7, #0] + 8005bce: 681b ldr r3, [r3, #0] + 8005bd0: 021b lsls r3, r3, #8 + 8005bd2: 68fa ldr r2, [r7, #12] + 8005bd4: 4313 orrs r3, r2 + 8005bd6: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC2P; - 800584c: 697b ldr r3, [r7, #20] - 800584e: f023 0320 bic.w r3, r3, #32 - 8005852: 617b str r3, [r7, #20] + 8005bd8: 697b ldr r3, [r7, #20] + 8005bda: f023 0320 bic.w r3, r3, #32 + 8005bde: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 4U); - 8005854: 683b ldr r3, [r7, #0] - 8005856: 689b ldr r3, [r3, #8] - 8005858: 011b lsls r3, r3, #4 - 800585a: 697a ldr r2, [r7, #20] - 800585c: 4313 orrs r3, r2 - 800585e: 617b str r3, [r7, #20] + 8005be0: 683b ldr r3, [r7, #0] + 8005be2: 689b ldr r3, [r3, #8] + 8005be4: 011b lsls r3, r3, #4 + 8005be6: 697a ldr r2, [r7, #20] + 8005be8: 4313 orrs r3, r2 + 8005bea: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_2)) - 8005860: 687b ldr r3, [r7, #4] - 8005862: 4a22 ldr r2, [pc, #136] @ (80058ec ) - 8005864: 4293 cmp r3, r2 - 8005866: d003 beq.n 8005870 - 8005868: 687b ldr r3, [r7, #4] - 800586a: 4a21 ldr r2, [pc, #132] @ (80058f0 ) - 800586c: 4293 cmp r3, r2 - 800586e: d10d bne.n 800588c + 8005bec: 687b ldr r3, [r7, #4] + 8005bee: 4a22 ldr r2, [pc, #136] @ (8005c78 ) + 8005bf0: 4293 cmp r3, r2 + 8005bf2: d003 beq.n 8005bfc + 8005bf4: 687b ldr r3, [r7, #4] + 8005bf6: 4a21 ldr r2, [pc, #132] @ (8005c7c ) + 8005bf8: 4293 cmp r3, r2 + 8005bfa: d10d bne.n 8005c18 { assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC2NP; - 8005870: 697b ldr r3, [r7, #20] - 8005872: f023 0380 bic.w r3, r3, #128 @ 0x80 - 8005876: 617b str r3, [r7, #20] + 8005bfc: 697b ldr r3, [r7, #20] + 8005bfe: f023 0380 bic.w r3, r3, #128 @ 0x80 + 8005c02: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= (OC_Config->OCNPolarity << 4U); - 8005878: 683b ldr r3, [r7, #0] - 800587a: 68db ldr r3, [r3, #12] - 800587c: 011b lsls r3, r3, #4 - 800587e: 697a ldr r2, [r7, #20] - 8005880: 4313 orrs r3, r2 - 8005882: 617b str r3, [r7, #20] + 8005c04: 683b ldr r3, [r7, #0] + 8005c06: 68db ldr r3, [r3, #12] + 8005c08: 011b lsls r3, r3, #4 + 8005c0a: 697a ldr r2, [r7, #20] + 8005c0c: 4313 orrs r3, r2 + 8005c0e: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC2NE; - 8005884: 697b ldr r3, [r7, #20] - 8005886: f023 0340 bic.w r3, r3, #64 @ 0x40 - 800588a: 617b str r3, [r7, #20] + 8005c10: 697b ldr r3, [r7, #20] + 8005c12: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8005c16: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 800588c: 687b ldr r3, [r7, #4] - 800588e: 4a17 ldr r2, [pc, #92] @ (80058ec ) - 8005890: 4293 cmp r3, r2 - 8005892: d003 beq.n 800589c - 8005894: 687b ldr r3, [r7, #4] - 8005896: 4a16 ldr r2, [pc, #88] @ (80058f0 ) - 8005898: 4293 cmp r3, r2 - 800589a: d113 bne.n 80058c4 + 8005c18: 687b ldr r3, [r7, #4] + 8005c1a: 4a17 ldr r2, [pc, #92] @ (8005c78 ) + 8005c1c: 4293 cmp r3, r2 + 8005c1e: d003 beq.n 8005c28 + 8005c20: 687b ldr r3, [r7, #4] + 8005c22: 4a16 ldr r2, [pc, #88] @ (8005c7c ) + 8005c24: 4293 cmp r3, r2 + 8005c26: d113 bne.n 8005c50 /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS2; - 800589c: 693b ldr r3, [r7, #16] - 800589e: f423 6380 bic.w r3, r3, #1024 @ 0x400 - 80058a2: 613b str r3, [r7, #16] + 8005c28: 693b ldr r3, [r7, #16] + 8005c2a: f423 6380 bic.w r3, r3, #1024 @ 0x400 + 8005c2e: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS2N; - 80058a4: 693b ldr r3, [r7, #16] - 80058a6: f423 6300 bic.w r3, r3, #2048 @ 0x800 - 80058aa: 613b str r3, [r7, #16] + 8005c30: 693b ldr r3, [r7, #16] + 8005c32: f423 6300 bic.w r3, r3, #2048 @ 0x800 + 8005c36: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 2U); - 80058ac: 683b ldr r3, [r7, #0] - 80058ae: 695b ldr r3, [r3, #20] - 80058b0: 009b lsls r3, r3, #2 - 80058b2: 693a ldr r2, [r7, #16] - 80058b4: 4313 orrs r3, r2 - 80058b6: 613b str r3, [r7, #16] + 8005c38: 683b ldr r3, [r7, #0] + 8005c3a: 695b ldr r3, [r3, #20] + 8005c3c: 009b lsls r3, r3, #2 + 8005c3e: 693a ldr r2, [r7, #16] + 8005c40: 4313 orrs r3, r2 + 8005c42: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= (OC_Config->OCNIdleState << 2U); - 80058b8: 683b ldr r3, [r7, #0] - 80058ba: 699b ldr r3, [r3, #24] - 80058bc: 009b lsls r3, r3, #2 - 80058be: 693a ldr r2, [r7, #16] - 80058c0: 4313 orrs r3, r2 - 80058c2: 613b str r3, [r7, #16] + 8005c44: 683b ldr r3, [r7, #0] + 8005c46: 699b ldr r3, [r3, #24] + 8005c48: 009b lsls r3, r3, #2 + 8005c4a: 693a ldr r2, [r7, #16] + 8005c4c: 4313 orrs r3, r2 + 8005c4e: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 80058c4: 687b ldr r3, [r7, #4] - 80058c6: 693a ldr r2, [r7, #16] - 80058c8: 605a str r2, [r3, #4] + 8005c50: 687b ldr r3, [r7, #4] + 8005c52: 693a ldr r2, [r7, #16] + 8005c54: 605a str r2, [r3, #4] /* Write to TIMx CCMR1 */ TIMx->CCMR1 = tmpccmrx; - 80058ca: 687b ldr r3, [r7, #4] - 80058cc: 68fa ldr r2, [r7, #12] - 80058ce: 619a str r2, [r3, #24] + 8005c56: 687b ldr r3, [r7, #4] + 8005c58: 68fa ldr r2, [r7, #12] + 8005c5a: 619a str r2, [r3, #24] /* Set the Capture Compare Register value */ TIMx->CCR2 = OC_Config->Pulse; - 80058d0: 683b ldr r3, [r7, #0] - 80058d2: 685a ldr r2, [r3, #4] - 80058d4: 687b ldr r3, [r7, #4] - 80058d6: 639a str r2, [r3, #56] @ 0x38 + 8005c5c: 683b ldr r3, [r7, #0] + 8005c5e: 685a ldr r2, [r3, #4] + 8005c60: 687b ldr r3, [r7, #4] + 8005c62: 639a str r2, [r3, #56] @ 0x38 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 80058d8: 687b ldr r3, [r7, #4] - 80058da: 697a ldr r2, [r7, #20] - 80058dc: 621a str r2, [r3, #32] + 8005c64: 687b ldr r3, [r7, #4] + 8005c66: 697a ldr r2, [r7, #20] + 8005c68: 621a str r2, [r3, #32] } - 80058de: bf00 nop - 80058e0: 371c adds r7, #28 - 80058e2: 46bd mov sp, r7 - 80058e4: f85d 7b04 ldr.w r7, [sp], #4 - 80058e8: 4770 bx lr - 80058ea: bf00 nop - 80058ec: 40010000 .word 0x40010000 - 80058f0: 40010400 .word 0x40010400 + 8005c6a: bf00 nop + 8005c6c: 371c adds r7, #28 + 8005c6e: 46bd mov sp, r7 + 8005c70: f85d 7b04 ldr.w r7, [sp], #4 + 8005c74: 4770 bx lr + 8005c76: bf00 nop + 8005c78: 40010000 .word 0x40010000 + 8005c7c: 40010400 .word 0x40010400 -080058f4 : +08005c80 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC3_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 80058f4: b480 push {r7} - 80058f6: b087 sub sp, #28 - 80058f8: af00 add r7, sp, #0 - 80058fa: 6078 str r0, [r7, #4] - 80058fc: 6039 str r1, [r7, #0] + 8005c80: b480 push {r7} + 8005c82: b087 sub sp, #28 + 8005c84: af00 add r7, sp, #0 + 8005c86: 6078 str r0, [r7, #4] + 8005c88: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 80058fe: 687b ldr r3, [r7, #4] - 8005900: 6a1b ldr r3, [r3, #32] - 8005902: 617b str r3, [r7, #20] + 8005c8a: 687b ldr r3, [r7, #4] + 8005c8c: 6a1b ldr r3, [r3, #32] + 8005c8e: 617b str r3, [r7, #20] /* Disable the Channel 3: Reset the CC2E Bit */ TIMx->CCER &= ~TIM_CCER_CC3E; - 8005904: 687b ldr r3, [r7, #4] - 8005906: 6a1b ldr r3, [r3, #32] - 8005908: f423 7280 bic.w r2, r3, #256 @ 0x100 - 800590c: 687b ldr r3, [r7, #4] - 800590e: 621a str r2, [r3, #32] + 8005c90: 687b ldr r3, [r7, #4] + 8005c92: 6a1b ldr r3, [r3, #32] + 8005c94: f423 7280 bic.w r2, r3, #256 @ 0x100 + 8005c98: 687b ldr r3, [r7, #4] + 8005c9a: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8005910: 687b ldr r3, [r7, #4] - 8005912: 685b ldr r3, [r3, #4] - 8005914: 613b str r3, [r7, #16] + 8005c9c: 687b ldr r3, [r7, #4] + 8005c9e: 685b ldr r3, [r3, #4] + 8005ca0: 613b str r3, [r7, #16] /* Get the TIMx CCMR2 register value */ tmpccmrx = TIMx->CCMR2; - 8005916: 687b ldr r3, [r7, #4] - 8005918: 69db ldr r3, [r3, #28] - 800591a: 60fb str r3, [r7, #12] + 8005ca2: 687b ldr r3, [r7, #4] + 8005ca4: 69db ldr r3, [r3, #28] + 8005ca6: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR2_OC3M; - 800591c: 68fb ldr r3, [r7, #12] - 800591e: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8005922: 60fb str r3, [r7, #12] + 8005ca8: 68fb ldr r3, [r7, #12] + 8005caa: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8005cae: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR2_CC3S; - 8005924: 68fb ldr r3, [r7, #12] - 8005926: f023 0303 bic.w r3, r3, #3 - 800592a: 60fb str r3, [r7, #12] + 8005cb0: 68fb ldr r3, [r7, #12] + 8005cb2: f023 0303 bic.w r3, r3, #3 + 8005cb6: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= OC_Config->OCMode; - 800592c: 683b ldr r3, [r7, #0] - 800592e: 681b ldr r3, [r3, #0] - 8005930: 68fa ldr r2, [r7, #12] - 8005932: 4313 orrs r3, r2 - 8005934: 60fb str r3, [r7, #12] + 8005cb8: 683b ldr r3, [r7, #0] + 8005cba: 681b ldr r3, [r3, #0] + 8005cbc: 68fa ldr r2, [r7, #12] + 8005cbe: 4313 orrs r3, r2 + 8005cc0: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC3P; - 8005936: 697b ldr r3, [r7, #20] - 8005938: f423 7300 bic.w r3, r3, #512 @ 0x200 - 800593c: 617b str r3, [r7, #20] + 8005cc2: 697b ldr r3, [r7, #20] + 8005cc4: f423 7300 bic.w r3, r3, #512 @ 0x200 + 8005cc8: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 8U); - 800593e: 683b ldr r3, [r7, #0] - 8005940: 689b ldr r3, [r3, #8] - 8005942: 021b lsls r3, r3, #8 - 8005944: 697a ldr r2, [r7, #20] - 8005946: 4313 orrs r3, r2 - 8005948: 617b str r3, [r7, #20] + 8005cca: 683b ldr r3, [r7, #0] + 8005ccc: 689b ldr r3, [r3, #8] + 8005cce: 021b lsls r3, r3, #8 + 8005cd0: 697a ldr r2, [r7, #20] + 8005cd2: 4313 orrs r3, r2 + 8005cd4: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_3)) - 800594a: 687b ldr r3, [r7, #4] - 800594c: 4a21 ldr r2, [pc, #132] @ (80059d4 ) - 800594e: 4293 cmp r3, r2 - 8005950: d003 beq.n 800595a - 8005952: 687b ldr r3, [r7, #4] - 8005954: 4a20 ldr r2, [pc, #128] @ (80059d8 ) - 8005956: 4293 cmp r3, r2 - 8005958: d10d bne.n 8005976 + 8005cd6: 687b ldr r3, [r7, #4] + 8005cd8: 4a21 ldr r2, [pc, #132] @ (8005d60 ) + 8005cda: 4293 cmp r3, r2 + 8005cdc: d003 beq.n 8005ce6 + 8005cde: 687b ldr r3, [r7, #4] + 8005ce0: 4a20 ldr r2, [pc, #128] @ (8005d64 ) + 8005ce2: 4293 cmp r3, r2 + 8005ce4: d10d bne.n 8005d02 { assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC3NP; - 800595a: 697b ldr r3, [r7, #20] - 800595c: f423 6300 bic.w r3, r3, #2048 @ 0x800 - 8005960: 617b str r3, [r7, #20] + 8005ce6: 697b ldr r3, [r7, #20] + 8005ce8: f423 6300 bic.w r3, r3, #2048 @ 0x800 + 8005cec: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= (OC_Config->OCNPolarity << 8U); - 8005962: 683b ldr r3, [r7, #0] - 8005964: 68db ldr r3, [r3, #12] - 8005966: 021b lsls r3, r3, #8 - 8005968: 697a ldr r2, [r7, #20] - 800596a: 4313 orrs r3, r2 - 800596c: 617b str r3, [r7, #20] + 8005cee: 683b ldr r3, [r7, #0] + 8005cf0: 68db ldr r3, [r3, #12] + 8005cf2: 021b lsls r3, r3, #8 + 8005cf4: 697a ldr r2, [r7, #20] + 8005cf6: 4313 orrs r3, r2 + 8005cf8: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC3NE; - 800596e: 697b ldr r3, [r7, #20] - 8005970: f423 6380 bic.w r3, r3, #1024 @ 0x400 - 8005974: 617b str r3, [r7, #20] + 8005cfa: 697b ldr r3, [r7, #20] + 8005cfc: f423 6380 bic.w r3, r3, #1024 @ 0x400 + 8005d00: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 8005976: 687b ldr r3, [r7, #4] - 8005978: 4a16 ldr r2, [pc, #88] @ (80059d4 ) - 800597a: 4293 cmp r3, r2 - 800597c: d003 beq.n 8005986 - 800597e: 687b ldr r3, [r7, #4] - 8005980: 4a15 ldr r2, [pc, #84] @ (80059d8 ) - 8005982: 4293 cmp r3, r2 - 8005984: d113 bne.n 80059ae + 8005d02: 687b ldr r3, [r7, #4] + 8005d04: 4a16 ldr r2, [pc, #88] @ (8005d60 ) + 8005d06: 4293 cmp r3, r2 + 8005d08: d003 beq.n 8005d12 + 8005d0a: 687b ldr r3, [r7, #4] + 8005d0c: 4a15 ldr r2, [pc, #84] @ (8005d64 ) + 8005d0e: 4293 cmp r3, r2 + 8005d10: d113 bne.n 8005d3a /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS3; - 8005986: 693b ldr r3, [r7, #16] - 8005988: f423 5380 bic.w r3, r3, #4096 @ 0x1000 - 800598c: 613b str r3, [r7, #16] + 8005d12: 693b ldr r3, [r7, #16] + 8005d14: f423 5380 bic.w r3, r3, #4096 @ 0x1000 + 8005d18: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS3N; - 800598e: 693b ldr r3, [r7, #16] - 8005990: f423 5300 bic.w r3, r3, #8192 @ 0x2000 - 8005994: 613b str r3, [r7, #16] + 8005d1a: 693b ldr r3, [r7, #16] + 8005d1c: f423 5300 bic.w r3, r3, #8192 @ 0x2000 + 8005d20: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 4U); - 8005996: 683b ldr r3, [r7, #0] - 8005998: 695b ldr r3, [r3, #20] - 800599a: 011b lsls r3, r3, #4 - 800599c: 693a ldr r2, [r7, #16] - 800599e: 4313 orrs r3, r2 - 80059a0: 613b str r3, [r7, #16] + 8005d22: 683b ldr r3, [r7, #0] + 8005d24: 695b ldr r3, [r3, #20] + 8005d26: 011b lsls r3, r3, #4 + 8005d28: 693a ldr r2, [r7, #16] + 8005d2a: 4313 orrs r3, r2 + 8005d2c: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= (OC_Config->OCNIdleState << 4U); - 80059a2: 683b ldr r3, [r7, #0] - 80059a4: 699b ldr r3, [r3, #24] - 80059a6: 011b lsls r3, r3, #4 - 80059a8: 693a ldr r2, [r7, #16] - 80059aa: 4313 orrs r3, r2 - 80059ac: 613b str r3, [r7, #16] + 8005d2e: 683b ldr r3, [r7, #0] + 8005d30: 699b ldr r3, [r3, #24] + 8005d32: 011b lsls r3, r3, #4 + 8005d34: 693a ldr r2, [r7, #16] + 8005d36: 4313 orrs r3, r2 + 8005d38: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 80059ae: 687b ldr r3, [r7, #4] - 80059b0: 693a ldr r2, [r7, #16] - 80059b2: 605a str r2, [r3, #4] + 8005d3a: 687b ldr r3, [r7, #4] + 8005d3c: 693a ldr r2, [r7, #16] + 8005d3e: 605a str r2, [r3, #4] /* Write to TIMx CCMR2 */ TIMx->CCMR2 = tmpccmrx; - 80059b4: 687b ldr r3, [r7, #4] - 80059b6: 68fa ldr r2, [r7, #12] - 80059b8: 61da str r2, [r3, #28] + 8005d40: 687b ldr r3, [r7, #4] + 8005d42: 68fa ldr r2, [r7, #12] + 8005d44: 61da str r2, [r3, #28] /* Set the Capture Compare Register value */ TIMx->CCR3 = OC_Config->Pulse; - 80059ba: 683b ldr r3, [r7, #0] - 80059bc: 685a ldr r2, [r3, #4] - 80059be: 687b ldr r3, [r7, #4] - 80059c0: 63da str r2, [r3, #60] @ 0x3c + 8005d46: 683b ldr r3, [r7, #0] + 8005d48: 685a ldr r2, [r3, #4] + 8005d4a: 687b ldr r3, [r7, #4] + 8005d4c: 63da str r2, [r3, #60] @ 0x3c /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 80059c2: 687b ldr r3, [r7, #4] - 80059c4: 697a ldr r2, [r7, #20] - 80059c6: 621a str r2, [r3, #32] + 8005d4e: 687b ldr r3, [r7, #4] + 8005d50: 697a ldr r2, [r7, #20] + 8005d52: 621a str r2, [r3, #32] } - 80059c8: bf00 nop - 80059ca: 371c adds r7, #28 - 80059cc: 46bd mov sp, r7 - 80059ce: f85d 7b04 ldr.w r7, [sp], #4 - 80059d2: 4770 bx lr - 80059d4: 40010000 .word 0x40010000 - 80059d8: 40010400 .word 0x40010400 + 8005d54: bf00 nop + 8005d56: 371c adds r7, #28 + 8005d58: 46bd mov sp, r7 + 8005d5a: f85d 7b04 ldr.w r7, [sp], #4 + 8005d5e: 4770 bx lr + 8005d60: 40010000 .word 0x40010000 + 8005d64: 40010400 .word 0x40010400 -080059dc : +08005d68 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC4_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 80059dc: b480 push {r7} - 80059de: b087 sub sp, #28 - 80059e0: af00 add r7, sp, #0 - 80059e2: 6078 str r0, [r7, #4] - 80059e4: 6039 str r1, [r7, #0] + 8005d68: b480 push {r7} + 8005d6a: b087 sub sp, #28 + 8005d6c: af00 add r7, sp, #0 + 8005d6e: 6078 str r0, [r7, #4] + 8005d70: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 80059e6: 687b ldr r3, [r7, #4] - 80059e8: 6a1b ldr r3, [r3, #32] - 80059ea: 613b str r3, [r7, #16] + 8005d72: 687b ldr r3, [r7, #4] + 8005d74: 6a1b ldr r3, [r3, #32] + 8005d76: 613b str r3, [r7, #16] /* Disable the Channel 4: Reset the CC4E Bit */ TIMx->CCER &= ~TIM_CCER_CC4E; - 80059ec: 687b ldr r3, [r7, #4] - 80059ee: 6a1b ldr r3, [r3, #32] - 80059f0: f423 5280 bic.w r2, r3, #4096 @ 0x1000 - 80059f4: 687b ldr r3, [r7, #4] - 80059f6: 621a str r2, [r3, #32] + 8005d78: 687b ldr r3, [r7, #4] + 8005d7a: 6a1b ldr r3, [r3, #32] + 8005d7c: f423 5280 bic.w r2, r3, #4096 @ 0x1000 + 8005d80: 687b ldr r3, [r7, #4] + 8005d82: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 80059f8: 687b ldr r3, [r7, #4] - 80059fa: 685b ldr r3, [r3, #4] - 80059fc: 617b str r3, [r7, #20] + 8005d84: 687b ldr r3, [r7, #4] + 8005d86: 685b ldr r3, [r3, #4] + 8005d88: 617b str r3, [r7, #20] /* Get the TIMx CCMR2 register value */ tmpccmrx = TIMx->CCMR2; - 80059fe: 687b ldr r3, [r7, #4] - 8005a00: 69db ldr r3, [r3, #28] - 8005a02: 60fb str r3, [r7, #12] + 8005d8a: 687b ldr r3, [r7, #4] + 8005d8c: 69db ldr r3, [r3, #28] + 8005d8e: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR2_OC4M; - 8005a04: 68fb ldr r3, [r7, #12] - 8005a06: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 - 8005a0a: 60fb str r3, [r7, #12] + 8005d90: 68fb ldr r3, [r7, #12] + 8005d92: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 + 8005d96: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR2_CC4S; - 8005a0c: 68fb ldr r3, [r7, #12] - 8005a0e: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8005a12: 60fb str r3, [r7, #12] + 8005d98: 68fb ldr r3, [r7, #12] + 8005d9a: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8005d9e: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= (OC_Config->OCMode << 8U); - 8005a14: 683b ldr r3, [r7, #0] - 8005a16: 681b ldr r3, [r3, #0] - 8005a18: 021b lsls r3, r3, #8 - 8005a1a: 68fa ldr r2, [r7, #12] - 8005a1c: 4313 orrs r3, r2 - 8005a1e: 60fb str r3, [r7, #12] + 8005da0: 683b ldr r3, [r7, #0] + 8005da2: 681b ldr r3, [r3, #0] + 8005da4: 021b lsls r3, r3, #8 + 8005da6: 68fa ldr r2, [r7, #12] + 8005da8: 4313 orrs r3, r2 + 8005daa: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC4P; - 8005a20: 693b ldr r3, [r7, #16] - 8005a22: f423 5300 bic.w r3, r3, #8192 @ 0x2000 - 8005a26: 613b str r3, [r7, #16] + 8005dac: 693b ldr r3, [r7, #16] + 8005dae: f423 5300 bic.w r3, r3, #8192 @ 0x2000 + 8005db2: 613b str r3, [r7, #16] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 12U); - 8005a28: 683b ldr r3, [r7, #0] - 8005a2a: 689b ldr r3, [r3, #8] - 8005a2c: 031b lsls r3, r3, #12 - 8005a2e: 693a ldr r2, [r7, #16] - 8005a30: 4313 orrs r3, r2 - 8005a32: 613b str r3, [r7, #16] + 8005db4: 683b ldr r3, [r7, #0] + 8005db6: 689b ldr r3, [r3, #8] + 8005db8: 031b lsls r3, r3, #12 + 8005dba: 693a ldr r2, [r7, #16] + 8005dbc: 4313 orrs r3, r2 + 8005dbe: 613b str r3, [r7, #16] if (IS_TIM_BREAK_INSTANCE(TIMx)) - 8005a34: 687b ldr r3, [r7, #4] - 8005a36: 4a12 ldr r2, [pc, #72] @ (8005a80 ) - 8005a38: 4293 cmp r3, r2 - 8005a3a: d003 beq.n 8005a44 - 8005a3c: 687b ldr r3, [r7, #4] - 8005a3e: 4a11 ldr r2, [pc, #68] @ (8005a84 ) - 8005a40: 4293 cmp r3, r2 - 8005a42: d109 bne.n 8005a58 + 8005dc0: 687b ldr r3, [r7, #4] + 8005dc2: 4a12 ldr r2, [pc, #72] @ (8005e0c ) + 8005dc4: 4293 cmp r3, r2 + 8005dc6: d003 beq.n 8005dd0 + 8005dc8: 687b ldr r3, [r7, #4] + 8005dca: 4a11 ldr r2, [pc, #68] @ (8005e10 ) + 8005dcc: 4293 cmp r3, r2 + 8005dce: d109 bne.n 8005de4 { /* Check parameters */ assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare IDLE State */ tmpcr2 &= ~TIM_CR2_OIS4; - 8005a44: 697b ldr r3, [r7, #20] - 8005a46: f423 4380 bic.w r3, r3, #16384 @ 0x4000 - 8005a4a: 617b str r3, [r7, #20] + 8005dd0: 697b ldr r3, [r7, #20] + 8005dd2: f423 4380 bic.w r3, r3, #16384 @ 0x4000 + 8005dd6: 617b str r3, [r7, #20] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 6U); - 8005a4c: 683b ldr r3, [r7, #0] - 8005a4e: 695b ldr r3, [r3, #20] - 8005a50: 019b lsls r3, r3, #6 - 8005a52: 697a ldr r2, [r7, #20] - 8005a54: 4313 orrs r3, r2 - 8005a56: 617b str r3, [r7, #20] + 8005dd8: 683b ldr r3, [r7, #0] + 8005dda: 695b ldr r3, [r3, #20] + 8005ddc: 019b lsls r3, r3, #6 + 8005dde: 697a ldr r2, [r7, #20] + 8005de0: 4313 orrs r3, r2 + 8005de2: 617b str r3, [r7, #20] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 8005a58: 687b ldr r3, [r7, #4] - 8005a5a: 697a ldr r2, [r7, #20] - 8005a5c: 605a str r2, [r3, #4] + 8005de4: 687b ldr r3, [r7, #4] + 8005de6: 697a ldr r2, [r7, #20] + 8005de8: 605a str r2, [r3, #4] /* Write to TIMx CCMR2 */ TIMx->CCMR2 = tmpccmrx; - 8005a5e: 687b ldr r3, [r7, #4] - 8005a60: 68fa ldr r2, [r7, #12] - 8005a62: 61da str r2, [r3, #28] + 8005dea: 687b ldr r3, [r7, #4] + 8005dec: 68fa ldr r2, [r7, #12] + 8005dee: 61da str r2, [r3, #28] /* Set the Capture Compare Register value */ TIMx->CCR4 = OC_Config->Pulse; - 8005a64: 683b ldr r3, [r7, #0] - 8005a66: 685a ldr r2, [r3, #4] - 8005a68: 687b ldr r3, [r7, #4] - 8005a6a: 641a str r2, [r3, #64] @ 0x40 + 8005df0: 683b ldr r3, [r7, #0] + 8005df2: 685a ldr r2, [r3, #4] + 8005df4: 687b ldr r3, [r7, #4] + 8005df6: 641a str r2, [r3, #64] @ 0x40 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 8005a6c: 687b ldr r3, [r7, #4] - 8005a6e: 693a ldr r2, [r7, #16] - 8005a70: 621a str r2, [r3, #32] + 8005df8: 687b ldr r3, [r7, #4] + 8005dfa: 693a ldr r2, [r7, #16] + 8005dfc: 621a str r2, [r3, #32] } - 8005a72: bf00 nop - 8005a74: 371c adds r7, #28 - 8005a76: 46bd mov sp, r7 - 8005a78: f85d 7b04 ldr.w r7, [sp], #4 - 8005a7c: 4770 bx lr - 8005a7e: bf00 nop - 8005a80: 40010000 .word 0x40010000 - 8005a84: 40010400 .word 0x40010400 + 8005dfe: bf00 nop + 8005e00: 371c adds r7, #28 + 8005e02: 46bd mov sp, r7 + 8005e04: f85d 7b04 ldr.w r7, [sp], #4 + 8005e08: 4770 bx lr + 8005e0a: bf00 nop + 8005e0c: 40010000 .word 0x40010000 + 8005e10: 40010400 .word 0x40010400 -08005a88 : +08005e14 : + * @param ChannelState specifies the TIM Channel CCxE bit new state. + * This parameter can be: TIM_CCx_ENABLE or TIM_CCx_DISABLE. + * @retval None + */ +void TIM_CCxChannelCmd(TIM_TypeDef *TIMx, uint32_t Channel, uint32_t ChannelState) +{ + 8005e14: b480 push {r7} + 8005e16: b087 sub sp, #28 + 8005e18: af00 add r7, sp, #0 + 8005e1a: 60f8 str r0, [r7, #12] + 8005e1c: 60b9 str r1, [r7, #8] + 8005e1e: 607a str r2, [r7, #4] + + /* Check the parameters */ + assert_param(IS_TIM_CC1_INSTANCE(TIMx)); + assert_param(IS_TIM_CHANNELS(Channel)); + + tmp = TIM_CCER_CC1E << (Channel & 0x1FU); /* 0x1FU = 31 bits max shift */ + 8005e20: 68bb ldr r3, [r7, #8] + 8005e22: f003 031f and.w r3, r3, #31 + 8005e26: 2201 movs r2, #1 + 8005e28: fa02 f303 lsl.w r3, r2, r3 + 8005e2c: 617b str r3, [r7, #20] + + /* Reset the CCxE Bit */ + TIMx->CCER &= ~tmp; + 8005e2e: 68fb ldr r3, [r7, #12] + 8005e30: 6a1a ldr r2, [r3, #32] + 8005e32: 697b ldr r3, [r7, #20] + 8005e34: 43db mvns r3, r3 + 8005e36: 401a ands r2, r3 + 8005e38: 68fb ldr r3, [r7, #12] + 8005e3a: 621a str r2, [r3, #32] + + /* Set or reset the CCxE Bit */ + TIMx->CCER |= (uint32_t)(ChannelState << (Channel & 0x1FU)); /* 0x1FU = 31 bits max shift */ + 8005e3c: 68fb ldr r3, [r7, #12] + 8005e3e: 6a1a ldr r2, [r3, #32] + 8005e40: 68bb ldr r3, [r7, #8] + 8005e42: f003 031f and.w r3, r3, #31 + 8005e46: 6879 ldr r1, [r7, #4] + 8005e48: fa01 f303 lsl.w r3, r1, r3 + 8005e4c: 431a orrs r2, r3 + 8005e4e: 68fb ldr r3, [r7, #12] + 8005e50: 621a str r2, [r3, #32] +} + 8005e52: bf00 nop + 8005e54: 371c adds r7, #28 + 8005e56: 46bd mov sp, r7 + 8005e58: f85d 7b04 ldr.w r7, [sp], #4 + 8005e5c: 4770 bx lr + ... + +08005e60 : * mode. * @retval HAL status */ HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, const TIM_MasterConfigTypeDef *sMasterConfig) { - 8005a88: b480 push {r7} - 8005a8a: b085 sub sp, #20 - 8005a8c: af00 add r7, sp, #0 - 8005a8e: 6078 str r0, [r7, #4] - 8005a90: 6039 str r1, [r7, #0] + 8005e60: b480 push {r7} + 8005e62: b085 sub sp, #20 + 8005e64: af00 add r7, sp, #0 + 8005e66: 6078 str r0, [r7, #4] + 8005e68: 6039 str r1, [r7, #0] assert_param(IS_TIM_MASTER_INSTANCE(htim->Instance)); assert_param(IS_TIM_TRGO_SOURCE(sMasterConfig->MasterOutputTrigger)); assert_param(IS_TIM_MSM_STATE(sMasterConfig->MasterSlaveMode)); /* Check input state */ __HAL_LOCK(htim); - 8005a92: 687b ldr r3, [r7, #4] - 8005a94: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 8005a98: 2b01 cmp r3, #1 - 8005a9a: d101 bne.n 8005aa0 - 8005a9c: 2302 movs r3, #2 - 8005a9e: e05a b.n 8005b56 - 8005aa0: 687b ldr r3, [r7, #4] - 8005aa2: 2201 movs r2, #1 - 8005aa4: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8005e6a: 687b ldr r3, [r7, #4] + 8005e6c: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 8005e70: 2b01 cmp r3, #1 + 8005e72: d101 bne.n 8005e78 + 8005e74: 2302 movs r3, #2 + 8005e76: e05a b.n 8005f2e + 8005e78: 687b ldr r3, [r7, #4] + 8005e7a: 2201 movs r2, #1 + 8005e7c: f883 203c strb.w r2, [r3, #60] @ 0x3c /* Change the handler state */ htim->State = HAL_TIM_STATE_BUSY; - 8005aa8: 687b ldr r3, [r7, #4] - 8005aaa: 2202 movs r2, #2 - 8005aac: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005e80: 687b ldr r3, [r7, #4] + 8005e82: 2202 movs r2, #2 + 8005e84: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Get the TIMx CR2 register value */ tmpcr2 = htim->Instance->CR2; - 8005ab0: 687b ldr r3, [r7, #4] - 8005ab2: 681b ldr r3, [r3, #0] - 8005ab4: 685b ldr r3, [r3, #4] - 8005ab6: 60fb str r3, [r7, #12] + 8005e88: 687b ldr r3, [r7, #4] + 8005e8a: 681b ldr r3, [r3, #0] + 8005e8c: 685b ldr r3, [r3, #4] + 8005e8e: 60fb str r3, [r7, #12] /* Get the TIMx SMCR register value */ tmpsmcr = htim->Instance->SMCR; - 8005ab8: 687b ldr r3, [r7, #4] - 8005aba: 681b ldr r3, [r3, #0] - 8005abc: 689b ldr r3, [r3, #8] - 8005abe: 60bb str r3, [r7, #8] + 8005e90: 687b ldr r3, [r7, #4] + 8005e92: 681b ldr r3, [r3, #0] + 8005e94: 689b ldr r3, [r3, #8] + 8005e96: 60bb str r3, [r7, #8] /* Reset the MMS Bits */ tmpcr2 &= ~TIM_CR2_MMS; - 8005ac0: 68fb ldr r3, [r7, #12] - 8005ac2: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8005ac6: 60fb str r3, [r7, #12] + 8005e98: 68fb ldr r3, [r7, #12] + 8005e9a: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8005e9e: 60fb str r3, [r7, #12] /* Select the TRGO source */ tmpcr2 |= sMasterConfig->MasterOutputTrigger; - 8005ac8: 683b ldr r3, [r7, #0] - 8005aca: 681b ldr r3, [r3, #0] - 8005acc: 68fa ldr r2, [r7, #12] - 8005ace: 4313 orrs r3, r2 - 8005ad0: 60fb str r3, [r7, #12] + 8005ea0: 683b ldr r3, [r7, #0] + 8005ea2: 681b ldr r3, [r3, #0] + 8005ea4: 68fa ldr r2, [r7, #12] + 8005ea6: 4313 orrs r3, r2 + 8005ea8: 60fb str r3, [r7, #12] /* Update TIMx CR2 */ htim->Instance->CR2 = tmpcr2; - 8005ad2: 687b ldr r3, [r7, #4] - 8005ad4: 681b ldr r3, [r3, #0] - 8005ad6: 68fa ldr r2, [r7, #12] - 8005ad8: 605a str r2, [r3, #4] + 8005eaa: 687b ldr r3, [r7, #4] + 8005eac: 681b ldr r3, [r3, #0] + 8005eae: 68fa ldr r2, [r7, #12] + 8005eb0: 605a str r2, [r3, #4] if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 8005ada: 687b ldr r3, [r7, #4] - 8005adc: 681b ldr r3, [r3, #0] - 8005ade: 4a21 ldr r2, [pc, #132] @ (8005b64 ) - 8005ae0: 4293 cmp r3, r2 - 8005ae2: d022 beq.n 8005b2a - 8005ae4: 687b ldr r3, [r7, #4] - 8005ae6: 681b ldr r3, [r3, #0] - 8005ae8: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8005aec: d01d beq.n 8005b2a - 8005aee: 687b ldr r3, [r7, #4] - 8005af0: 681b ldr r3, [r3, #0] - 8005af2: 4a1d ldr r2, [pc, #116] @ (8005b68 ) - 8005af4: 4293 cmp r3, r2 - 8005af6: d018 beq.n 8005b2a - 8005af8: 687b ldr r3, [r7, #4] - 8005afa: 681b ldr r3, [r3, #0] - 8005afc: 4a1b ldr r2, [pc, #108] @ (8005b6c ) - 8005afe: 4293 cmp r3, r2 - 8005b00: d013 beq.n 8005b2a - 8005b02: 687b ldr r3, [r7, #4] - 8005b04: 681b ldr r3, [r3, #0] - 8005b06: 4a1a ldr r2, [pc, #104] @ (8005b70 ) - 8005b08: 4293 cmp r3, r2 - 8005b0a: d00e beq.n 8005b2a - 8005b0c: 687b ldr r3, [r7, #4] - 8005b0e: 681b ldr r3, [r3, #0] - 8005b10: 4a18 ldr r2, [pc, #96] @ (8005b74 ) - 8005b12: 4293 cmp r3, r2 - 8005b14: d009 beq.n 8005b2a - 8005b16: 687b ldr r3, [r7, #4] - 8005b18: 681b ldr r3, [r3, #0] - 8005b1a: 4a17 ldr r2, [pc, #92] @ (8005b78 ) - 8005b1c: 4293 cmp r3, r2 - 8005b1e: d004 beq.n 8005b2a - 8005b20: 687b ldr r3, [r7, #4] - 8005b22: 681b ldr r3, [r3, #0] - 8005b24: 4a15 ldr r2, [pc, #84] @ (8005b7c ) - 8005b26: 4293 cmp r3, r2 - 8005b28: d10c bne.n 8005b44 + 8005eb2: 687b ldr r3, [r7, #4] + 8005eb4: 681b ldr r3, [r3, #0] + 8005eb6: 4a21 ldr r2, [pc, #132] @ (8005f3c ) + 8005eb8: 4293 cmp r3, r2 + 8005eba: d022 beq.n 8005f02 + 8005ebc: 687b ldr r3, [r7, #4] + 8005ebe: 681b ldr r3, [r3, #0] + 8005ec0: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8005ec4: d01d beq.n 8005f02 + 8005ec6: 687b ldr r3, [r7, #4] + 8005ec8: 681b ldr r3, [r3, #0] + 8005eca: 4a1d ldr r2, [pc, #116] @ (8005f40 ) + 8005ecc: 4293 cmp r3, r2 + 8005ece: d018 beq.n 8005f02 + 8005ed0: 687b ldr r3, [r7, #4] + 8005ed2: 681b ldr r3, [r3, #0] + 8005ed4: 4a1b ldr r2, [pc, #108] @ (8005f44 ) + 8005ed6: 4293 cmp r3, r2 + 8005ed8: d013 beq.n 8005f02 + 8005eda: 687b ldr r3, [r7, #4] + 8005edc: 681b ldr r3, [r3, #0] + 8005ede: 4a1a ldr r2, [pc, #104] @ (8005f48 ) + 8005ee0: 4293 cmp r3, r2 + 8005ee2: d00e beq.n 8005f02 + 8005ee4: 687b ldr r3, [r7, #4] + 8005ee6: 681b ldr r3, [r3, #0] + 8005ee8: 4a18 ldr r2, [pc, #96] @ (8005f4c ) + 8005eea: 4293 cmp r3, r2 + 8005eec: d009 beq.n 8005f02 + 8005eee: 687b ldr r3, [r7, #4] + 8005ef0: 681b ldr r3, [r3, #0] + 8005ef2: 4a17 ldr r2, [pc, #92] @ (8005f50 ) + 8005ef4: 4293 cmp r3, r2 + 8005ef6: d004 beq.n 8005f02 + 8005ef8: 687b ldr r3, [r7, #4] + 8005efa: 681b ldr r3, [r3, #0] + 8005efc: 4a15 ldr r2, [pc, #84] @ (8005f54 ) + 8005efe: 4293 cmp r3, r2 + 8005f00: d10c bne.n 8005f1c { /* Reset the MSM Bit */ tmpsmcr &= ~TIM_SMCR_MSM; - 8005b2a: 68bb ldr r3, [r7, #8] - 8005b2c: f023 0380 bic.w r3, r3, #128 @ 0x80 - 8005b30: 60bb str r3, [r7, #8] + 8005f02: 68bb ldr r3, [r7, #8] + 8005f04: f023 0380 bic.w r3, r3, #128 @ 0x80 + 8005f08: 60bb str r3, [r7, #8] /* Set master mode */ tmpsmcr |= sMasterConfig->MasterSlaveMode; - 8005b32: 683b ldr r3, [r7, #0] - 8005b34: 685b ldr r3, [r3, #4] - 8005b36: 68ba ldr r2, [r7, #8] - 8005b38: 4313 orrs r3, r2 - 8005b3a: 60bb str r3, [r7, #8] + 8005f0a: 683b ldr r3, [r7, #0] + 8005f0c: 685b ldr r3, [r3, #4] + 8005f0e: 68ba ldr r2, [r7, #8] + 8005f10: 4313 orrs r3, r2 + 8005f12: 60bb str r3, [r7, #8] /* Update TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 8005b3c: 687b ldr r3, [r7, #4] - 8005b3e: 681b ldr r3, [r3, #0] - 8005b40: 68ba ldr r2, [r7, #8] - 8005b42: 609a str r2, [r3, #8] + 8005f14: 687b ldr r3, [r7, #4] + 8005f16: 681b ldr r3, [r3, #0] + 8005f18: 68ba ldr r2, [r7, #8] + 8005f1a: 609a str r2, [r3, #8] } /* Change the htim state */ htim->State = HAL_TIM_STATE_READY; - 8005b44: 687b ldr r3, [r7, #4] - 8005b46: 2201 movs r2, #1 - 8005b48: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005f1c: 687b ldr r3, [r7, #4] + 8005f1e: 2201 movs r2, #1 + 8005f20: f883 203d strb.w r2, [r3, #61] @ 0x3d __HAL_UNLOCK(htim); - 8005b4c: 687b ldr r3, [r7, #4] - 8005b4e: 2200 movs r2, #0 - 8005b50: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8005f24: 687b ldr r3, [r7, #4] + 8005f26: 2200 movs r2, #0 + 8005f28: f883 203c strb.w r2, [r3, #60] @ 0x3c return HAL_OK; - 8005b54: 2300 movs r3, #0 + 8005f2c: 2300 movs r3, #0 } - 8005b56: 4618 mov r0, r3 - 8005b58: 3714 adds r7, #20 - 8005b5a: 46bd mov sp, r7 - 8005b5c: f85d 7b04 ldr.w r7, [sp], #4 - 8005b60: 4770 bx lr - 8005b62: bf00 nop - 8005b64: 40010000 .word 0x40010000 - 8005b68: 40000400 .word 0x40000400 - 8005b6c: 40000800 .word 0x40000800 - 8005b70: 40000c00 .word 0x40000c00 - 8005b74: 40010400 .word 0x40010400 - 8005b78: 40014000 .word 0x40014000 - 8005b7c: 40001800 .word 0x40001800 + 8005f2e: 4618 mov r0, r3 + 8005f30: 3714 adds r7, #20 + 8005f32: 46bd mov sp, r7 + 8005f34: f85d 7b04 ldr.w r7, [sp], #4 + 8005f38: 4770 bx lr + 8005f3a: bf00 nop + 8005f3c: 40010000 .word 0x40010000 + 8005f40: 40000400 .word 0x40000400 + 8005f44: 40000800 .word 0x40000800 + 8005f48: 40000c00 .word 0x40000c00 + 8005f4c: 40010400 .word 0x40010400 + 8005f50: 40014000 .word 0x40014000 + 8005f54: 40001800 .word 0x40001800 -08005b80 : +08005f58 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart) { - 8005b80: b580 push {r7, lr} - 8005b82: b082 sub sp, #8 - 8005b84: af00 add r7, sp, #0 - 8005b86: 6078 str r0, [r7, #4] + 8005f58: b580 push {r7, lr} + 8005f5a: b082 sub sp, #8 + 8005f5c: af00 add r7, sp, #0 + 8005f5e: 6078 str r0, [r7, #4] /* Check the UART handle allocation */ if (huart == NULL) - 8005b88: 687b ldr r3, [r7, #4] - 8005b8a: 2b00 cmp r3, #0 - 8005b8c: d101 bne.n 8005b92 + 8005f60: 687b ldr r3, [r7, #4] + 8005f62: 2b00 cmp r3, #0 + 8005f64: d101 bne.n 8005f6a { return HAL_ERROR; - 8005b8e: 2301 movs r3, #1 - 8005b90: e042 b.n 8005c18 + 8005f66: 2301 movs r3, #1 + 8005f68: e042 b.n 8005ff0 assert_param(IS_UART_INSTANCE(huart->Instance)); } assert_param(IS_UART_WORD_LENGTH(huart->Init.WordLength)); assert_param(IS_UART_OVERSAMPLING(huart->Init.OverSampling)); if (huart->gState == HAL_UART_STATE_RESET) - 8005b92: 687b ldr r3, [r7, #4] - 8005b94: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8005b98: b2db uxtb r3, r3 - 8005b9a: 2b00 cmp r3, #0 - 8005b9c: d106 bne.n 8005bac + 8005f6a: 687b ldr r3, [r7, #4] + 8005f6c: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8005f70: b2db uxtb r3, r3 + 8005f72: 2b00 cmp r3, #0 + 8005f74: d106 bne.n 8005f84 { /* Allocate lock resource and initialize it */ huart->Lock = HAL_UNLOCKED; - 8005b9e: 687b ldr r3, [r7, #4] - 8005ba0: 2200 movs r2, #0 - 8005ba2: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8005f76: 687b ldr r3, [r7, #4] + 8005f78: 2200 movs r2, #0 + 8005f7a: f883 2040 strb.w r2, [r3, #64] @ 0x40 /* Init the low level hardware */ huart->MspInitCallback(huart); #else /* Init the low level hardware : GPIO, CLOCK */ HAL_UART_MspInit(huart); - 8005ba6: 6878 ldr r0, [r7, #4] - 8005ba8: f7fb fc8e bl 80014c8 + 8005f7e: 6878 ldr r0, [r7, #4] + 8005f80: f7fb fbda bl 8001738 #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } huart->gState = HAL_UART_STATE_BUSY; - 8005bac: 687b ldr r3, [r7, #4] - 8005bae: 2224 movs r2, #36 @ 0x24 - 8005bb0: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005f84: 687b ldr r3, [r7, #4] + 8005f86: 2224 movs r2, #36 @ 0x24 + 8005f88: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Disable the peripheral */ __HAL_UART_DISABLE(huart); - 8005bb4: 687b ldr r3, [r7, #4] - 8005bb6: 681b ldr r3, [r3, #0] - 8005bb8: 68da ldr r2, [r3, #12] - 8005bba: 687b ldr r3, [r7, #4] - 8005bbc: 681b ldr r3, [r3, #0] - 8005bbe: f422 5200 bic.w r2, r2, #8192 @ 0x2000 - 8005bc2: 60da str r2, [r3, #12] + 8005f8c: 687b ldr r3, [r7, #4] + 8005f8e: 681b ldr r3, [r3, #0] + 8005f90: 68da ldr r2, [r3, #12] + 8005f92: 687b ldr r3, [r7, #4] + 8005f94: 681b ldr r3, [r3, #0] + 8005f96: f422 5200 bic.w r2, r2, #8192 @ 0x2000 + 8005f9a: 60da str r2, [r3, #12] /* Set the UART Communication parameters */ UART_SetConfig(huart); - 8005bc4: 6878 ldr r0, [r7, #4] - 8005bc6: f000 ff63 bl 8006a90 + 8005f9c: 6878 ldr r0, [r7, #4] + 8005f9e: f000 ff63 bl 8006e68 /* In asynchronous mode, the following bits must be kept cleared: - LINEN and CLKEN bits in the USART_CR2 register, - SCEN, HDSEL and IREN bits in the USART_CR3 register.*/ CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); - 8005bca: 687b ldr r3, [r7, #4] - 8005bcc: 681b ldr r3, [r3, #0] - 8005bce: 691a ldr r2, [r3, #16] - 8005bd0: 687b ldr r3, [r7, #4] - 8005bd2: 681b ldr r3, [r3, #0] - 8005bd4: f422 4290 bic.w r2, r2, #18432 @ 0x4800 - 8005bd8: 611a str r2, [r3, #16] + 8005fa2: 687b ldr r3, [r7, #4] + 8005fa4: 681b ldr r3, [r3, #0] + 8005fa6: 691a ldr r2, [r3, #16] + 8005fa8: 687b ldr r3, [r7, #4] + 8005faa: 681b ldr r3, [r3, #0] + 8005fac: f422 4290 bic.w r2, r2, #18432 @ 0x4800 + 8005fb0: 611a str r2, [r3, #16] CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); - 8005bda: 687b ldr r3, [r7, #4] - 8005bdc: 681b ldr r3, [r3, #0] - 8005bde: 695a ldr r2, [r3, #20] - 8005be0: 687b ldr r3, [r7, #4] - 8005be2: 681b ldr r3, [r3, #0] - 8005be4: f022 022a bic.w r2, r2, #42 @ 0x2a - 8005be8: 615a str r2, [r3, #20] + 8005fb2: 687b ldr r3, [r7, #4] + 8005fb4: 681b ldr r3, [r3, #0] + 8005fb6: 695a ldr r2, [r3, #20] + 8005fb8: 687b ldr r3, [r7, #4] + 8005fba: 681b ldr r3, [r3, #0] + 8005fbc: f022 022a bic.w r2, r2, #42 @ 0x2a + 8005fc0: 615a str r2, [r3, #20] /* Enable the peripheral */ __HAL_UART_ENABLE(huart); - 8005bea: 687b ldr r3, [r7, #4] - 8005bec: 681b ldr r3, [r3, #0] - 8005bee: 68da ldr r2, [r3, #12] - 8005bf0: 687b ldr r3, [r7, #4] - 8005bf2: 681b ldr r3, [r3, #0] - 8005bf4: f442 5200 orr.w r2, r2, #8192 @ 0x2000 - 8005bf8: 60da str r2, [r3, #12] + 8005fc2: 687b ldr r3, [r7, #4] + 8005fc4: 681b ldr r3, [r3, #0] + 8005fc6: 68da ldr r2, [r3, #12] + 8005fc8: 687b ldr r3, [r7, #4] + 8005fca: 681b ldr r3, [r3, #0] + 8005fcc: f442 5200 orr.w r2, r2, #8192 @ 0x2000 + 8005fd0: 60da str r2, [r3, #12] /* Initialize the UART state */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005bfa: 687b ldr r3, [r7, #4] - 8005bfc: 2200 movs r2, #0 - 8005bfe: 645a str r2, [r3, #68] @ 0x44 + 8005fd2: 687b ldr r3, [r7, #4] + 8005fd4: 2200 movs r2, #0 + 8005fd6: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_READY; - 8005c00: 687b ldr r3, [r7, #4] - 8005c02: 2220 movs r2, #32 - 8005c04: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005fd8: 687b ldr r3, [r7, #4] + 8005fda: 2220 movs r2, #32 + 8005fdc: f883 2041 strb.w r2, [r3, #65] @ 0x41 huart->RxState = HAL_UART_STATE_READY; - 8005c08: 687b ldr r3, [r7, #4] - 8005c0a: 2220 movs r2, #32 - 8005c0c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8005fe0: 687b ldr r3, [r7, #4] + 8005fe2: 2220 movs r2, #32 + 8005fe4: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->RxEventType = HAL_UART_RXEVENT_TC; - 8005c10: 687b ldr r3, [r7, #4] - 8005c12: 2200 movs r2, #0 - 8005c14: 635a str r2, [r3, #52] @ 0x34 + 8005fe8: 687b ldr r3, [r7, #4] + 8005fea: 2200 movs r2, #0 + 8005fec: 635a str r2, [r3, #52] @ 0x34 return HAL_OK; - 8005c16: 2300 movs r3, #0 + 8005fee: 2300 movs r3, #0 } - 8005c18: 4618 mov r0, r3 - 8005c1a: 3708 adds r7, #8 - 8005c1c: 46bd mov sp, r7 - 8005c1e: bd80 pop {r7, pc} + 8005ff0: 4618 mov r0, r3 + 8005ff2: 3708 adds r7, #8 + 8005ff4: 46bd mov sp, r7 + 8005ff6: bd80 pop {r7, pc} -08005c20 : +08005ff8 : * @param pData Pointer to data buffer (u8 or u16 data elements). * @param Size Amount of data elements (u8 or u16) to be sent * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Transmit_DMA(UART_HandleTypeDef *huart, const uint8_t *pData, uint16_t Size) { - 8005c20: b580 push {r7, lr} - 8005c22: b08c sub sp, #48 @ 0x30 - 8005c24: af00 add r7, sp, #0 - 8005c26: 60f8 str r0, [r7, #12] - 8005c28: 60b9 str r1, [r7, #8] - 8005c2a: 4613 mov r3, r2 - 8005c2c: 80fb strh r3, [r7, #6] + 8005ff8: b580 push {r7, lr} + 8005ffa: b08c sub sp, #48 @ 0x30 + 8005ffc: af00 add r7, sp, #0 + 8005ffe: 60f8 str r0, [r7, #12] + 8006000: 60b9 str r1, [r7, #8] + 8006002: 4613 mov r3, r2 + 8006004: 80fb strh r3, [r7, #6] const uint32_t *tmp; /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) - 8005c2e: 68fb ldr r3, [r7, #12] - 8005c30: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8005c34: b2db uxtb r3, r3 - 8005c36: 2b20 cmp r3, #32 - 8005c38: d162 bne.n 8005d00 + 8006006: 68fb ldr r3, [r7, #12] + 8006008: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 800600c: b2db uxtb r3, r3 + 800600e: 2b20 cmp r3, #32 + 8006010: d162 bne.n 80060d8 { if ((pData == NULL) || (Size == 0U)) - 8005c3a: 68bb ldr r3, [r7, #8] - 8005c3c: 2b00 cmp r3, #0 - 8005c3e: d002 beq.n 8005c46 - 8005c40: 88fb ldrh r3, [r7, #6] - 8005c42: 2b00 cmp r3, #0 - 8005c44: d101 bne.n 8005c4a + 8006012: 68bb ldr r3, [r7, #8] + 8006014: 2b00 cmp r3, #0 + 8006016: d002 beq.n 800601e + 8006018: 88fb ldrh r3, [r7, #6] + 800601a: 2b00 cmp r3, #0 + 800601c: d101 bne.n 8006022 { return HAL_ERROR; - 8005c46: 2301 movs r3, #1 - 8005c48: e05b b.n 8005d02 + 800601e: 2301 movs r3, #1 + 8006020: e05b b.n 80060da } huart->pTxBuffPtr = pData; - 8005c4a: 68ba ldr r2, [r7, #8] - 8005c4c: 68fb ldr r3, [r7, #12] - 8005c4e: 621a str r2, [r3, #32] + 8006022: 68ba ldr r2, [r7, #8] + 8006024: 68fb ldr r3, [r7, #12] + 8006026: 621a str r2, [r3, #32] huart->TxXferSize = Size; - 8005c50: 68fb ldr r3, [r7, #12] - 8005c52: 88fa ldrh r2, [r7, #6] - 8005c54: 849a strh r2, [r3, #36] @ 0x24 + 8006028: 68fb ldr r3, [r7, #12] + 800602a: 88fa ldrh r2, [r7, #6] + 800602c: 849a strh r2, [r3, #36] @ 0x24 huart->TxXferCount = Size; - 8005c56: 68fb ldr r3, [r7, #12] - 8005c58: 88fa ldrh r2, [r7, #6] - 8005c5a: 84da strh r2, [r3, #38] @ 0x26 + 800602e: 68fb ldr r3, [r7, #12] + 8006030: 88fa ldrh r2, [r7, #6] + 8006032: 84da strh r2, [r3, #38] @ 0x26 huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005c5c: 68fb ldr r3, [r7, #12] - 8005c5e: 2200 movs r2, #0 - 8005c60: 645a str r2, [r3, #68] @ 0x44 + 8006034: 68fb ldr r3, [r7, #12] + 8006036: 2200 movs r2, #0 + 8006038: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_BUSY_TX; - 8005c62: 68fb ldr r3, [r7, #12] - 8005c64: 2221 movs r2, #33 @ 0x21 - 8005c66: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 800603a: 68fb ldr r3, [r7, #12] + 800603c: 2221 movs r2, #33 @ 0x21 + 800603e: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Set the UART DMA transfer complete callback */ huart->hdmatx->XferCpltCallback = UART_DMATransmitCplt; - 8005c6a: 68fb ldr r3, [r7, #12] - 8005c6c: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005c6e: 4a27 ldr r2, [pc, #156] @ (8005d0c ) - 8005c70: 63da str r2, [r3, #60] @ 0x3c + 8006042: 68fb ldr r3, [r7, #12] + 8006044: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006046: 4a27 ldr r2, [pc, #156] @ (80060e4 ) + 8006048: 63da str r2, [r3, #60] @ 0x3c /* Set the UART DMA Half transfer complete callback */ huart->hdmatx->XferHalfCpltCallback = UART_DMATxHalfCplt; - 8005c72: 68fb ldr r3, [r7, #12] - 8005c74: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005c76: 4a26 ldr r2, [pc, #152] @ (8005d10 ) - 8005c78: 641a str r2, [r3, #64] @ 0x40 + 800604a: 68fb ldr r3, [r7, #12] + 800604c: 6b9b ldr r3, [r3, #56] @ 0x38 + 800604e: 4a26 ldr r2, [pc, #152] @ (80060e8 ) + 8006050: 641a str r2, [r3, #64] @ 0x40 /* Set the DMA error callback */ huart->hdmatx->XferErrorCallback = UART_DMAError; - 8005c7a: 68fb ldr r3, [r7, #12] - 8005c7c: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005c7e: 4a25 ldr r2, [pc, #148] @ (8005d14 ) - 8005c80: 64da str r2, [r3, #76] @ 0x4c + 8006052: 68fb ldr r3, [r7, #12] + 8006054: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006056: 4a25 ldr r2, [pc, #148] @ (80060ec ) + 8006058: 64da str r2, [r3, #76] @ 0x4c /* Set the DMA abort callback */ huart->hdmatx->XferAbortCallback = NULL; - 8005c82: 68fb ldr r3, [r7, #12] - 8005c84: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005c86: 2200 movs r2, #0 - 8005c88: 651a str r2, [r3, #80] @ 0x50 + 800605a: 68fb ldr r3, [r7, #12] + 800605c: 6b9b ldr r3, [r3, #56] @ 0x38 + 800605e: 2200 movs r2, #0 + 8006060: 651a str r2, [r3, #80] @ 0x50 /* Enable the UART transmit DMA stream */ tmp = (const uint32_t *)&pData; - 8005c8a: f107 0308 add.w r3, r7, #8 - 8005c8e: 62fb str r3, [r7, #44] @ 0x2c + 8006062: f107 0308 add.w r3, r7, #8 + 8006066: 62fb str r3, [r7, #44] @ 0x2c if (HAL_DMA_Start_IT(huart->hdmatx, *(const uint32_t *)tmp, (uint32_t)&huart->Instance->DR, Size) != HAL_OK) - 8005c90: 68fb ldr r3, [r7, #12] - 8005c92: 6b98 ldr r0, [r3, #56] @ 0x38 - 8005c94: 6afb ldr r3, [r7, #44] @ 0x2c - 8005c96: 6819 ldr r1, [r3, #0] - 8005c98: 68fb ldr r3, [r7, #12] - 8005c9a: 681b ldr r3, [r3, #0] - 8005c9c: 3304 adds r3, #4 - 8005c9e: 461a mov r2, r3 - 8005ca0: 88fb ldrh r3, [r7, #6] - 8005ca2: f7fc f953 bl 8001f4c - 8005ca6: 4603 mov r3, r0 - 8005ca8: 2b00 cmp r3, #0 - 8005caa: d008 beq.n 8005cbe + 8006068: 68fb ldr r3, [r7, #12] + 800606a: 6b98 ldr r0, [r3, #56] @ 0x38 + 800606c: 6afb ldr r3, [r7, #44] @ 0x2c + 800606e: 6819 ldr r1, [r3, #0] + 8006070: 68fb ldr r3, [r7, #12] + 8006072: 681b ldr r3, [r3, #0] + 8006074: 3304 adds r3, #4 + 8006076: 461a mov r2, r3 + 8006078: 88fb ldrh r3, [r7, #6] + 800607a: f7fc f89f bl 80021bc + 800607e: 4603 mov r3, r0 + 8006080: 2b00 cmp r3, #0 + 8006082: d008 beq.n 8006096 { /* Set error code to DMA */ huart->ErrorCode = HAL_UART_ERROR_DMA; - 8005cac: 68fb ldr r3, [r7, #12] - 8005cae: 2210 movs r2, #16 - 8005cb0: 645a str r2, [r3, #68] @ 0x44 + 8006084: 68fb ldr r3, [r7, #12] + 8006086: 2210 movs r2, #16 + 8006088: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->gState to ready */ huart->gState = HAL_UART_STATE_READY; - 8005cb2: 68fb ldr r3, [r7, #12] - 8005cb4: 2220 movs r2, #32 - 8005cb6: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 800608a: 68fb ldr r3, [r7, #12] + 800608c: 2220 movs r2, #32 + 800608e: f883 2041 strb.w r2, [r3, #65] @ 0x41 return HAL_ERROR; - 8005cba: 2301 movs r3, #1 - 8005cbc: e021 b.n 8005d02 + 8006092: 2301 movs r3, #1 + 8006094: e021 b.n 80060da } /* Clear the TC flag in the SR register by writing 0 to it */ __HAL_UART_CLEAR_FLAG(huart, UART_FLAG_TC); - 8005cbe: 68fb ldr r3, [r7, #12] - 8005cc0: 681b ldr r3, [r3, #0] - 8005cc2: f06f 0240 mvn.w r2, #64 @ 0x40 - 8005cc6: 601a str r2, [r3, #0] + 8006096: 68fb ldr r3, [r7, #12] + 8006098: 681b ldr r3, [r3, #0] + 800609a: f06f 0240 mvn.w r2, #64 @ 0x40 + 800609e: 601a str r2, [r3, #0] /* Enable the DMA transfer for transmit request by setting the DMAT bit in the UART CR3 register */ ATOMIC_SET_BIT(huart->Instance->CR3, USART_CR3_DMAT); - 8005cc8: 68fb ldr r3, [r7, #12] - 8005cca: 681b ldr r3, [r3, #0] - 8005ccc: 3314 adds r3, #20 - 8005cce: 61bb str r3, [r7, #24] + 80060a0: 68fb ldr r3, [r7, #12] + 80060a2: 681b ldr r3, [r3, #0] + 80060a4: 3314 adds r3, #20 + 80060a6: 61bb str r3, [r7, #24] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8005cd0: 69bb ldr r3, [r7, #24] - 8005cd2: e853 3f00 ldrex r3, [r3] - 8005cd6: 617b str r3, [r7, #20] + 80060a8: 69bb ldr r3, [r7, #24] + 80060aa: e853 3f00 ldrex r3, [r3] + 80060ae: 617b str r3, [r7, #20] return(result); - 8005cd8: 697b ldr r3, [r7, #20] - 8005cda: f043 0380 orr.w r3, r3, #128 @ 0x80 - 8005cde: 62bb str r3, [r7, #40] @ 0x28 - 8005ce0: 68fb ldr r3, [r7, #12] - 8005ce2: 681b ldr r3, [r3, #0] - 8005ce4: 3314 adds r3, #20 - 8005ce6: 6aba ldr r2, [r7, #40] @ 0x28 - 8005ce8: 627a str r2, [r7, #36] @ 0x24 - 8005cea: 623b str r3, [r7, #32] + 80060b0: 697b ldr r3, [r7, #20] + 80060b2: f043 0380 orr.w r3, r3, #128 @ 0x80 + 80060b6: 62bb str r3, [r7, #40] @ 0x28 + 80060b8: 68fb ldr r3, [r7, #12] + 80060ba: 681b ldr r3, [r3, #0] + 80060bc: 3314 adds r3, #20 + 80060be: 6aba ldr r2, [r7, #40] @ 0x28 + 80060c0: 627a str r2, [r7, #36] @ 0x24 + 80060c2: 623b str r3, [r7, #32] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8005cec: 6a39 ldr r1, [r7, #32] - 8005cee: 6a7a ldr r2, [r7, #36] @ 0x24 - 8005cf0: e841 2300 strex r3, r2, [r1] - 8005cf4: 61fb str r3, [r7, #28] + 80060c4: 6a39 ldr r1, [r7, #32] + 80060c6: 6a7a ldr r2, [r7, #36] @ 0x24 + 80060c8: e841 2300 strex r3, r2, [r1] + 80060cc: 61fb str r3, [r7, #28] return(result); - 8005cf6: 69fb ldr r3, [r7, #28] - 8005cf8: 2b00 cmp r3, #0 - 8005cfa: d1e5 bne.n 8005cc8 + 80060ce: 69fb ldr r3, [r7, #28] + 80060d0: 2b00 cmp r3, #0 + 80060d2: d1e5 bne.n 80060a0 return HAL_OK; - 8005cfc: 2300 movs r3, #0 - 8005cfe: e000 b.n 8005d02 + 80060d4: 2300 movs r3, #0 + 80060d6: e000 b.n 80060da } else { return HAL_BUSY; - 8005d00: 2302 movs r3, #2 + 80060d8: 2302 movs r3, #2 } } - 8005d02: 4618 mov r0, r3 - 8005d04: 3730 adds r7, #48 @ 0x30 - 8005d06: 46bd mov sp, r7 - 8005d08: bd80 pop {r7, pc} - 8005d0a: bf00 nop - 8005d0c: 0800630d .word 0x0800630d - 8005d10: 080063a7 .word 0x080063a7 - 8005d14: 0800652b .word 0x0800652b + 80060da: 4618 mov r0, r3 + 80060dc: 3730 adds r7, #48 @ 0x30 + 80060de: 46bd mov sp, r7 + 80060e0: bd80 pop {r7, pc} + 80060e2: bf00 nop + 80060e4: 080066e5 .word 0x080066e5 + 80060e8: 0800677f .word 0x0800677f + 80060ec: 08006903 .word 0x08006903 -08005d18 : +080060f0 : * @param Size Amount of data elements (u8 or u16) to be received. * @note When the UART parity is enabled (PCE = 1) the received data contains the parity bit. * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) { - 8005d18: b580 push {r7, lr} - 8005d1a: b084 sub sp, #16 - 8005d1c: af00 add r7, sp, #0 - 8005d1e: 60f8 str r0, [r7, #12] - 8005d20: 60b9 str r1, [r7, #8] - 8005d22: 4613 mov r3, r2 - 8005d24: 80fb strh r3, [r7, #6] + 80060f0: b580 push {r7, lr} + 80060f2: b084 sub sp, #16 + 80060f4: af00 add r7, sp, #0 + 80060f6: 60f8 str r0, [r7, #12] + 80060f8: 60b9 str r1, [r7, #8] + 80060fa: 4613 mov r3, r2 + 80060fc: 80fb strh r3, [r7, #6] /* Check that a Rx process is not already ongoing */ if (huart->RxState == HAL_UART_STATE_READY) - 8005d26: 68fb ldr r3, [r7, #12] - 8005d28: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8005d2c: b2db uxtb r3, r3 - 8005d2e: 2b20 cmp r3, #32 - 8005d30: d112 bne.n 8005d58 + 80060fe: 68fb ldr r3, [r7, #12] + 8006100: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8006104: b2db uxtb r3, r3 + 8006106: 2b20 cmp r3, #32 + 8006108: d112 bne.n 8006130 { if ((pData == NULL) || (Size == 0U)) - 8005d32: 68bb ldr r3, [r7, #8] - 8005d34: 2b00 cmp r3, #0 - 8005d36: d002 beq.n 8005d3e - 8005d38: 88fb ldrh r3, [r7, #6] - 8005d3a: 2b00 cmp r3, #0 - 8005d3c: d101 bne.n 8005d42 + 800610a: 68bb ldr r3, [r7, #8] + 800610c: 2b00 cmp r3, #0 + 800610e: d002 beq.n 8006116 + 8006110: 88fb ldrh r3, [r7, #6] + 8006112: 2b00 cmp r3, #0 + 8006114: d101 bne.n 800611a { return HAL_ERROR; - 8005d3e: 2301 movs r3, #1 - 8005d40: e00b b.n 8005d5a + 8006116: 2301 movs r3, #1 + 8006118: e00b b.n 8006132 } /* Set Reception type to Standard reception */ huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8005d42: 68fb ldr r3, [r7, #12] - 8005d44: 2200 movs r2, #0 - 8005d46: 631a str r2, [r3, #48] @ 0x30 + 800611a: 68fb ldr r3, [r7, #12] + 800611c: 2200 movs r2, #0 + 800611e: 631a str r2, [r3, #48] @ 0x30 return (UART_Start_Receive_DMA(huart, pData, Size)); - 8005d48: 88fb ldrh r3, [r7, #6] - 8005d4a: 461a mov r2, r3 - 8005d4c: 68b9 ldr r1, [r7, #8] - 8005d4e: 68f8 ldr r0, [r7, #12] - 8005d50: f000 fc36 bl 80065c0 - 8005d54: 4603 mov r3, r0 - 8005d56: e000 b.n 8005d5a + 8006120: 88fb ldrh r3, [r7, #6] + 8006122: 461a mov r2, r3 + 8006124: 68b9 ldr r1, [r7, #8] + 8006126: 68f8 ldr r0, [r7, #12] + 8006128: f000 fc36 bl 8006998 + 800612c: 4603 mov r3, r0 + 800612e: e000 b.n 8006132 } else { return HAL_BUSY; - 8005d58: 2302 movs r3, #2 + 8006130: 2302 movs r3, #2 } } - 8005d5a: 4618 mov r0, r3 - 8005d5c: 3710 adds r7, #16 - 8005d5e: 46bd mov sp, r7 - 8005d60: bd80 pop {r7, pc} + 8006132: 4618 mov r0, r3 + 8006134: 3710 adds r7, #16 + 8006136: 46bd mov sp, r7 + 8006138: bd80 pop {r7, pc} ... -08005d64 : +0800613c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ void HAL_UART_IRQHandler(UART_HandleTypeDef *huart) { - 8005d64: b580 push {r7, lr} - 8005d66: b0ba sub sp, #232 @ 0xe8 - 8005d68: af00 add r7, sp, #0 - 8005d6a: 6078 str r0, [r7, #4] + 800613c: b580 push {r7, lr} + 800613e: b0ba sub sp, #232 @ 0xe8 + 8006140: af00 add r7, sp, #0 + 8006142: 6078 str r0, [r7, #4] uint32_t isrflags = READ_REG(huart->Instance->SR); - 8005d6c: 687b ldr r3, [r7, #4] - 8005d6e: 681b ldr r3, [r3, #0] - 8005d70: 681b ldr r3, [r3, #0] - 8005d72: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 + 8006144: 687b ldr r3, [r7, #4] + 8006146: 681b ldr r3, [r3, #0] + 8006148: 681b ldr r3, [r3, #0] + 800614a: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 uint32_t cr1its = READ_REG(huart->Instance->CR1); - 8005d76: 687b ldr r3, [r7, #4] - 8005d78: 681b ldr r3, [r3, #0] - 8005d7a: 68db ldr r3, [r3, #12] - 8005d7c: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 + 800614e: 687b ldr r3, [r7, #4] + 8006150: 681b ldr r3, [r3, #0] + 8006152: 68db ldr r3, [r3, #12] + 8006154: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 uint32_t cr3its = READ_REG(huart->Instance->CR3); - 8005d80: 687b ldr r3, [r7, #4] - 8005d82: 681b ldr r3, [r3, #0] - 8005d84: 695b ldr r3, [r3, #20] - 8005d86: f8c7 30dc str.w r3, [r7, #220] @ 0xdc + 8006158: 687b ldr r3, [r7, #4] + 800615a: 681b ldr r3, [r3, #0] + 800615c: 695b ldr r3, [r3, #20] + 800615e: f8c7 30dc str.w r3, [r7, #220] @ 0xdc uint32_t errorflags = 0x00U; - 8005d8a: 2300 movs r3, #0 - 8005d8c: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 8006162: 2300 movs r3, #0 + 8006164: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 uint32_t dmarequest = 0x00U; - 8005d90: 2300 movs r3, #0 - 8005d92: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 + 8006168: 2300 movs r3, #0 + 800616a: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 /* If no error occurs */ errorflags = (isrflags & (uint32_t)(USART_SR_PE | USART_SR_FE | USART_SR_ORE | USART_SR_NE)); - 8005d96: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005d9a: f003 030f and.w r3, r3, #15 - 8005d9e: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 800616e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006172: f003 030f and.w r3, r3, #15 + 8006176: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 if (errorflags == RESET) - 8005da2: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 - 8005da6: 2b00 cmp r3, #0 - 8005da8: d10f bne.n 8005dca + 800617a: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 + 800617e: 2b00 cmp r3, #0 + 8006180: d10f bne.n 80061a2 { /* UART in mode Receiver -------------------------------------------------*/ if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) - 8005daa: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005dae: f003 0320 and.w r3, r3, #32 - 8005db2: 2b00 cmp r3, #0 - 8005db4: d009 beq.n 8005dca - 8005db6: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005dba: f003 0320 and.w r3, r3, #32 - 8005dbe: 2b00 cmp r3, #0 - 8005dc0: d003 beq.n 8005dca + 8006182: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006186: f003 0320 and.w r3, r3, #32 + 800618a: 2b00 cmp r3, #0 + 800618c: d009 beq.n 80061a2 + 800618e: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006192: f003 0320 and.w r3, r3, #32 + 8006196: 2b00 cmp r3, #0 + 8006198: d003 beq.n 80061a2 { UART_Receive_IT(huart); - 8005dc2: 6878 ldr r0, [r7, #4] - 8005dc4: f000 fda6 bl 8006914 + 800619a: 6878 ldr r0, [r7, #4] + 800619c: f000 fda6 bl 8006cec return; - 8005dc8: e273 b.n 80062b2 + 80061a0: e273 b.n 800668a } } /* If some errors occur */ if ((errorflags != RESET) && (((cr3its & USART_CR3_EIE) != RESET) - 8005dca: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 - 8005dce: 2b00 cmp r3, #0 - 8005dd0: f000 80de beq.w 8005f90 - 8005dd4: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005dd8: f003 0301 and.w r3, r3, #1 - 8005ddc: 2b00 cmp r3, #0 - 8005dde: d106 bne.n 8005dee + 80061a2: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 + 80061a6: 2b00 cmp r3, #0 + 80061a8: f000 80de beq.w 8006368 + 80061ac: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 80061b0: f003 0301 and.w r3, r3, #1 + 80061b4: 2b00 cmp r3, #0 + 80061b6: d106 bne.n 80061c6 || ((cr1its & (USART_CR1_RXNEIE | USART_CR1_PEIE)) != RESET))) - 8005de0: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005de4: f403 7390 and.w r3, r3, #288 @ 0x120 - 8005de8: 2b00 cmp r3, #0 - 8005dea: f000 80d1 beq.w 8005f90 + 80061b8: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 80061bc: f403 7390 and.w r3, r3, #288 @ 0x120 + 80061c0: 2b00 cmp r3, #0 + 80061c2: f000 80d1 beq.w 8006368 { /* UART parity error interrupt occurred ----------------------------------*/ if (((isrflags & USART_SR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) - 8005dee: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005df2: f003 0301 and.w r3, r3, #1 - 8005df6: 2b00 cmp r3, #0 - 8005df8: d00b beq.n 8005e12 - 8005dfa: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005dfe: f403 7380 and.w r3, r3, #256 @ 0x100 - 8005e02: 2b00 cmp r3, #0 - 8005e04: d005 beq.n 8005e12 + 80061c6: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 80061ca: f003 0301 and.w r3, r3, #1 + 80061ce: 2b00 cmp r3, #0 + 80061d0: d00b beq.n 80061ea + 80061d2: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 80061d6: f403 7380 and.w r3, r3, #256 @ 0x100 + 80061da: 2b00 cmp r3, #0 + 80061dc: d005 beq.n 80061ea { huart->ErrorCode |= HAL_UART_ERROR_PE; - 8005e06: 687b ldr r3, [r7, #4] - 8005e08: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e0a: f043 0201 orr.w r2, r3, #1 - 8005e0e: 687b ldr r3, [r7, #4] - 8005e10: 645a str r2, [r3, #68] @ 0x44 + 80061de: 687b ldr r3, [r7, #4] + 80061e0: 6c5b ldr r3, [r3, #68] @ 0x44 + 80061e2: f043 0201 orr.w r2, r3, #1 + 80061e6: 687b ldr r3, [r7, #4] + 80061e8: 645a str r2, [r3, #68] @ 0x44 } /* UART noise error interrupt occurred -----------------------------------*/ if (((isrflags & USART_SR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) - 8005e12: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005e16: f003 0304 and.w r3, r3, #4 - 8005e1a: 2b00 cmp r3, #0 - 8005e1c: d00b beq.n 8005e36 - 8005e1e: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005e22: f003 0301 and.w r3, r3, #1 - 8005e26: 2b00 cmp r3, #0 - 8005e28: d005 beq.n 8005e36 + 80061ea: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 80061ee: f003 0304 and.w r3, r3, #4 + 80061f2: 2b00 cmp r3, #0 + 80061f4: d00b beq.n 800620e + 80061f6: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 80061fa: f003 0301 and.w r3, r3, #1 + 80061fe: 2b00 cmp r3, #0 + 8006200: d005 beq.n 800620e { huart->ErrorCode |= HAL_UART_ERROR_NE; - 8005e2a: 687b ldr r3, [r7, #4] - 8005e2c: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e2e: f043 0202 orr.w r2, r3, #2 - 8005e32: 687b ldr r3, [r7, #4] - 8005e34: 645a str r2, [r3, #68] @ 0x44 + 8006202: 687b ldr r3, [r7, #4] + 8006204: 6c5b ldr r3, [r3, #68] @ 0x44 + 8006206: f043 0202 orr.w r2, r3, #2 + 800620a: 687b ldr r3, [r7, #4] + 800620c: 645a str r2, [r3, #68] @ 0x44 } /* UART frame error interrupt occurred -----------------------------------*/ if (((isrflags & USART_SR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) - 8005e36: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005e3a: f003 0302 and.w r3, r3, #2 - 8005e3e: 2b00 cmp r3, #0 - 8005e40: d00b beq.n 8005e5a - 8005e42: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005e46: f003 0301 and.w r3, r3, #1 - 8005e4a: 2b00 cmp r3, #0 - 8005e4c: d005 beq.n 8005e5a + 800620e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006212: f003 0302 and.w r3, r3, #2 + 8006216: 2b00 cmp r3, #0 + 8006218: d00b beq.n 8006232 + 800621a: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 800621e: f003 0301 and.w r3, r3, #1 + 8006222: 2b00 cmp r3, #0 + 8006224: d005 beq.n 8006232 { huart->ErrorCode |= HAL_UART_ERROR_FE; - 8005e4e: 687b ldr r3, [r7, #4] - 8005e50: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e52: f043 0204 orr.w r2, r3, #4 - 8005e56: 687b ldr r3, [r7, #4] - 8005e58: 645a str r2, [r3, #68] @ 0x44 + 8006226: 687b ldr r3, [r7, #4] + 8006228: 6c5b ldr r3, [r3, #68] @ 0x44 + 800622a: f043 0204 orr.w r2, r3, #4 + 800622e: 687b ldr r3, [r7, #4] + 8006230: 645a str r2, [r3, #68] @ 0x44 } /* UART Over-Run interrupt occurred --------------------------------------*/ if (((isrflags & USART_SR_ORE) != RESET) && (((cr1its & USART_CR1_RXNEIE) != RESET) - 8005e5a: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005e5e: f003 0308 and.w r3, r3, #8 - 8005e62: 2b00 cmp r3, #0 - 8005e64: d011 beq.n 8005e8a - 8005e66: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005e6a: f003 0320 and.w r3, r3, #32 - 8005e6e: 2b00 cmp r3, #0 - 8005e70: d105 bne.n 8005e7e + 8006232: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006236: f003 0308 and.w r3, r3, #8 + 800623a: 2b00 cmp r3, #0 + 800623c: d011 beq.n 8006262 + 800623e: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006242: f003 0320 and.w r3, r3, #32 + 8006246: 2b00 cmp r3, #0 + 8006248: d105 bne.n 8006256 || ((cr3its & USART_CR3_EIE) != RESET))) - 8005e72: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005e76: f003 0301 and.w r3, r3, #1 - 8005e7a: 2b00 cmp r3, #0 - 8005e7c: d005 beq.n 8005e8a + 800624a: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 800624e: f003 0301 and.w r3, r3, #1 + 8006252: 2b00 cmp r3, #0 + 8006254: d005 beq.n 8006262 { huart->ErrorCode |= HAL_UART_ERROR_ORE; - 8005e7e: 687b ldr r3, [r7, #4] - 8005e80: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e82: f043 0208 orr.w r2, r3, #8 - 8005e86: 687b ldr r3, [r7, #4] - 8005e88: 645a str r2, [r3, #68] @ 0x44 + 8006256: 687b ldr r3, [r7, #4] + 8006258: 6c5b ldr r3, [r3, #68] @ 0x44 + 800625a: f043 0208 orr.w r2, r3, #8 + 800625e: 687b ldr r3, [r7, #4] + 8006260: 645a str r2, [r3, #68] @ 0x44 } /* Call UART Error Call back function if need be --------------------------*/ if (huart->ErrorCode != HAL_UART_ERROR_NONE) - 8005e8a: 687b ldr r3, [r7, #4] - 8005e8c: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e8e: 2b00 cmp r3, #0 - 8005e90: f000 820a beq.w 80062a8 + 8006262: 687b ldr r3, [r7, #4] + 8006264: 6c5b ldr r3, [r3, #68] @ 0x44 + 8006266: 2b00 cmp r3, #0 + 8006268: f000 820a beq.w 8006680 { /* UART in mode Receiver -----------------------------------------------*/ if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) - 8005e94: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005e98: f003 0320 and.w r3, r3, #32 - 8005e9c: 2b00 cmp r3, #0 - 8005e9e: d008 beq.n 8005eb2 - 8005ea0: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005ea4: f003 0320 and.w r3, r3, #32 - 8005ea8: 2b00 cmp r3, #0 - 8005eaa: d002 beq.n 8005eb2 + 800626c: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006270: f003 0320 and.w r3, r3, #32 + 8006274: 2b00 cmp r3, #0 + 8006276: d008 beq.n 800628a + 8006278: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 800627c: f003 0320 and.w r3, r3, #32 + 8006280: 2b00 cmp r3, #0 + 8006282: d002 beq.n 800628a { UART_Receive_IT(huart); - 8005eac: 6878 ldr r0, [r7, #4] - 8005eae: f000 fd31 bl 8006914 + 8006284: 6878 ldr r0, [r7, #4] + 8006286: f000 fd31 bl 8006cec } /* If Overrun error occurs, or if any error occurs in DMA mode reception, consider error as blocking */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR); - 8005eb2: 687b ldr r3, [r7, #4] - 8005eb4: 681b ldr r3, [r3, #0] - 8005eb6: 695b ldr r3, [r3, #20] - 8005eb8: f003 0340 and.w r3, r3, #64 @ 0x40 - 8005ebc: 2b40 cmp r3, #64 @ 0x40 - 8005ebe: bf0c ite eq - 8005ec0: 2301 moveq r3, #1 - 8005ec2: 2300 movne r3, #0 - 8005ec4: b2db uxtb r3, r3 - 8005ec6: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 + 800628a: 687b ldr r3, [r7, #4] + 800628c: 681b ldr r3, [r3, #0] + 800628e: 695b ldr r3, [r3, #20] + 8006290: f003 0340 and.w r3, r3, #64 @ 0x40 + 8006294: 2b40 cmp r3, #64 @ 0x40 + 8006296: bf0c ite eq + 8006298: 2301 moveq r3, #1 + 800629a: 2300 movne r3, #0 + 800629c: b2db uxtb r3, r3 + 800629e: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 if (((huart->ErrorCode & HAL_UART_ERROR_ORE) != RESET) || dmarequest) - 8005eca: 687b ldr r3, [r7, #4] - 8005ecc: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005ece: f003 0308 and.w r3, r3, #8 - 8005ed2: 2b00 cmp r3, #0 - 8005ed4: d103 bne.n 8005ede - 8005ed6: f8d7 30d4 ldr.w r3, [r7, #212] @ 0xd4 - 8005eda: 2b00 cmp r3, #0 - 8005edc: d04f beq.n 8005f7e + 80062a2: 687b ldr r3, [r7, #4] + 80062a4: 6c5b ldr r3, [r3, #68] @ 0x44 + 80062a6: f003 0308 and.w r3, r3, #8 + 80062aa: 2b00 cmp r3, #0 + 80062ac: d103 bne.n 80062b6 + 80062ae: f8d7 30d4 ldr.w r3, [r7, #212] @ 0xd4 + 80062b2: 2b00 cmp r3, #0 + 80062b4: d04f beq.n 8006356 { /* Blocking error : transfer is aborted Set the UART state ready to be able to start again the process, Disable Rx Interrupts, and disable Rx DMA request, if ongoing */ UART_EndRxTransfer(huart); - 8005ede: 6878 ldr r0, [r7, #4] - 8005ee0: f000 fc3c bl 800675c + 80062b6: 6878 ldr r0, [r7, #4] + 80062b8: f000 fc3c bl 8006b34 /* Disable the UART DMA Rx request if enabled */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005ee4: 687b ldr r3, [r7, #4] - 8005ee6: 681b ldr r3, [r3, #0] - 8005ee8: 695b ldr r3, [r3, #20] - 8005eea: f003 0340 and.w r3, r3, #64 @ 0x40 - 8005eee: 2b40 cmp r3, #64 @ 0x40 - 8005ef0: d141 bne.n 8005f76 + 80062bc: 687b ldr r3, [r7, #4] + 80062be: 681b ldr r3, [r3, #0] + 80062c0: 695b ldr r3, [r3, #20] + 80062c2: f003 0340 and.w r3, r3, #64 @ 0x40 + 80062c6: 2b40 cmp r3, #64 @ 0x40 + 80062c8: d141 bne.n 800634e { ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 8005ef2: 687b ldr r3, [r7, #4] - 8005ef4: 681b ldr r3, [r3, #0] - 8005ef6: 3314 adds r3, #20 - 8005ef8: f8c7 309c str.w r3, [r7, #156] @ 0x9c + 80062ca: 687b ldr r3, [r7, #4] + 80062cc: 681b ldr r3, [r3, #0] + 80062ce: 3314 adds r3, #20 + 80062d0: f8c7 309c str.w r3, [r7, #156] @ 0x9c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8005efc: f8d7 309c ldr.w r3, [r7, #156] @ 0x9c - 8005f00: e853 3f00 ldrex r3, [r3] - 8005f04: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 80062d4: f8d7 309c ldr.w r3, [r7, #156] @ 0x9c + 80062d8: e853 3f00 ldrex r3, [r3] + 80062dc: f8c7 3098 str.w r3, [r7, #152] @ 0x98 return(result); - 8005f08: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 - 8005f0c: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8005f10: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 - 8005f14: 687b ldr r3, [r7, #4] - 8005f16: 681b ldr r3, [r3, #0] - 8005f18: 3314 adds r3, #20 - 8005f1a: f8d7 20d0 ldr.w r2, [r7, #208] @ 0xd0 - 8005f1e: f8c7 20a8 str.w r2, [r7, #168] @ 0xa8 - 8005f22: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 80062e0: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 + 80062e4: f023 0340 bic.w r3, r3, #64 @ 0x40 + 80062e8: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 + 80062ec: 687b ldr r3, [r7, #4] + 80062ee: 681b ldr r3, [r3, #0] + 80062f0: 3314 adds r3, #20 + 80062f2: f8d7 20d0 ldr.w r2, [r7, #208] @ 0xd0 + 80062f6: f8c7 20a8 str.w r2, [r7, #168] @ 0xa8 + 80062fa: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8005f26: f8d7 10a4 ldr.w r1, [r7, #164] @ 0xa4 - 8005f2a: f8d7 20a8 ldr.w r2, [r7, #168] @ 0xa8 - 8005f2e: e841 2300 strex r3, r2, [r1] - 8005f32: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 + 80062fe: f8d7 10a4 ldr.w r1, [r7, #164] @ 0xa4 + 8006302: f8d7 20a8 ldr.w r2, [r7, #168] @ 0xa8 + 8006306: e841 2300 strex r3, r2, [r1] + 800630a: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 return(result); - 8005f36: f8d7 30a0 ldr.w r3, [r7, #160] @ 0xa0 - 8005f3a: 2b00 cmp r3, #0 - 8005f3c: d1d9 bne.n 8005ef2 + 800630e: f8d7 30a0 ldr.w r3, [r7, #160] @ 0xa0 + 8006312: 2b00 cmp r3, #0 + 8006314: d1d9 bne.n 80062ca /* Abort the UART DMA Rx stream */ if (huart->hdmarx != NULL) - 8005f3e: 687b ldr r3, [r7, #4] - 8005f40: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005f42: 2b00 cmp r3, #0 - 8005f44: d013 beq.n 8005f6e + 8006316: 687b ldr r3, [r7, #4] + 8006318: 6bdb ldr r3, [r3, #60] @ 0x3c + 800631a: 2b00 cmp r3, #0 + 800631c: d013 beq.n 8006346 { /* Set the UART DMA Abort callback : will lead to call HAL_UART_ErrorCallback() at end of DMA abort procedure */ huart->hdmarx->XferAbortCallback = UART_DMAAbortOnError; - 8005f46: 687b ldr r3, [r7, #4] - 8005f48: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005f4a: 4a8a ldr r2, [pc, #552] @ (8006174 ) - 8005f4c: 651a str r2, [r3, #80] @ 0x50 + 800631e: 687b ldr r3, [r7, #4] + 8006320: 6bdb ldr r3, [r3, #60] @ 0x3c + 8006322: 4a8a ldr r2, [pc, #552] @ (800654c ) + 8006324: 651a str r2, [r3, #80] @ 0x50 if (HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) - 8005f4e: 687b ldr r3, [r7, #4] - 8005f50: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005f52: 4618 mov r0, r3 - 8005f54: f7fc f8c2 bl 80020dc - 8005f58: 4603 mov r3, r0 - 8005f5a: 2b00 cmp r3, #0 - 8005f5c: d016 beq.n 8005f8c + 8006326: 687b ldr r3, [r7, #4] + 8006328: 6bdb ldr r3, [r3, #60] @ 0x3c + 800632a: 4618 mov r0, r3 + 800632c: f7fc f80e bl 800234c + 8006330: 4603 mov r3, r0 + 8006332: 2b00 cmp r3, #0 + 8006334: d016 beq.n 8006364 { /* Call Directly XferAbortCallback function in case of error */ huart->hdmarx->XferAbortCallback(huart->hdmarx); - 8005f5e: 687b ldr r3, [r7, #4] - 8005f60: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005f62: 6d1b ldr r3, [r3, #80] @ 0x50 - 8005f64: 687a ldr r2, [r7, #4] - 8005f66: 6bd2 ldr r2, [r2, #60] @ 0x3c - 8005f68: 4610 mov r0, r2 - 8005f6a: 4798 blx r3 + 8006336: 687b ldr r3, [r7, #4] + 8006338: 6bdb ldr r3, [r3, #60] @ 0x3c + 800633a: 6d1b ldr r3, [r3, #80] @ 0x50 + 800633c: 687a ldr r2, [r7, #4] + 800633e: 6bd2 ldr r2, [r2, #60] @ 0x3c + 8006340: 4610 mov r0, r2 + 8006342: 4798 blx r3 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005f6c: e00e b.n 8005f8c + 8006344: e00e b.n 8006364 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8005f6e: 6878 ldr r0, [r7, #4] - 8005f70: f7fa fe06 bl 8000b80 + 8006346: 6878 ldr r0, [r7, #4] + 8006348: f7fa fd28 bl 8000d9c if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005f74: e00a b.n 8005f8c + 800634c: e00a b.n 8006364 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8005f76: 6878 ldr r0, [r7, #4] - 8005f78: f7fa fe02 bl 8000b80 + 800634e: 6878 ldr r0, [r7, #4] + 8006350: f7fa fd24 bl 8000d9c if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005f7c: e006 b.n 8005f8c + 8006354: e006 b.n 8006364 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8005f7e: 6878 ldr r0, [r7, #4] - 8005f80: f7fa fdfe bl 8000b80 + 8006356: 6878 ldr r0, [r7, #4] + 8006358: f7fa fd20 bl 8000d9c #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005f84: 687b ldr r3, [r7, #4] - 8005f86: 2200 movs r2, #0 - 8005f88: 645a str r2, [r3, #68] @ 0x44 + 800635c: 687b ldr r3, [r7, #4] + 800635e: 2200 movs r2, #0 + 8006360: 645a str r2, [r3, #68] @ 0x44 } } return; - 8005f8a: e18d b.n 80062a8 + 8006362: e18d b.n 8006680 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005f8c: bf00 nop + 8006364: bf00 nop return; - 8005f8e: e18b b.n 80062a8 + 8006366: e18b b.n 8006680 } /* End if some error occurs */ /* Check current reception Mode : If Reception till IDLE event has been selected : */ if ((huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8005f90: 687b ldr r3, [r7, #4] - 8005f92: 6b1b ldr r3, [r3, #48] @ 0x30 - 8005f94: 2b01 cmp r3, #1 - 8005f96: f040 8167 bne.w 8006268 + 8006368: 687b ldr r3, [r7, #4] + 800636a: 6b1b ldr r3, [r3, #48] @ 0x30 + 800636c: 2b01 cmp r3, #1 + 800636e: f040 8167 bne.w 8006640 && ((isrflags & USART_SR_IDLE) != 0U) - 8005f9a: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005f9e: f003 0310 and.w r3, r3, #16 - 8005fa2: 2b00 cmp r3, #0 - 8005fa4: f000 8160 beq.w 8006268 + 8006372: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006376: f003 0310 and.w r3, r3, #16 + 800637a: 2b00 cmp r3, #0 + 800637c: f000 8160 beq.w 8006640 && ((cr1its & USART_CR1_IDLEIE) != 0U)) - 8005fa8: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005fac: f003 0310 and.w r3, r3, #16 - 8005fb0: 2b00 cmp r3, #0 - 8005fb2: f000 8159 beq.w 8006268 + 8006380: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006384: f003 0310 and.w r3, r3, #16 + 8006388: 2b00 cmp r3, #0 + 800638a: f000 8159 beq.w 8006640 { __HAL_UART_CLEAR_IDLEFLAG(huart); - 8005fb6: 2300 movs r3, #0 - 8005fb8: 60bb str r3, [r7, #8] - 8005fba: 687b ldr r3, [r7, #4] - 8005fbc: 681b ldr r3, [r3, #0] - 8005fbe: 681b ldr r3, [r3, #0] - 8005fc0: 60bb str r3, [r7, #8] - 8005fc2: 687b ldr r3, [r7, #4] - 8005fc4: 681b ldr r3, [r3, #0] - 8005fc6: 685b ldr r3, [r3, #4] - 8005fc8: 60bb str r3, [r7, #8] - 8005fca: 68bb ldr r3, [r7, #8] + 800638e: 2300 movs r3, #0 + 8006390: 60bb str r3, [r7, #8] + 8006392: 687b ldr r3, [r7, #4] + 8006394: 681b ldr r3, [r3, #0] + 8006396: 681b ldr r3, [r3, #0] + 8006398: 60bb str r3, [r7, #8] + 800639a: 687b ldr r3, [r7, #4] + 800639c: 681b ldr r3, [r3, #0] + 800639e: 685b ldr r3, [r3, #4] + 80063a0: 60bb str r3, [r7, #8] + 80063a2: 68bb ldr r3, [r7, #8] /* Check if DMA mode is enabled in UART */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005fcc: 687b ldr r3, [r7, #4] - 8005fce: 681b ldr r3, [r3, #0] - 8005fd0: 695b ldr r3, [r3, #20] - 8005fd2: f003 0340 and.w r3, r3, #64 @ 0x40 - 8005fd6: 2b40 cmp r3, #64 @ 0x40 - 8005fd8: f040 80ce bne.w 8006178 + 80063a4: 687b ldr r3, [r7, #4] + 80063a6: 681b ldr r3, [r3, #0] + 80063a8: 695b ldr r3, [r3, #20] + 80063aa: f003 0340 and.w r3, r3, #64 @ 0x40 + 80063ae: 2b40 cmp r3, #64 @ 0x40 + 80063b0: f040 80ce bne.w 8006550 { /* DMA mode enabled */ /* Check received length : If all expected data are received, do nothing, (DMA cplt callback will be called). Otherwise, if at least one data has already been received, IDLE event is to be notified to user */ uint16_t nb_remaining_rx_data = (uint16_t) __HAL_DMA_GET_COUNTER(huart->hdmarx); - 8005fdc: 687b ldr r3, [r7, #4] - 8005fde: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005fe0: 681b ldr r3, [r3, #0] - 8005fe2: 685b ldr r3, [r3, #4] - 8005fe4: f8a7 30be strh.w r3, [r7, #190] @ 0xbe + 80063b4: 687b ldr r3, [r7, #4] + 80063b6: 6bdb ldr r3, [r3, #60] @ 0x3c + 80063b8: 681b ldr r3, [r3, #0] + 80063ba: 685b ldr r3, [r3, #4] + 80063bc: f8a7 30be strh.w r3, [r7, #190] @ 0xbe if ((nb_remaining_rx_data > 0U) - 8005fe8: f8b7 30be ldrh.w r3, [r7, #190] @ 0xbe - 8005fec: 2b00 cmp r3, #0 - 8005fee: f000 80a9 beq.w 8006144 + 80063c0: f8b7 30be ldrh.w r3, [r7, #190] @ 0xbe + 80063c4: 2b00 cmp r3, #0 + 80063c6: f000 80a9 beq.w 800651c && (nb_remaining_rx_data < huart->RxXferSize)) - 8005ff2: 687b ldr r3, [r7, #4] - 8005ff4: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8005ff6: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 8005ffa: 429a cmp r2, r3 - 8005ffc: f080 80a2 bcs.w 8006144 + 80063ca: 687b ldr r3, [r7, #4] + 80063cc: 8d9b ldrh r3, [r3, #44] @ 0x2c + 80063ce: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 80063d2: 429a cmp r2, r3 + 80063d4: f080 80a2 bcs.w 800651c { /* Reception is not complete */ huart->RxXferCount = nb_remaining_rx_data; - 8006000: 687b ldr r3, [r7, #4] - 8006002: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 8006006: 85da strh r2, [r3, #46] @ 0x2e + 80063d8: 687b ldr r3, [r7, #4] + 80063da: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 80063de: 85da strh r2, [r3, #46] @ 0x2e /* In Normal mode, end DMA xfer and HAL UART Rx process*/ if (huart->hdmarx->Init.Mode != DMA_CIRCULAR) - 8006008: 687b ldr r3, [r7, #4] - 800600a: 6bdb ldr r3, [r3, #60] @ 0x3c - 800600c: 69db ldr r3, [r3, #28] - 800600e: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 8006012: f000 8088 beq.w 8006126 + 80063e0: 687b ldr r3, [r7, #4] + 80063e2: 6bdb ldr r3, [r3, #60] @ 0x3c + 80063e4: 69db ldr r3, [r3, #28] + 80063e6: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 80063ea: f000 8088 beq.w 80064fe { /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 8006016: 687b ldr r3, [r7, #4] - 8006018: 681b ldr r3, [r3, #0] - 800601a: 330c adds r3, #12 - 800601c: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 80063ee: 687b ldr r3, [r7, #4] + 80063f0: 681b ldr r3, [r3, #0] + 80063f2: 330c adds r3, #12 + 80063f4: f8c7 3088 str.w r3, [r7, #136] @ 0x88 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006020: f8d7 3088 ldr.w r3, [r7, #136] @ 0x88 - 8006024: e853 3f00 ldrex r3, [r3] - 8006028: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 80063f8: f8d7 3088 ldr.w r3, [r7, #136] @ 0x88 + 80063fc: e853 3f00 ldrex r3, [r3] + 8006400: f8c7 3084 str.w r3, [r7, #132] @ 0x84 return(result); - 800602c: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 - 8006030: f423 7380 bic.w r3, r3, #256 @ 0x100 - 8006034: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 - 8006038: 687b ldr r3, [r7, #4] - 800603a: 681b ldr r3, [r3, #0] - 800603c: 330c adds r3, #12 - 800603e: f8d7 20b8 ldr.w r2, [r7, #184] @ 0xb8 - 8006042: f8c7 2094 str.w r2, [r7, #148] @ 0x94 - 8006046: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 8006404: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 + 8006408: f423 7380 bic.w r3, r3, #256 @ 0x100 + 800640c: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 + 8006410: 687b ldr r3, [r7, #4] + 8006412: 681b ldr r3, [r3, #0] + 8006414: 330c adds r3, #12 + 8006416: f8d7 20b8 ldr.w r2, [r7, #184] @ 0xb8 + 800641a: f8c7 2094 str.w r2, [r7, #148] @ 0x94 + 800641e: f8c7 3090 str.w r3, [r7, #144] @ 0x90 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800604a: f8d7 1090 ldr.w r1, [r7, #144] @ 0x90 - 800604e: f8d7 2094 ldr.w r2, [r7, #148] @ 0x94 - 8006052: e841 2300 strex r3, r2, [r1] - 8006056: f8c7 308c str.w r3, [r7, #140] @ 0x8c + 8006422: f8d7 1090 ldr.w r1, [r7, #144] @ 0x90 + 8006426: f8d7 2094 ldr.w r2, [r7, #148] @ 0x94 + 800642a: e841 2300 strex r3, r2, [r1] + 800642e: f8c7 308c str.w r3, [r7, #140] @ 0x8c return(result); - 800605a: f8d7 308c ldr.w r3, [r7, #140] @ 0x8c - 800605e: 2b00 cmp r3, #0 - 8006060: d1d9 bne.n 8006016 + 8006432: f8d7 308c ldr.w r3, [r7, #140] @ 0x8c + 8006436: 2b00 cmp r3, #0 + 8006438: d1d9 bne.n 80063ee ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 8006062: 687b ldr r3, [r7, #4] - 8006064: 681b ldr r3, [r3, #0] - 8006066: 3314 adds r3, #20 - 8006068: 677b str r3, [r7, #116] @ 0x74 + 800643a: 687b ldr r3, [r7, #4] + 800643c: 681b ldr r3, [r3, #0] + 800643e: 3314 adds r3, #20 + 8006440: 677b str r3, [r7, #116] @ 0x74 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800606a: 6f7b ldr r3, [r7, #116] @ 0x74 - 800606c: e853 3f00 ldrex r3, [r3] - 8006070: 673b str r3, [r7, #112] @ 0x70 + 8006442: 6f7b ldr r3, [r7, #116] @ 0x74 + 8006444: e853 3f00 ldrex r3, [r3] + 8006448: 673b str r3, [r7, #112] @ 0x70 return(result); - 8006072: 6f3b ldr r3, [r7, #112] @ 0x70 - 8006074: f023 0301 bic.w r3, r3, #1 - 8006078: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 800607c: 687b ldr r3, [r7, #4] - 800607e: 681b ldr r3, [r3, #0] - 8006080: 3314 adds r3, #20 - 8006082: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 8006086: f8c7 2080 str.w r2, [r7, #128] @ 0x80 - 800608a: 67fb str r3, [r7, #124] @ 0x7c + 800644a: 6f3b ldr r3, [r7, #112] @ 0x70 + 800644c: f023 0301 bic.w r3, r3, #1 + 8006450: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8006454: 687b ldr r3, [r7, #4] + 8006456: 681b ldr r3, [r3, #0] + 8006458: 3314 adds r3, #20 + 800645a: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 800645e: f8c7 2080 str.w r2, [r7, #128] @ 0x80 + 8006462: 67fb str r3, [r7, #124] @ 0x7c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800608c: 6ff9 ldr r1, [r7, #124] @ 0x7c - 800608e: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 - 8006092: e841 2300 strex r3, r2, [r1] - 8006096: 67bb str r3, [r7, #120] @ 0x78 + 8006464: 6ff9 ldr r1, [r7, #124] @ 0x7c + 8006466: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 + 800646a: e841 2300 strex r3, r2, [r1] + 800646e: 67bb str r3, [r7, #120] @ 0x78 return(result); - 8006098: 6fbb ldr r3, [r7, #120] @ 0x78 - 800609a: 2b00 cmp r3, #0 - 800609c: d1e1 bne.n 8006062 + 8006470: 6fbb ldr r3, [r7, #120] @ 0x78 + 8006472: 2b00 cmp r3, #0 + 8006474: d1e1 bne.n 800643a /* Disable the DMA transfer for the receiver request by resetting the DMAR bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 800609e: 687b ldr r3, [r7, #4] - 80060a0: 681b ldr r3, [r3, #0] - 80060a2: 3314 adds r3, #20 - 80060a4: 663b str r3, [r7, #96] @ 0x60 + 8006476: 687b ldr r3, [r7, #4] + 8006478: 681b ldr r3, [r3, #0] + 800647a: 3314 adds r3, #20 + 800647c: 663b str r3, [r7, #96] @ 0x60 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80060a6: 6e3b ldr r3, [r7, #96] @ 0x60 - 80060a8: e853 3f00 ldrex r3, [r3] - 80060ac: 65fb str r3, [r7, #92] @ 0x5c + 800647e: 6e3b ldr r3, [r7, #96] @ 0x60 + 8006480: e853 3f00 ldrex r3, [r3] + 8006484: 65fb str r3, [r7, #92] @ 0x5c return(result); - 80060ae: 6dfb ldr r3, [r7, #92] @ 0x5c - 80060b0: f023 0340 bic.w r3, r3, #64 @ 0x40 - 80060b4: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 - 80060b8: 687b ldr r3, [r7, #4] - 80060ba: 681b ldr r3, [r3, #0] - 80060bc: 3314 adds r3, #20 - 80060be: f8d7 20b0 ldr.w r2, [r7, #176] @ 0xb0 - 80060c2: 66fa str r2, [r7, #108] @ 0x6c - 80060c4: 66bb str r3, [r7, #104] @ 0x68 + 8006486: 6dfb ldr r3, [r7, #92] @ 0x5c + 8006488: f023 0340 bic.w r3, r3, #64 @ 0x40 + 800648c: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8006490: 687b ldr r3, [r7, #4] + 8006492: 681b ldr r3, [r3, #0] + 8006494: 3314 adds r3, #20 + 8006496: f8d7 20b0 ldr.w r2, [r7, #176] @ 0xb0 + 800649a: 66fa str r2, [r7, #108] @ 0x6c + 800649c: 66bb str r3, [r7, #104] @ 0x68 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80060c6: 6eb9 ldr r1, [r7, #104] @ 0x68 - 80060c8: 6efa ldr r2, [r7, #108] @ 0x6c - 80060ca: e841 2300 strex r3, r2, [r1] - 80060ce: 667b str r3, [r7, #100] @ 0x64 + 800649e: 6eb9 ldr r1, [r7, #104] @ 0x68 + 80064a0: 6efa ldr r2, [r7, #108] @ 0x6c + 80064a2: e841 2300 strex r3, r2, [r1] + 80064a6: 667b str r3, [r7, #100] @ 0x64 return(result); - 80060d0: 6e7b ldr r3, [r7, #100] @ 0x64 - 80060d2: 2b00 cmp r3, #0 - 80060d4: d1e3 bne.n 800609e + 80064a8: 6e7b ldr r3, [r7, #100] @ 0x64 + 80064aa: 2b00 cmp r3, #0 + 80064ac: d1e3 bne.n 8006476 /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 80060d6: 687b ldr r3, [r7, #4] - 80060d8: 2220 movs r2, #32 - 80060da: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80064ae: 687b ldr r3, [r7, #4] + 80064b0: 2220 movs r2, #32 + 80064b2: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 80060de: 687b ldr r3, [r7, #4] - 80060e0: 2200 movs r2, #0 - 80060e2: 631a str r2, [r3, #48] @ 0x30 + 80064b6: 687b ldr r3, [r7, #4] + 80064b8: 2200 movs r2, #0 + 80064ba: 631a str r2, [r3, #48] @ 0x30 ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 80060e4: 687b ldr r3, [r7, #4] - 80060e6: 681b ldr r3, [r3, #0] - 80060e8: 330c adds r3, #12 - 80060ea: 64fb str r3, [r7, #76] @ 0x4c + 80064bc: 687b ldr r3, [r7, #4] + 80064be: 681b ldr r3, [r3, #0] + 80064c0: 330c adds r3, #12 + 80064c2: 64fb str r3, [r7, #76] @ 0x4c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80060ec: 6cfb ldr r3, [r7, #76] @ 0x4c - 80060ee: e853 3f00 ldrex r3, [r3] - 80060f2: 64bb str r3, [r7, #72] @ 0x48 + 80064c4: 6cfb ldr r3, [r7, #76] @ 0x4c + 80064c6: e853 3f00 ldrex r3, [r3] + 80064ca: 64bb str r3, [r7, #72] @ 0x48 return(result); - 80060f4: 6cbb ldr r3, [r7, #72] @ 0x48 - 80060f6: f023 0310 bic.w r3, r3, #16 - 80060fa: f8c7 30ac str.w r3, [r7, #172] @ 0xac - 80060fe: 687b ldr r3, [r7, #4] - 8006100: 681b ldr r3, [r3, #0] - 8006102: 330c adds r3, #12 - 8006104: f8d7 20ac ldr.w r2, [r7, #172] @ 0xac - 8006108: 65ba str r2, [r7, #88] @ 0x58 - 800610a: 657b str r3, [r7, #84] @ 0x54 + 80064cc: 6cbb ldr r3, [r7, #72] @ 0x48 + 80064ce: f023 0310 bic.w r3, r3, #16 + 80064d2: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 80064d6: 687b ldr r3, [r7, #4] + 80064d8: 681b ldr r3, [r3, #0] + 80064da: 330c adds r3, #12 + 80064dc: f8d7 20ac ldr.w r2, [r7, #172] @ 0xac + 80064e0: 65ba str r2, [r7, #88] @ 0x58 + 80064e2: 657b str r3, [r7, #84] @ 0x54 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800610c: 6d79 ldr r1, [r7, #84] @ 0x54 - 800610e: 6dba ldr r2, [r7, #88] @ 0x58 - 8006110: e841 2300 strex r3, r2, [r1] - 8006114: 653b str r3, [r7, #80] @ 0x50 + 80064e4: 6d79 ldr r1, [r7, #84] @ 0x54 + 80064e6: 6dba ldr r2, [r7, #88] @ 0x58 + 80064e8: e841 2300 strex r3, r2, [r1] + 80064ec: 653b str r3, [r7, #80] @ 0x50 return(result); - 8006116: 6d3b ldr r3, [r7, #80] @ 0x50 - 8006118: 2b00 cmp r3, #0 - 800611a: d1e3 bne.n 80060e4 + 80064ee: 6d3b ldr r3, [r7, #80] @ 0x50 + 80064f0: 2b00 cmp r3, #0 + 80064f2: d1e3 bne.n 80064bc /* Last bytes received, so no need as the abort is immediate */ (void)HAL_DMA_Abort(huart->hdmarx); - 800611c: 687b ldr r3, [r7, #4] - 800611e: 6bdb ldr r3, [r3, #60] @ 0x3c - 8006120: 4618 mov r0, r3 - 8006122: f7fb ff6b bl 8001ffc + 80064f4: 687b ldr r3, [r7, #4] + 80064f6: 6bdb ldr r3, [r3, #60] @ 0x3c + 80064f8: 4618 mov r0, r3 + 80064fa: f7fb feb7 bl 800226c } /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Idle Event */ huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 8006126: 687b ldr r3, [r7, #4] - 8006128: 2202 movs r2, #2 - 800612a: 635a str r2, [r3, #52] @ 0x34 + 80064fe: 687b ldr r3, [r7, #4] + 8006500: 2202 movs r2, #2 + 8006502: 635a str r2, [r3, #52] @ 0x34 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, (huart->RxXferSize - huart->RxXferCount)); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, (huart->RxXferSize - huart->RxXferCount)); - 800612c: 687b ldr r3, [r7, #4] - 800612e: 8d9a ldrh r2, [r3, #44] @ 0x2c - 8006130: 687b ldr r3, [r7, #4] - 8006132: 8ddb ldrh r3, [r3, #46] @ 0x2e - 8006134: b29b uxth r3, r3 - 8006136: 1ad3 subs r3, r2, r3 - 8006138: b29b uxth r3, r3 - 800613a: 4619 mov r1, r3 - 800613c: 6878 ldr r0, [r7, #4] - 800613e: f000 f8d9 bl 80062f4 + 8006504: 687b ldr r3, [r7, #4] + 8006506: 8d9a ldrh r2, [r3, #44] @ 0x2c + 8006508: 687b ldr r3, [r7, #4] + 800650a: 8ddb ldrh r3, [r3, #46] @ 0x2e + 800650c: b29b uxth r3, r3 + 800650e: 1ad3 subs r3, r2, r3 + 8006510: b29b uxth r3, r3 + 8006512: 4619 mov r1, r3 + 8006514: 6878 ldr r0, [r7, #4] + 8006516: f000 f8d9 bl 80066cc HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } } } return; - 8006142: e0b3 b.n 80062ac + 800651a: e0b3 b.n 8006684 if (nb_remaining_rx_data == huart->RxXferSize) - 8006144: 687b ldr r3, [r7, #4] - 8006146: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8006148: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 800614c: 429a cmp r2, r3 - 800614e: f040 80ad bne.w 80062ac + 800651c: 687b ldr r3, [r7, #4] + 800651e: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8006520: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 8006524: 429a cmp r2, r3 + 8006526: f040 80ad bne.w 8006684 if (huart->hdmarx->Init.Mode == DMA_CIRCULAR) - 8006152: 687b ldr r3, [r7, #4] - 8006154: 6bdb ldr r3, [r3, #60] @ 0x3c - 8006156: 69db ldr r3, [r3, #28] - 8006158: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 800615c: f040 80a6 bne.w 80062ac + 800652a: 687b ldr r3, [r7, #4] + 800652c: 6bdb ldr r3, [r3, #60] @ 0x3c + 800652e: 69db ldr r3, [r3, #28] + 8006530: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 8006534: f040 80a6 bne.w 8006684 huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 8006160: 687b ldr r3, [r7, #4] - 8006162: 2202 movs r2, #2 - 8006164: 635a str r2, [r3, #52] @ 0x34 + 8006538: 687b ldr r3, [r7, #4] + 800653a: 2202 movs r2, #2 + 800653c: 635a str r2, [r3, #52] @ 0x34 HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 8006166: 687b ldr r3, [r7, #4] - 8006168: 8d9b ldrh r3, [r3, #44] @ 0x2c - 800616a: 4619 mov r1, r3 - 800616c: 6878 ldr r0, [r7, #4] - 800616e: f000 f8c1 bl 80062f4 + 800653e: 687b ldr r3, [r7, #4] + 8006540: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8006542: 4619 mov r1, r3 + 8006544: 6878 ldr r0, [r7, #4] + 8006546: f000 f8c1 bl 80066cc return; - 8006172: e09b b.n 80062ac - 8006174: 08006823 .word 0x08006823 + 800654a: e09b b.n 8006684 + 800654c: 08006bfb .word 0x08006bfb else { /* DMA mode not enabled */ /* Check received length : If all expected data are received, do nothing. Otherwise, if at least one data has already been received, IDLE event is to be notified to user */ uint16_t nb_rx_data = huart->RxXferSize - huart->RxXferCount; - 8006178: 687b ldr r3, [r7, #4] - 800617a: 8d9a ldrh r2, [r3, #44] @ 0x2c - 800617c: 687b ldr r3, [r7, #4] - 800617e: 8ddb ldrh r3, [r3, #46] @ 0x2e - 8006180: b29b uxth r3, r3 - 8006182: 1ad3 subs r3, r2, r3 - 8006184: f8a7 30ce strh.w r3, [r7, #206] @ 0xce + 8006550: 687b ldr r3, [r7, #4] + 8006552: 8d9a ldrh r2, [r3, #44] @ 0x2c + 8006554: 687b ldr r3, [r7, #4] + 8006556: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8006558: b29b uxth r3, r3 + 800655a: 1ad3 subs r3, r2, r3 + 800655c: f8a7 30ce strh.w r3, [r7, #206] @ 0xce if ((huart->RxXferCount > 0U) - 8006188: 687b ldr r3, [r7, #4] - 800618a: 8ddb ldrh r3, [r3, #46] @ 0x2e - 800618c: b29b uxth r3, r3 - 800618e: 2b00 cmp r3, #0 - 8006190: f000 808e beq.w 80062b0 + 8006560: 687b ldr r3, [r7, #4] + 8006562: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8006564: b29b uxth r3, r3 + 8006566: 2b00 cmp r3, #0 + 8006568: f000 808e beq.w 8006688 && (nb_rx_data > 0U)) - 8006194: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce - 8006198: 2b00 cmp r3, #0 - 800619a: f000 8089 beq.w 80062b0 + 800656c: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce + 8006570: 2b00 cmp r3, #0 + 8006572: f000 8089 beq.w 8006688 { /* Disable the UART Parity Error Interrupt and RXNE interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); - 800619e: 687b ldr r3, [r7, #4] - 80061a0: 681b ldr r3, [r3, #0] - 80061a2: 330c adds r3, #12 - 80061a4: 63bb str r3, [r7, #56] @ 0x38 + 8006576: 687b ldr r3, [r7, #4] + 8006578: 681b ldr r3, [r3, #0] + 800657a: 330c adds r3, #12 + 800657c: 63bb str r3, [r7, #56] @ 0x38 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80061a6: 6bbb ldr r3, [r7, #56] @ 0x38 - 80061a8: e853 3f00 ldrex r3, [r3] - 80061ac: 637b str r3, [r7, #52] @ 0x34 + 800657e: 6bbb ldr r3, [r7, #56] @ 0x38 + 8006580: e853 3f00 ldrex r3, [r3] + 8006584: 637b str r3, [r7, #52] @ 0x34 return(result); - 80061ae: 6b7b ldr r3, [r7, #52] @ 0x34 - 80061b0: f423 7390 bic.w r3, r3, #288 @ 0x120 - 80061b4: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 - 80061b8: 687b ldr r3, [r7, #4] - 80061ba: 681b ldr r3, [r3, #0] - 80061bc: 330c adds r3, #12 - 80061be: f8d7 20c8 ldr.w r2, [r7, #200] @ 0xc8 - 80061c2: 647a str r2, [r7, #68] @ 0x44 - 80061c4: 643b str r3, [r7, #64] @ 0x40 + 8006586: 6b7b ldr r3, [r7, #52] @ 0x34 + 8006588: f423 7390 bic.w r3, r3, #288 @ 0x120 + 800658c: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 + 8006590: 687b ldr r3, [r7, #4] + 8006592: 681b ldr r3, [r3, #0] + 8006594: 330c adds r3, #12 + 8006596: f8d7 20c8 ldr.w r2, [r7, #200] @ 0xc8 + 800659a: 647a str r2, [r7, #68] @ 0x44 + 800659c: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80061c6: 6c39 ldr r1, [r7, #64] @ 0x40 - 80061c8: 6c7a ldr r2, [r7, #68] @ 0x44 - 80061ca: e841 2300 strex r3, r2, [r1] - 80061ce: 63fb str r3, [r7, #60] @ 0x3c + 800659e: 6c39 ldr r1, [r7, #64] @ 0x40 + 80065a0: 6c7a ldr r2, [r7, #68] @ 0x44 + 80065a2: e841 2300 strex r3, r2, [r1] + 80065a6: 63fb str r3, [r7, #60] @ 0x3c return(result); - 80061d0: 6bfb ldr r3, [r7, #60] @ 0x3c - 80061d2: 2b00 cmp r3, #0 - 80061d4: d1e3 bne.n 800619e + 80065a8: 6bfb ldr r3, [r7, #60] @ 0x3c + 80065aa: 2b00 cmp r3, #0 + 80065ac: d1e3 bne.n 8006576 /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 80061d6: 687b ldr r3, [r7, #4] - 80061d8: 681b ldr r3, [r3, #0] - 80061da: 3314 adds r3, #20 - 80061dc: 627b str r3, [r7, #36] @ 0x24 + 80065ae: 687b ldr r3, [r7, #4] + 80065b0: 681b ldr r3, [r3, #0] + 80065b2: 3314 adds r3, #20 + 80065b4: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80061de: 6a7b ldr r3, [r7, #36] @ 0x24 - 80061e0: e853 3f00 ldrex r3, [r3] - 80061e4: 623b str r3, [r7, #32] + 80065b6: 6a7b ldr r3, [r7, #36] @ 0x24 + 80065b8: e853 3f00 ldrex r3, [r3] + 80065bc: 623b str r3, [r7, #32] return(result); - 80061e6: 6a3b ldr r3, [r7, #32] - 80061e8: f023 0301 bic.w r3, r3, #1 - 80061ec: f8c7 30c4 str.w r3, [r7, #196] @ 0xc4 - 80061f0: 687b ldr r3, [r7, #4] - 80061f2: 681b ldr r3, [r3, #0] - 80061f4: 3314 adds r3, #20 - 80061f6: f8d7 20c4 ldr.w r2, [r7, #196] @ 0xc4 - 80061fa: 633a str r2, [r7, #48] @ 0x30 - 80061fc: 62fb str r3, [r7, #44] @ 0x2c + 80065be: 6a3b ldr r3, [r7, #32] + 80065c0: f023 0301 bic.w r3, r3, #1 + 80065c4: f8c7 30c4 str.w r3, [r7, #196] @ 0xc4 + 80065c8: 687b ldr r3, [r7, #4] + 80065ca: 681b ldr r3, [r3, #0] + 80065cc: 3314 adds r3, #20 + 80065ce: f8d7 20c4 ldr.w r2, [r7, #196] @ 0xc4 + 80065d2: 633a str r2, [r7, #48] @ 0x30 + 80065d4: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80061fe: 6af9 ldr r1, [r7, #44] @ 0x2c - 8006200: 6b3a ldr r2, [r7, #48] @ 0x30 - 8006202: e841 2300 strex r3, r2, [r1] - 8006206: 62bb str r3, [r7, #40] @ 0x28 + 80065d6: 6af9 ldr r1, [r7, #44] @ 0x2c + 80065d8: 6b3a ldr r2, [r7, #48] @ 0x30 + 80065da: e841 2300 strex r3, r2, [r1] + 80065de: 62bb str r3, [r7, #40] @ 0x28 return(result); - 8006208: 6abb ldr r3, [r7, #40] @ 0x28 - 800620a: 2b00 cmp r3, #0 - 800620c: d1e3 bne.n 80061d6 + 80065e0: 6abb ldr r3, [r7, #40] @ 0x28 + 80065e2: 2b00 cmp r3, #0 + 80065e4: d1e3 bne.n 80065ae /* Rx process is completed, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 800620e: 687b ldr r3, [r7, #4] - 8006210: 2220 movs r2, #32 - 8006212: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80065e6: 687b ldr r3, [r7, #4] + 80065e8: 2220 movs r2, #32 + 80065ea: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8006216: 687b ldr r3, [r7, #4] - 8006218: 2200 movs r2, #0 - 800621a: 631a str r2, [r3, #48] @ 0x30 + 80065ee: 687b ldr r3, [r7, #4] + 80065f0: 2200 movs r2, #0 + 80065f2: 631a str r2, [r3, #48] @ 0x30 ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 800621c: 687b ldr r3, [r7, #4] - 800621e: 681b ldr r3, [r3, #0] - 8006220: 330c adds r3, #12 - 8006222: 613b str r3, [r7, #16] + 80065f4: 687b ldr r3, [r7, #4] + 80065f6: 681b ldr r3, [r3, #0] + 80065f8: 330c adds r3, #12 + 80065fa: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006224: 693b ldr r3, [r7, #16] - 8006226: e853 3f00 ldrex r3, [r3] - 800622a: 60fb str r3, [r7, #12] + 80065fc: 693b ldr r3, [r7, #16] + 80065fe: e853 3f00 ldrex r3, [r3] + 8006602: 60fb str r3, [r7, #12] return(result); - 800622c: 68fb ldr r3, [r7, #12] - 800622e: f023 0310 bic.w r3, r3, #16 - 8006232: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 - 8006236: 687b ldr r3, [r7, #4] - 8006238: 681b ldr r3, [r3, #0] - 800623a: 330c adds r3, #12 - 800623c: f8d7 20c0 ldr.w r2, [r7, #192] @ 0xc0 - 8006240: 61fa str r2, [r7, #28] - 8006242: 61bb str r3, [r7, #24] + 8006604: 68fb ldr r3, [r7, #12] + 8006606: f023 0310 bic.w r3, r3, #16 + 800660a: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 + 800660e: 687b ldr r3, [r7, #4] + 8006610: 681b ldr r3, [r3, #0] + 8006612: 330c adds r3, #12 + 8006614: f8d7 20c0 ldr.w r2, [r7, #192] @ 0xc0 + 8006618: 61fa str r2, [r7, #28] + 800661a: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006244: 69b9 ldr r1, [r7, #24] - 8006246: 69fa ldr r2, [r7, #28] - 8006248: e841 2300 strex r3, r2, [r1] - 800624c: 617b str r3, [r7, #20] + 800661c: 69b9 ldr r1, [r7, #24] + 800661e: 69fa ldr r2, [r7, #28] + 8006620: e841 2300 strex r3, r2, [r1] + 8006624: 617b str r3, [r7, #20] return(result); - 800624e: 697b ldr r3, [r7, #20] - 8006250: 2b00 cmp r3, #0 - 8006252: d1e3 bne.n 800621c + 8006626: 697b ldr r3, [r7, #20] + 8006628: 2b00 cmp r3, #0 + 800662a: d1e3 bne.n 80065f4 /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Idle Event */ huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 8006254: 687b ldr r3, [r7, #4] - 8006256: 2202 movs r2, #2 - 8006258: 635a str r2, [r3, #52] @ 0x34 + 800662c: 687b ldr r3, [r7, #4] + 800662e: 2202 movs r2, #2 + 8006630: 635a str r2, [r3, #52] @ 0x34 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx complete callback*/ huart->RxEventCallback(huart, nb_rx_data); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, nb_rx_data); - 800625a: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce - 800625e: 4619 mov r1, r3 - 8006260: 6878 ldr r0, [r7, #4] - 8006262: f000 f847 bl 80062f4 + 8006632: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce + 8006636: 4619 mov r1, r3 + 8006638: 6878 ldr r0, [r7, #4] + 800663a: f000 f847 bl 80066cc #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return; - 8006266: e023 b.n 80062b0 + 800663e: e023 b.n 8006688 } } /* UART in mode Transmitter ------------------------------------------------*/ if (((isrflags & USART_SR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) - 8006268: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 800626c: f003 0380 and.w r3, r3, #128 @ 0x80 - 8006270: 2b00 cmp r3, #0 - 8006272: d009 beq.n 8006288 - 8006274: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8006278: f003 0380 and.w r3, r3, #128 @ 0x80 - 800627c: 2b00 cmp r3, #0 - 800627e: d003 beq.n 8006288 + 8006640: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006644: f003 0380 and.w r3, r3, #128 @ 0x80 + 8006648: 2b00 cmp r3, #0 + 800664a: d009 beq.n 8006660 + 800664c: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006650: f003 0380 and.w r3, r3, #128 @ 0x80 + 8006654: 2b00 cmp r3, #0 + 8006656: d003 beq.n 8006660 { UART_Transmit_IT(huart); - 8006280: 6878 ldr r0, [r7, #4] - 8006282: f000 fadf bl 8006844 + 8006658: 6878 ldr r0, [r7, #4] + 800665a: f000 fadf bl 8006c1c return; - 8006286: e014 b.n 80062b2 + 800665e: e014 b.n 800668a } /* UART in mode Transmitter end --------------------------------------------*/ if (((isrflags & USART_SR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) - 8006288: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 800628c: f003 0340 and.w r3, r3, #64 @ 0x40 - 8006290: 2b00 cmp r3, #0 - 8006292: d00e beq.n 80062b2 - 8006294: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8006298: f003 0340 and.w r3, r3, #64 @ 0x40 - 800629c: 2b00 cmp r3, #0 - 800629e: d008 beq.n 80062b2 + 8006660: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006664: f003 0340 and.w r3, r3, #64 @ 0x40 + 8006668: 2b00 cmp r3, #0 + 800666a: d00e beq.n 800668a + 800666c: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006670: f003 0340 and.w r3, r3, #64 @ 0x40 + 8006674: 2b00 cmp r3, #0 + 8006676: d008 beq.n 800668a { UART_EndTransmit_IT(huart); - 80062a0: 6878 ldr r0, [r7, #4] - 80062a2: f000 fb1f bl 80068e4 + 8006678: 6878 ldr r0, [r7, #4] + 800667a: f000 fb1f bl 8006cbc return; - 80062a6: e004 b.n 80062b2 + 800667e: e004 b.n 800668a return; - 80062a8: bf00 nop - 80062aa: e002 b.n 80062b2 + 8006680: bf00 nop + 8006682: e002 b.n 800668a return; - 80062ac: bf00 nop - 80062ae: e000 b.n 80062b2 + 8006684: bf00 nop + 8006686: e000 b.n 800668a return; - 80062b0: bf00 nop + 8006688: bf00 nop } } - 80062b2: 37e8 adds r7, #232 @ 0xe8 - 80062b4: 46bd mov sp, r7 - 80062b6: bd80 pop {r7, pc} + 800668a: 37e8 adds r7, #232 @ 0xe8 + 800668c: 46bd mov sp, r7 + 800668e: bd80 pop {r7, pc} -080062b8 : +08006690 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart) { - 80062b8: b480 push {r7} - 80062ba: b083 sub sp, #12 - 80062bc: af00 add r7, sp, #0 - 80062be: 6078 str r0, [r7, #4] + 8006690: b480 push {r7} + 8006692: b083 sub sp, #12 + 8006694: af00 add r7, sp, #0 + 8006696: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_TxCpltCallback could be implemented in the user file */ } - 80062c0: bf00 nop - 80062c2: 370c adds r7, #12 - 80062c4: 46bd mov sp, r7 - 80062c6: f85d 7b04 ldr.w r7, [sp], #4 - 80062ca: 4770 bx lr + 8006698: bf00 nop + 800669a: 370c adds r7, #12 + 800669c: 46bd mov sp, r7 + 800669e: f85d 7b04 ldr.w r7, [sp], #4 + 80066a2: 4770 bx lr -080062cc : +080066a4 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_TxHalfCpltCallback(UART_HandleTypeDef *huart) { - 80062cc: b480 push {r7} - 80062ce: b083 sub sp, #12 - 80062d0: af00 add r7, sp, #0 - 80062d2: 6078 str r0, [r7, #4] + 80066a4: b480 push {r7} + 80066a6: b083 sub sp, #12 + 80066a8: af00 add r7, sp, #0 + 80066aa: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_TxHalfCpltCallback could be implemented in the user file */ } - 80062d4: bf00 nop - 80062d6: 370c adds r7, #12 - 80062d8: 46bd mov sp, r7 - 80062da: f85d 7b04 ldr.w r7, [sp], #4 - 80062de: 4770 bx lr + 80066ac: bf00 nop + 80066ae: 370c adds r7, #12 + 80066b0: 46bd mov sp, r7 + 80066b2: f85d 7b04 ldr.w r7, [sp], #4 + 80066b6: 4770 bx lr -080062e0 : +080066b8 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_RxHalfCpltCallback(UART_HandleTypeDef *huart) { - 80062e0: b480 push {r7} - 80062e2: b083 sub sp, #12 - 80062e4: af00 add r7, sp, #0 - 80062e6: 6078 str r0, [r7, #4] + 80066b8: b480 push {r7} + 80066ba: b083 sub sp, #12 + 80066bc: af00 add r7, sp, #0 + 80066be: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_RxHalfCpltCallback could be implemented in the user file */ } - 80062e8: bf00 nop - 80062ea: 370c adds r7, #12 - 80062ec: 46bd mov sp, r7 - 80062ee: f85d 7b04 ldr.w r7, [sp], #4 - 80062f2: 4770 bx lr + 80066c0: bf00 nop + 80066c2: 370c adds r7, #12 + 80066c4: 46bd mov sp, r7 + 80066c6: f85d 7b04 ldr.w r7, [sp], #4 + 80066ca: 4770 bx lr -080062f4 : +080066cc : * @param Size Number of data available in application reception buffer (indicates a position in * reception buffer until which, data are available) * @retval None */ __weak void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size) { - 80062f4: b480 push {r7} - 80062f6: b083 sub sp, #12 - 80062f8: af00 add r7, sp, #0 - 80062fa: 6078 str r0, [r7, #4] - 80062fc: 460b mov r3, r1 - 80062fe: 807b strh r3, [r7, #2] + 80066cc: b480 push {r7} + 80066ce: b083 sub sp, #12 + 80066d0: af00 add r7, sp, #0 + 80066d2: 6078 str r0, [r7, #4] + 80066d4: 460b mov r3, r1 + 80066d6: 807b strh r3, [r7, #2] UNUSED(Size); /* NOTE : This function should not be modified, when the callback is needed, the HAL_UARTEx_RxEventCallback can be implemented in the user file. */ } - 8006300: bf00 nop - 8006302: 370c adds r7, #12 - 8006304: 46bd mov sp, r7 - 8006306: f85d 7b04 ldr.w r7, [sp], #4 - 800630a: 4770 bx lr + 80066d8: bf00 nop + 80066da: 370c adds r7, #12 + 80066dc: 46bd mov sp, r7 + 80066de: f85d 7b04 ldr.w r7, [sp], #4 + 80066e2: 4770 bx lr -0800630c : +080066e4 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMATransmitCplt(DMA_HandleTypeDef *hdma) { - 800630c: b580 push {r7, lr} - 800630e: b090 sub sp, #64 @ 0x40 - 8006310: af00 add r7, sp, #0 - 8006312: 6078 str r0, [r7, #4] + 80066e4: b580 push {r7, lr} + 80066e6: b090 sub sp, #64 @ 0x40 + 80066e8: af00 add r7, sp, #0 + 80066ea: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8006314: 687b ldr r3, [r7, #4] - 8006316: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006318: 63fb str r3, [r7, #60] @ 0x3c + 80066ec: 687b ldr r3, [r7, #4] + 80066ee: 6b9b ldr r3, [r3, #56] @ 0x38 + 80066f0: 63fb str r3, [r7, #60] @ 0x3c /* DMA Normal mode*/ if ((hdma->Instance->CR & DMA_SxCR_CIRC) == 0U) - 800631a: 687b ldr r3, [r7, #4] - 800631c: 681b ldr r3, [r3, #0] - 800631e: 681b ldr r3, [r3, #0] - 8006320: f403 7380 and.w r3, r3, #256 @ 0x100 - 8006324: 2b00 cmp r3, #0 - 8006326: d137 bne.n 8006398 + 80066f2: 687b ldr r3, [r7, #4] + 80066f4: 681b ldr r3, [r3, #0] + 80066f6: 681b ldr r3, [r3, #0] + 80066f8: f403 7380 and.w r3, r3, #256 @ 0x100 + 80066fc: 2b00 cmp r3, #0 + 80066fe: d137 bne.n 8006770 { huart->TxXferCount = 0x00U; - 8006328: 6bfb ldr r3, [r7, #60] @ 0x3c - 800632a: 2200 movs r2, #0 - 800632c: 84da strh r2, [r3, #38] @ 0x26 + 8006700: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006702: 2200 movs r2, #0 + 8006704: 84da strh r2, [r3, #38] @ 0x26 /* Disable the DMA transfer for transmit request by setting the DMAT bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); - 800632e: 6bfb ldr r3, [r7, #60] @ 0x3c - 8006330: 681b ldr r3, [r3, #0] - 8006332: 3314 adds r3, #20 - 8006334: 627b str r3, [r7, #36] @ 0x24 + 8006706: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006708: 681b ldr r3, [r3, #0] + 800670a: 3314 adds r3, #20 + 800670c: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006336: 6a7b ldr r3, [r7, #36] @ 0x24 - 8006338: e853 3f00 ldrex r3, [r3] - 800633c: 623b str r3, [r7, #32] + 800670e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8006710: e853 3f00 ldrex r3, [r3] + 8006714: 623b str r3, [r7, #32] return(result); - 800633e: 6a3b ldr r3, [r7, #32] - 8006340: f023 0380 bic.w r3, r3, #128 @ 0x80 - 8006344: 63bb str r3, [r7, #56] @ 0x38 - 8006346: 6bfb ldr r3, [r7, #60] @ 0x3c - 8006348: 681b ldr r3, [r3, #0] - 800634a: 3314 adds r3, #20 - 800634c: 6bba ldr r2, [r7, #56] @ 0x38 - 800634e: 633a str r2, [r7, #48] @ 0x30 - 8006350: 62fb str r3, [r7, #44] @ 0x2c + 8006716: 6a3b ldr r3, [r7, #32] + 8006718: f023 0380 bic.w r3, r3, #128 @ 0x80 + 800671c: 63bb str r3, [r7, #56] @ 0x38 + 800671e: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006720: 681b ldr r3, [r3, #0] + 8006722: 3314 adds r3, #20 + 8006724: 6bba ldr r2, [r7, #56] @ 0x38 + 8006726: 633a str r2, [r7, #48] @ 0x30 + 8006728: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006352: 6af9 ldr r1, [r7, #44] @ 0x2c - 8006354: 6b3a ldr r2, [r7, #48] @ 0x30 - 8006356: e841 2300 strex r3, r2, [r1] - 800635a: 62bb str r3, [r7, #40] @ 0x28 + 800672a: 6af9 ldr r1, [r7, #44] @ 0x2c + 800672c: 6b3a ldr r2, [r7, #48] @ 0x30 + 800672e: e841 2300 strex r3, r2, [r1] + 8006732: 62bb str r3, [r7, #40] @ 0x28 return(result); - 800635c: 6abb ldr r3, [r7, #40] @ 0x28 - 800635e: 2b00 cmp r3, #0 - 8006360: d1e5 bne.n 800632e + 8006734: 6abb ldr r3, [r7, #40] @ 0x28 + 8006736: 2b00 cmp r3, #0 + 8006738: d1e5 bne.n 8006706 /* Enable the UART Transmit Complete Interrupt */ ATOMIC_SET_BIT(huart->Instance->CR1, USART_CR1_TCIE); - 8006362: 6bfb ldr r3, [r7, #60] @ 0x3c - 8006364: 681b ldr r3, [r3, #0] - 8006366: 330c adds r3, #12 - 8006368: 613b str r3, [r7, #16] + 800673a: 6bfb ldr r3, [r7, #60] @ 0x3c + 800673c: 681b ldr r3, [r3, #0] + 800673e: 330c adds r3, #12 + 8006740: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800636a: 693b ldr r3, [r7, #16] - 800636c: e853 3f00 ldrex r3, [r3] - 8006370: 60fb str r3, [r7, #12] + 8006742: 693b ldr r3, [r7, #16] + 8006744: e853 3f00 ldrex r3, [r3] + 8006748: 60fb str r3, [r7, #12] return(result); - 8006372: 68fb ldr r3, [r7, #12] - 8006374: f043 0340 orr.w r3, r3, #64 @ 0x40 - 8006378: 637b str r3, [r7, #52] @ 0x34 - 800637a: 6bfb ldr r3, [r7, #60] @ 0x3c - 800637c: 681b ldr r3, [r3, #0] - 800637e: 330c adds r3, #12 - 8006380: 6b7a ldr r2, [r7, #52] @ 0x34 - 8006382: 61fa str r2, [r7, #28] - 8006384: 61bb str r3, [r7, #24] + 800674a: 68fb ldr r3, [r7, #12] + 800674c: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8006750: 637b str r3, [r7, #52] @ 0x34 + 8006752: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006754: 681b ldr r3, [r3, #0] + 8006756: 330c adds r3, #12 + 8006758: 6b7a ldr r2, [r7, #52] @ 0x34 + 800675a: 61fa str r2, [r7, #28] + 800675c: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006386: 69b9 ldr r1, [r7, #24] - 8006388: 69fa ldr r2, [r7, #28] - 800638a: e841 2300 strex r3, r2, [r1] - 800638e: 617b str r3, [r7, #20] + 800675e: 69b9 ldr r1, [r7, #24] + 8006760: 69fa ldr r2, [r7, #28] + 8006762: e841 2300 strex r3, r2, [r1] + 8006766: 617b str r3, [r7, #20] return(result); - 8006390: 697b ldr r3, [r7, #20] - 8006392: 2b00 cmp r3, #0 - 8006394: d1e5 bne.n 8006362 + 8006768: 697b ldr r3, [r7, #20] + 800676a: 2b00 cmp r3, #0 + 800676c: d1e5 bne.n 800673a #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxCpltCallback(huart); #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } } - 8006396: e002 b.n 800639e + 800676e: e002 b.n 8006776 HAL_UART_TxCpltCallback(huart); - 8006398: 6bf8 ldr r0, [r7, #60] @ 0x3c - 800639a: f7ff ff8d bl 80062b8 + 8006770: 6bf8 ldr r0, [r7, #60] @ 0x3c + 8006772: f7ff ff8d bl 8006690 } - 800639e: bf00 nop - 80063a0: 3740 adds r7, #64 @ 0x40 - 80063a2: 46bd mov sp, r7 - 80063a4: bd80 pop {r7, pc} + 8006776: bf00 nop + 8006778: 3740 adds r7, #64 @ 0x40 + 800677a: 46bd mov sp, r7 + 800677c: bd80 pop {r7, pc} -080063a6 : +0800677e : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMATxHalfCplt(DMA_HandleTypeDef *hdma) { - 80063a6: b580 push {r7, lr} - 80063a8: b084 sub sp, #16 - 80063aa: af00 add r7, sp, #0 - 80063ac: 6078 str r0, [r7, #4] + 800677e: b580 push {r7, lr} + 8006780: b084 sub sp, #16 + 8006782: af00 add r7, sp, #0 + 8006784: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 80063ae: 687b ldr r3, [r7, #4] - 80063b0: 6b9b ldr r3, [r3, #56] @ 0x38 - 80063b2: 60fb str r3, [r7, #12] + 8006786: 687b ldr r3, [r7, #4] + 8006788: 6b9b ldr r3, [r3, #56] @ 0x38 + 800678a: 60fb str r3, [r7, #12] #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Tx complete callback*/ huart->TxHalfCpltCallback(huart); #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxHalfCpltCallback(huart); - 80063b4: 68f8 ldr r0, [r7, #12] - 80063b6: f7ff ff89 bl 80062cc + 800678c: 68f8 ldr r0, [r7, #12] + 800678e: f7ff ff89 bl 80066a4 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 80063ba: bf00 nop - 80063bc: 3710 adds r7, #16 - 80063be: 46bd mov sp, r7 - 80063c0: bd80 pop {r7, pc} + 8006792: bf00 nop + 8006794: 3710 adds r7, #16 + 8006796: 46bd mov sp, r7 + 8006798: bd80 pop {r7, pc} -080063c2 : +0800679a : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAReceiveCplt(DMA_HandleTypeDef *hdma) { - 80063c2: b580 push {r7, lr} - 80063c4: b09c sub sp, #112 @ 0x70 - 80063c6: af00 add r7, sp, #0 - 80063c8: 6078 str r0, [r7, #4] + 800679a: b580 push {r7, lr} + 800679c: b09c sub sp, #112 @ 0x70 + 800679e: af00 add r7, sp, #0 + 80067a0: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 80063ca: 687b ldr r3, [r7, #4] - 80063cc: 6b9b ldr r3, [r3, #56] @ 0x38 - 80063ce: 66fb str r3, [r7, #108] @ 0x6c + 80067a2: 687b ldr r3, [r7, #4] + 80067a4: 6b9b ldr r3, [r3, #56] @ 0x38 + 80067a6: 66fb str r3, [r7, #108] @ 0x6c /* DMA Normal mode*/ if ((hdma->Instance->CR & DMA_SxCR_CIRC) == 0U) - 80063d0: 687b ldr r3, [r7, #4] - 80063d2: 681b ldr r3, [r3, #0] - 80063d4: 681b ldr r3, [r3, #0] - 80063d6: f403 7380 and.w r3, r3, #256 @ 0x100 - 80063da: 2b00 cmp r3, #0 - 80063dc: d172 bne.n 80064c4 + 80067a8: 687b ldr r3, [r7, #4] + 80067aa: 681b ldr r3, [r3, #0] + 80067ac: 681b ldr r3, [r3, #0] + 80067ae: f403 7380 and.w r3, r3, #256 @ 0x100 + 80067b2: 2b00 cmp r3, #0 + 80067b4: d172 bne.n 800689c { huart->RxXferCount = 0U; - 80063de: 6efb ldr r3, [r7, #108] @ 0x6c - 80063e0: 2200 movs r2, #0 - 80063e2: 85da strh r2, [r3, #46] @ 0x2e + 80067b6: 6efb ldr r3, [r7, #108] @ 0x6c + 80067b8: 2200 movs r2, #0 + 80067ba: 85da strh r2, [r3, #46] @ 0x2e /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 80063e4: 6efb ldr r3, [r7, #108] @ 0x6c - 80063e6: 681b ldr r3, [r3, #0] - 80063e8: 330c adds r3, #12 - 80063ea: 64fb str r3, [r7, #76] @ 0x4c + 80067bc: 6efb ldr r3, [r7, #108] @ 0x6c + 80067be: 681b ldr r3, [r3, #0] + 80067c0: 330c adds r3, #12 + 80067c2: 64fb str r3, [r7, #76] @ 0x4c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80063ec: 6cfb ldr r3, [r7, #76] @ 0x4c - 80063ee: e853 3f00 ldrex r3, [r3] - 80063f2: 64bb str r3, [r7, #72] @ 0x48 + 80067c4: 6cfb ldr r3, [r7, #76] @ 0x4c + 80067c6: e853 3f00 ldrex r3, [r3] + 80067ca: 64bb str r3, [r7, #72] @ 0x48 return(result); - 80063f4: 6cbb ldr r3, [r7, #72] @ 0x48 - 80063f6: f423 7380 bic.w r3, r3, #256 @ 0x100 - 80063fa: 66bb str r3, [r7, #104] @ 0x68 - 80063fc: 6efb ldr r3, [r7, #108] @ 0x6c - 80063fe: 681b ldr r3, [r3, #0] - 8006400: 330c adds r3, #12 - 8006402: 6eba ldr r2, [r7, #104] @ 0x68 - 8006404: 65ba str r2, [r7, #88] @ 0x58 - 8006406: 657b str r3, [r7, #84] @ 0x54 + 80067cc: 6cbb ldr r3, [r7, #72] @ 0x48 + 80067ce: f423 7380 bic.w r3, r3, #256 @ 0x100 + 80067d2: 66bb str r3, [r7, #104] @ 0x68 + 80067d4: 6efb ldr r3, [r7, #108] @ 0x6c + 80067d6: 681b ldr r3, [r3, #0] + 80067d8: 330c adds r3, #12 + 80067da: 6eba ldr r2, [r7, #104] @ 0x68 + 80067dc: 65ba str r2, [r7, #88] @ 0x58 + 80067de: 657b str r3, [r7, #84] @ 0x54 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006408: 6d79 ldr r1, [r7, #84] @ 0x54 - 800640a: 6dba ldr r2, [r7, #88] @ 0x58 - 800640c: e841 2300 strex r3, r2, [r1] - 8006410: 653b str r3, [r7, #80] @ 0x50 + 80067e0: 6d79 ldr r1, [r7, #84] @ 0x54 + 80067e2: 6dba ldr r2, [r7, #88] @ 0x58 + 80067e4: e841 2300 strex r3, r2, [r1] + 80067e8: 653b str r3, [r7, #80] @ 0x50 return(result); - 8006412: 6d3b ldr r3, [r7, #80] @ 0x50 - 8006414: 2b00 cmp r3, #0 - 8006416: d1e5 bne.n 80063e4 + 80067ea: 6d3b ldr r3, [r7, #80] @ 0x50 + 80067ec: 2b00 cmp r3, #0 + 80067ee: d1e5 bne.n 80067bc ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 8006418: 6efb ldr r3, [r7, #108] @ 0x6c - 800641a: 681b ldr r3, [r3, #0] - 800641c: 3314 adds r3, #20 - 800641e: 63bb str r3, [r7, #56] @ 0x38 + 80067f0: 6efb ldr r3, [r7, #108] @ 0x6c + 80067f2: 681b ldr r3, [r3, #0] + 80067f4: 3314 adds r3, #20 + 80067f6: 63bb str r3, [r7, #56] @ 0x38 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006420: 6bbb ldr r3, [r7, #56] @ 0x38 - 8006422: e853 3f00 ldrex r3, [r3] - 8006426: 637b str r3, [r7, #52] @ 0x34 + 80067f8: 6bbb ldr r3, [r7, #56] @ 0x38 + 80067fa: e853 3f00 ldrex r3, [r3] + 80067fe: 637b str r3, [r7, #52] @ 0x34 return(result); - 8006428: 6b7b ldr r3, [r7, #52] @ 0x34 - 800642a: f023 0301 bic.w r3, r3, #1 - 800642e: 667b str r3, [r7, #100] @ 0x64 - 8006430: 6efb ldr r3, [r7, #108] @ 0x6c - 8006432: 681b ldr r3, [r3, #0] - 8006434: 3314 adds r3, #20 - 8006436: 6e7a ldr r2, [r7, #100] @ 0x64 - 8006438: 647a str r2, [r7, #68] @ 0x44 - 800643a: 643b str r3, [r7, #64] @ 0x40 + 8006800: 6b7b ldr r3, [r7, #52] @ 0x34 + 8006802: f023 0301 bic.w r3, r3, #1 + 8006806: 667b str r3, [r7, #100] @ 0x64 + 8006808: 6efb ldr r3, [r7, #108] @ 0x6c + 800680a: 681b ldr r3, [r3, #0] + 800680c: 3314 adds r3, #20 + 800680e: 6e7a ldr r2, [r7, #100] @ 0x64 + 8006810: 647a str r2, [r7, #68] @ 0x44 + 8006812: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800643c: 6c39 ldr r1, [r7, #64] @ 0x40 - 800643e: 6c7a ldr r2, [r7, #68] @ 0x44 - 8006440: e841 2300 strex r3, r2, [r1] - 8006444: 63fb str r3, [r7, #60] @ 0x3c + 8006814: 6c39 ldr r1, [r7, #64] @ 0x40 + 8006816: 6c7a ldr r2, [r7, #68] @ 0x44 + 8006818: e841 2300 strex r3, r2, [r1] + 800681c: 63fb str r3, [r7, #60] @ 0x3c return(result); - 8006446: 6bfb ldr r3, [r7, #60] @ 0x3c - 8006448: 2b00 cmp r3, #0 - 800644a: d1e5 bne.n 8006418 + 800681e: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006820: 2b00 cmp r3, #0 + 8006822: d1e5 bne.n 80067f0 /* Disable the DMA transfer for the receiver request by setting the DMAR bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 800644c: 6efb ldr r3, [r7, #108] @ 0x6c - 800644e: 681b ldr r3, [r3, #0] - 8006450: 3314 adds r3, #20 - 8006452: 627b str r3, [r7, #36] @ 0x24 + 8006824: 6efb ldr r3, [r7, #108] @ 0x6c + 8006826: 681b ldr r3, [r3, #0] + 8006828: 3314 adds r3, #20 + 800682a: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006454: 6a7b ldr r3, [r7, #36] @ 0x24 - 8006456: e853 3f00 ldrex r3, [r3] - 800645a: 623b str r3, [r7, #32] + 800682c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800682e: e853 3f00 ldrex r3, [r3] + 8006832: 623b str r3, [r7, #32] return(result); - 800645c: 6a3b ldr r3, [r7, #32] - 800645e: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8006462: 663b str r3, [r7, #96] @ 0x60 - 8006464: 6efb ldr r3, [r7, #108] @ 0x6c - 8006466: 681b ldr r3, [r3, #0] - 8006468: 3314 adds r3, #20 - 800646a: 6e3a ldr r2, [r7, #96] @ 0x60 - 800646c: 633a str r2, [r7, #48] @ 0x30 - 800646e: 62fb str r3, [r7, #44] @ 0x2c + 8006834: 6a3b ldr r3, [r7, #32] + 8006836: f023 0340 bic.w r3, r3, #64 @ 0x40 + 800683a: 663b str r3, [r7, #96] @ 0x60 + 800683c: 6efb ldr r3, [r7, #108] @ 0x6c + 800683e: 681b ldr r3, [r3, #0] + 8006840: 3314 adds r3, #20 + 8006842: 6e3a ldr r2, [r7, #96] @ 0x60 + 8006844: 633a str r2, [r7, #48] @ 0x30 + 8006846: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006470: 6af9 ldr r1, [r7, #44] @ 0x2c - 8006472: 6b3a ldr r2, [r7, #48] @ 0x30 - 8006474: e841 2300 strex r3, r2, [r1] - 8006478: 62bb str r3, [r7, #40] @ 0x28 + 8006848: 6af9 ldr r1, [r7, #44] @ 0x2c + 800684a: 6b3a ldr r2, [r7, #48] @ 0x30 + 800684c: e841 2300 strex r3, r2, [r1] + 8006850: 62bb str r3, [r7, #40] @ 0x28 return(result); - 800647a: 6abb ldr r3, [r7, #40] @ 0x28 - 800647c: 2b00 cmp r3, #0 - 800647e: d1e5 bne.n 800644c + 8006852: 6abb ldr r3, [r7, #40] @ 0x28 + 8006854: 2b00 cmp r3, #0 + 8006856: d1e5 bne.n 8006824 /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8006480: 6efb ldr r3, [r7, #108] @ 0x6c - 8006482: 2220 movs r2, #32 - 8006484: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8006858: 6efb ldr r3, [r7, #108] @ 0x6c + 800685a: 2220 movs r2, #32 + 800685c: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* If Reception till IDLE event has been selected, Disable IDLE Interrupt */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006488: 6efb ldr r3, [r7, #108] @ 0x6c - 800648a: 6b1b ldr r3, [r3, #48] @ 0x30 - 800648c: 2b01 cmp r3, #1 - 800648e: d119 bne.n 80064c4 + 8006860: 6efb ldr r3, [r7, #108] @ 0x6c + 8006862: 6b1b ldr r3, [r3, #48] @ 0x30 + 8006864: 2b01 cmp r3, #1 + 8006866: d119 bne.n 800689c { ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8006490: 6efb ldr r3, [r7, #108] @ 0x6c - 8006492: 681b ldr r3, [r3, #0] - 8006494: 330c adds r3, #12 - 8006496: 613b str r3, [r7, #16] + 8006868: 6efb ldr r3, [r7, #108] @ 0x6c + 800686a: 681b ldr r3, [r3, #0] + 800686c: 330c adds r3, #12 + 800686e: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006498: 693b ldr r3, [r7, #16] - 800649a: e853 3f00 ldrex r3, [r3] - 800649e: 60fb str r3, [r7, #12] + 8006870: 693b ldr r3, [r7, #16] + 8006872: e853 3f00 ldrex r3, [r3] + 8006876: 60fb str r3, [r7, #12] return(result); - 80064a0: 68fb ldr r3, [r7, #12] - 80064a2: f023 0310 bic.w r3, r3, #16 - 80064a6: 65fb str r3, [r7, #92] @ 0x5c - 80064a8: 6efb ldr r3, [r7, #108] @ 0x6c - 80064aa: 681b ldr r3, [r3, #0] - 80064ac: 330c adds r3, #12 - 80064ae: 6dfa ldr r2, [r7, #92] @ 0x5c - 80064b0: 61fa str r2, [r7, #28] - 80064b2: 61bb str r3, [r7, #24] + 8006878: 68fb ldr r3, [r7, #12] + 800687a: f023 0310 bic.w r3, r3, #16 + 800687e: 65fb str r3, [r7, #92] @ 0x5c + 8006880: 6efb ldr r3, [r7, #108] @ 0x6c + 8006882: 681b ldr r3, [r3, #0] + 8006884: 330c adds r3, #12 + 8006886: 6dfa ldr r2, [r7, #92] @ 0x5c + 8006888: 61fa str r2, [r7, #28] + 800688a: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80064b4: 69b9 ldr r1, [r7, #24] - 80064b6: 69fa ldr r2, [r7, #28] - 80064b8: e841 2300 strex r3, r2, [r1] - 80064bc: 617b str r3, [r7, #20] + 800688c: 69b9 ldr r1, [r7, #24] + 800688e: 69fa ldr r2, [r7, #28] + 8006890: e841 2300 strex r3, r2, [r1] + 8006894: 617b str r3, [r7, #20] return(result); - 80064be: 697b ldr r3, [r7, #20] - 80064c0: 2b00 cmp r3, #0 - 80064c2: d1e5 bne.n 8006490 + 8006896: 697b ldr r3, [r7, #20] + 8006898: 2b00 cmp r3, #0 + 800689a: d1e5 bne.n 8006868 } } /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Transfer Complete */ huart->RxEventType = HAL_UART_RXEVENT_TC; - 80064c4: 6efb ldr r3, [r7, #108] @ 0x6c - 80064c6: 2200 movs r2, #0 - 80064c8: 635a str r2, [r3, #52] @ 0x34 + 800689c: 6efb ldr r3, [r7, #108] @ 0x6c + 800689e: 2200 movs r2, #0 + 80068a0: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : use Rx Event callback */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 80064ca: 6efb ldr r3, [r7, #108] @ 0x6c - 80064cc: 6b1b ldr r3, [r3, #48] @ 0x30 - 80064ce: 2b01 cmp r3, #1 - 80064d0: d106 bne.n 80064e0 + 80068a2: 6efb ldr r3, [r7, #108] @ 0x6c + 80068a4: 6b1b ldr r3, [r3, #48] @ 0x30 + 80068a6: 2b01 cmp r3, #1 + 80068a8: d106 bne.n 80068b8 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 80064d2: 6efb ldr r3, [r7, #108] @ 0x6c - 80064d4: 8d9b ldrh r3, [r3, #44] @ 0x2c - 80064d6: 4619 mov r1, r3 - 80064d8: 6ef8 ldr r0, [r7, #108] @ 0x6c - 80064da: f7ff ff0b bl 80062f4 + 80068aa: 6efb ldr r3, [r7, #108] @ 0x6c + 80068ac: 8d9b ldrh r3, [r3, #44] @ 0x2c + 80068ae: 4619 mov r1, r3 + 80068b0: 6ef8 ldr r0, [r7, #108] @ 0x6c + 80068b2: f7ff ff0b bl 80066cc #else /*Call legacy weak Rx complete callback*/ HAL_UART_RxCpltCallback(huart); #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } } - 80064de: e002 b.n 80064e6 + 80068b6: e002 b.n 80068be HAL_UART_RxCpltCallback(huart); - 80064e0: 6ef8 ldr r0, [r7, #108] @ 0x6c - 80064e2: f7fa faf1 bl 8000ac8 + 80068b8: 6ef8 ldr r0, [r7, #108] @ 0x6c + 80068ba: f7fa fa13 bl 8000ce4 } - 80064e6: bf00 nop - 80064e8: 3770 adds r7, #112 @ 0x70 - 80064ea: 46bd mov sp, r7 - 80064ec: bd80 pop {r7, pc} + 80068be: bf00 nop + 80068c0: 3770 adds r7, #112 @ 0x70 + 80068c2: 46bd mov sp, r7 + 80068c4: bd80 pop {r7, pc} -080064ee : +080068c6 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMARxHalfCplt(DMA_HandleTypeDef *hdma) { - 80064ee: b580 push {r7, lr} - 80064f0: b084 sub sp, #16 - 80064f2: af00 add r7, sp, #0 - 80064f4: 6078 str r0, [r7, #4] + 80068c6: b580 push {r7, lr} + 80068c8: b084 sub sp, #16 + 80068ca: af00 add r7, sp, #0 + 80068cc: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 80064f6: 687b ldr r3, [r7, #4] - 80064f8: 6b9b ldr r3, [r3, #56] @ 0x38 - 80064fa: 60fb str r3, [r7, #12] + 80068ce: 687b ldr r3, [r7, #4] + 80068d0: 6b9b ldr r3, [r3, #56] @ 0x38 + 80068d2: 60fb str r3, [r7, #12] /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Half Transfer */ huart->RxEventType = HAL_UART_RXEVENT_HT; - 80064fc: 68fb ldr r3, [r7, #12] - 80064fe: 2201 movs r2, #1 - 8006500: 635a str r2, [r3, #52] @ 0x34 + 80068d4: 68fb ldr r3, [r7, #12] + 80068d6: 2201 movs r2, #1 + 80068d8: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : use Rx Event callback */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006502: 68fb ldr r3, [r7, #12] - 8006504: 6b1b ldr r3, [r3, #48] @ 0x30 - 8006506: 2b01 cmp r3, #1 - 8006508: d108 bne.n 800651c + 80068da: 68fb ldr r3, [r7, #12] + 80068dc: 6b1b ldr r3, [r3, #48] @ 0x30 + 80068de: 2b01 cmp r3, #1 + 80068e0: d108 bne.n 80068f4 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize / 2U); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize / 2U); - 800650a: 68fb ldr r3, [r7, #12] - 800650c: 8d9b ldrh r3, [r3, #44] @ 0x2c - 800650e: 085b lsrs r3, r3, #1 - 8006510: b29b uxth r3, r3 - 8006512: 4619 mov r1, r3 - 8006514: 68f8 ldr r0, [r7, #12] - 8006516: f7ff feed bl 80062f4 + 80068e2: 68fb ldr r3, [r7, #12] + 80068e4: 8d9b ldrh r3, [r3, #44] @ 0x2c + 80068e6: 085b lsrs r3, r3, #1 + 80068e8: b29b uxth r3, r3 + 80068ea: 4619 mov r1, r3 + 80068ec: 68f8 ldr r0, [r7, #12] + 80068ee: f7ff feed bl 80066cc #else /*Call legacy weak Rx Half complete callback*/ HAL_UART_RxHalfCpltCallback(huart); #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } } - 800651a: e002 b.n 8006522 + 80068f2: e002 b.n 80068fa HAL_UART_RxHalfCpltCallback(huart); - 800651c: 68f8 ldr r0, [r7, #12] - 800651e: f7ff fedf bl 80062e0 + 80068f4: 68f8 ldr r0, [r7, #12] + 80068f6: f7ff fedf bl 80066b8 } - 8006522: bf00 nop - 8006524: 3710 adds r7, #16 - 8006526: 46bd mov sp, r7 - 8006528: bd80 pop {r7, pc} + 80068fa: bf00 nop + 80068fc: 3710 adds r7, #16 + 80068fe: 46bd mov sp, r7 + 8006900: bd80 pop {r7, pc} -0800652a : +08006902 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAError(DMA_HandleTypeDef *hdma) { - 800652a: b580 push {r7, lr} - 800652c: b084 sub sp, #16 - 800652e: af00 add r7, sp, #0 - 8006530: 6078 str r0, [r7, #4] + 8006902: b580 push {r7, lr} + 8006904: b084 sub sp, #16 + 8006906: af00 add r7, sp, #0 + 8006908: 6078 str r0, [r7, #4] uint32_t dmarequest = 0x00U; - 8006532: 2300 movs r3, #0 - 8006534: 60fb str r3, [r7, #12] + 800690a: 2300 movs r3, #0 + 800690c: 60fb str r3, [r7, #12] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8006536: 687b ldr r3, [r7, #4] - 8006538: 6b9b ldr r3, [r3, #56] @ 0x38 - 800653a: 60bb str r3, [r7, #8] + 800690e: 687b ldr r3, [r7, #4] + 8006910: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006912: 60bb str r3, [r7, #8] /* Stop UART DMA Tx request if ongoing */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT); - 800653c: 68bb ldr r3, [r7, #8] - 800653e: 681b ldr r3, [r3, #0] - 8006540: 695b ldr r3, [r3, #20] - 8006542: f003 0380 and.w r3, r3, #128 @ 0x80 - 8006546: 2b80 cmp r3, #128 @ 0x80 - 8006548: bf0c ite eq - 800654a: 2301 moveq r3, #1 - 800654c: 2300 movne r3, #0 - 800654e: b2db uxtb r3, r3 - 8006550: 60fb str r3, [r7, #12] + 8006914: 68bb ldr r3, [r7, #8] + 8006916: 681b ldr r3, [r3, #0] + 8006918: 695b ldr r3, [r3, #20] + 800691a: f003 0380 and.w r3, r3, #128 @ 0x80 + 800691e: 2b80 cmp r3, #128 @ 0x80 + 8006920: bf0c ite eq + 8006922: 2301 moveq r3, #1 + 8006924: 2300 movne r3, #0 + 8006926: b2db uxtb r3, r3 + 8006928: 60fb str r3, [r7, #12] if ((huart->gState == HAL_UART_STATE_BUSY_TX) && dmarequest) - 8006552: 68bb ldr r3, [r7, #8] - 8006554: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8006558: b2db uxtb r3, r3 - 800655a: 2b21 cmp r3, #33 @ 0x21 - 800655c: d108 bne.n 8006570 - 800655e: 68fb ldr r3, [r7, #12] - 8006560: 2b00 cmp r3, #0 - 8006562: d005 beq.n 8006570 + 800692a: 68bb ldr r3, [r7, #8] + 800692c: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8006930: b2db uxtb r3, r3 + 8006932: 2b21 cmp r3, #33 @ 0x21 + 8006934: d108 bne.n 8006948 + 8006936: 68fb ldr r3, [r7, #12] + 8006938: 2b00 cmp r3, #0 + 800693a: d005 beq.n 8006948 { huart->TxXferCount = 0x00U; - 8006564: 68bb ldr r3, [r7, #8] - 8006566: 2200 movs r2, #0 - 8006568: 84da strh r2, [r3, #38] @ 0x26 + 800693c: 68bb ldr r3, [r7, #8] + 800693e: 2200 movs r2, #0 + 8006940: 84da strh r2, [r3, #38] @ 0x26 UART_EndTxTransfer(huart); - 800656a: 68b8 ldr r0, [r7, #8] - 800656c: f000 f8ce bl 800670c + 8006942: 68b8 ldr r0, [r7, #8] + 8006944: f000 f8ce bl 8006ae4 } /* Stop UART DMA Rx request if ongoing */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR); - 8006570: 68bb ldr r3, [r7, #8] - 8006572: 681b ldr r3, [r3, #0] - 8006574: 695b ldr r3, [r3, #20] - 8006576: f003 0340 and.w r3, r3, #64 @ 0x40 - 800657a: 2b40 cmp r3, #64 @ 0x40 - 800657c: bf0c ite eq - 800657e: 2301 moveq r3, #1 - 8006580: 2300 movne r3, #0 - 8006582: b2db uxtb r3, r3 - 8006584: 60fb str r3, [r7, #12] + 8006948: 68bb ldr r3, [r7, #8] + 800694a: 681b ldr r3, [r3, #0] + 800694c: 695b ldr r3, [r3, #20] + 800694e: f003 0340 and.w r3, r3, #64 @ 0x40 + 8006952: 2b40 cmp r3, #64 @ 0x40 + 8006954: bf0c ite eq + 8006956: 2301 moveq r3, #1 + 8006958: 2300 movne r3, #0 + 800695a: b2db uxtb r3, r3 + 800695c: 60fb str r3, [r7, #12] if ((huart->RxState == HAL_UART_STATE_BUSY_RX) && dmarequest) - 8006586: 68bb ldr r3, [r7, #8] - 8006588: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 800658c: b2db uxtb r3, r3 - 800658e: 2b22 cmp r3, #34 @ 0x22 - 8006590: d108 bne.n 80065a4 - 8006592: 68fb ldr r3, [r7, #12] - 8006594: 2b00 cmp r3, #0 - 8006596: d005 beq.n 80065a4 + 800695e: 68bb ldr r3, [r7, #8] + 8006960: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8006964: b2db uxtb r3, r3 + 8006966: 2b22 cmp r3, #34 @ 0x22 + 8006968: d108 bne.n 800697c + 800696a: 68fb ldr r3, [r7, #12] + 800696c: 2b00 cmp r3, #0 + 800696e: d005 beq.n 800697c { huart->RxXferCount = 0x00U; - 8006598: 68bb ldr r3, [r7, #8] - 800659a: 2200 movs r2, #0 - 800659c: 85da strh r2, [r3, #46] @ 0x2e + 8006970: 68bb ldr r3, [r7, #8] + 8006972: 2200 movs r2, #0 + 8006974: 85da strh r2, [r3, #46] @ 0x2e UART_EndRxTransfer(huart); - 800659e: 68b8 ldr r0, [r7, #8] - 80065a0: f000 f8dc bl 800675c + 8006976: 68b8 ldr r0, [r7, #8] + 8006978: f000 f8dc bl 8006b34 } huart->ErrorCode |= HAL_UART_ERROR_DMA; - 80065a4: 68bb ldr r3, [r7, #8] - 80065a6: 6c5b ldr r3, [r3, #68] @ 0x44 - 80065a8: f043 0210 orr.w r2, r3, #16 - 80065ac: 68bb ldr r3, [r7, #8] - 80065ae: 645a str r2, [r3, #68] @ 0x44 + 800697c: 68bb ldr r3, [r7, #8] + 800697e: 6c5b ldr r3, [r3, #68] @ 0x44 + 8006980: f043 0210 orr.w r2, r3, #16 + 8006984: 68bb ldr r3, [r7, #8] + 8006986: 645a str r2, [r3, #68] @ 0x44 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 80065b0: 68b8 ldr r0, [r7, #8] - 80065b2: f7fa fae5 bl 8000b80 + 8006988: 68b8 ldr r0, [r7, #8] + 800698a: f7fa fa07 bl 8000d9c #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 80065b6: bf00 nop - 80065b8: 3710 adds r7, #16 - 80065ba: 46bd mov sp, r7 - 80065bc: bd80 pop {r7, pc} + 800698e: bf00 nop + 8006990: 3710 adds r7, #16 + 8006992: 46bd mov sp, r7 + 8006994: bd80 pop {r7, pc} ... -080065c0 : +08006998 : * @param pData Pointer to data buffer (u8 or u16 data elements). * @param Size Amount of data elements (u8 or u16) to be received. * @retval HAL status */ HAL_StatusTypeDef UART_Start_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) { - 80065c0: b580 push {r7, lr} - 80065c2: b098 sub sp, #96 @ 0x60 - 80065c4: af00 add r7, sp, #0 - 80065c6: 60f8 str r0, [r7, #12] - 80065c8: 60b9 str r1, [r7, #8] - 80065ca: 4613 mov r3, r2 - 80065cc: 80fb strh r3, [r7, #6] + 8006998: b580 push {r7, lr} + 800699a: b098 sub sp, #96 @ 0x60 + 800699c: af00 add r7, sp, #0 + 800699e: 60f8 str r0, [r7, #12] + 80069a0: 60b9 str r1, [r7, #8] + 80069a2: 4613 mov r3, r2 + 80069a4: 80fb strh r3, [r7, #6] uint32_t *tmp; huart->pRxBuffPtr = pData; - 80065ce: 68ba ldr r2, [r7, #8] - 80065d0: 68fb ldr r3, [r7, #12] - 80065d2: 629a str r2, [r3, #40] @ 0x28 + 80069a6: 68ba ldr r2, [r7, #8] + 80069a8: 68fb ldr r3, [r7, #12] + 80069aa: 629a str r2, [r3, #40] @ 0x28 huart->RxXferSize = Size; - 80065d4: 68fb ldr r3, [r7, #12] - 80065d6: 88fa ldrh r2, [r7, #6] - 80065d8: 859a strh r2, [r3, #44] @ 0x2c + 80069ac: 68fb ldr r3, [r7, #12] + 80069ae: 88fa ldrh r2, [r7, #6] + 80069b0: 859a strh r2, [r3, #44] @ 0x2c huart->ErrorCode = HAL_UART_ERROR_NONE; - 80065da: 68fb ldr r3, [r7, #12] - 80065dc: 2200 movs r2, #0 - 80065de: 645a str r2, [r3, #68] @ 0x44 + 80069b2: 68fb ldr r3, [r7, #12] + 80069b4: 2200 movs r2, #0 + 80069b6: 645a str r2, [r3, #68] @ 0x44 huart->RxState = HAL_UART_STATE_BUSY_RX; - 80065e0: 68fb ldr r3, [r7, #12] - 80065e2: 2222 movs r2, #34 @ 0x22 - 80065e4: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80069b8: 68fb ldr r3, [r7, #12] + 80069ba: 2222 movs r2, #34 @ 0x22 + 80069bc: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* Set the UART DMA transfer complete callback */ huart->hdmarx->XferCpltCallback = UART_DMAReceiveCplt; - 80065e8: 68fb ldr r3, [r7, #12] - 80065ea: 6bdb ldr r3, [r3, #60] @ 0x3c - 80065ec: 4a44 ldr r2, [pc, #272] @ (8006700 ) - 80065ee: 63da str r2, [r3, #60] @ 0x3c + 80069c0: 68fb ldr r3, [r7, #12] + 80069c2: 6bdb ldr r3, [r3, #60] @ 0x3c + 80069c4: 4a44 ldr r2, [pc, #272] @ (8006ad8 ) + 80069c6: 63da str r2, [r3, #60] @ 0x3c /* Set the UART DMA Half transfer complete callback */ huart->hdmarx->XferHalfCpltCallback = UART_DMARxHalfCplt; - 80065f0: 68fb ldr r3, [r7, #12] - 80065f2: 6bdb ldr r3, [r3, #60] @ 0x3c - 80065f4: 4a43 ldr r2, [pc, #268] @ (8006704 ) - 80065f6: 641a str r2, [r3, #64] @ 0x40 + 80069c8: 68fb ldr r3, [r7, #12] + 80069ca: 6bdb ldr r3, [r3, #60] @ 0x3c + 80069cc: 4a43 ldr r2, [pc, #268] @ (8006adc ) + 80069ce: 641a str r2, [r3, #64] @ 0x40 /* Set the DMA error callback */ huart->hdmarx->XferErrorCallback = UART_DMAError; - 80065f8: 68fb ldr r3, [r7, #12] - 80065fa: 6bdb ldr r3, [r3, #60] @ 0x3c - 80065fc: 4a42 ldr r2, [pc, #264] @ (8006708 ) - 80065fe: 64da str r2, [r3, #76] @ 0x4c + 80069d0: 68fb ldr r3, [r7, #12] + 80069d2: 6bdb ldr r3, [r3, #60] @ 0x3c + 80069d4: 4a42 ldr r2, [pc, #264] @ (8006ae0 ) + 80069d6: 64da str r2, [r3, #76] @ 0x4c /* Set the DMA abort callback */ huart->hdmarx->XferAbortCallback = NULL; - 8006600: 68fb ldr r3, [r7, #12] - 8006602: 6bdb ldr r3, [r3, #60] @ 0x3c - 8006604: 2200 movs r2, #0 - 8006606: 651a str r2, [r3, #80] @ 0x50 + 80069d8: 68fb ldr r3, [r7, #12] + 80069da: 6bdb ldr r3, [r3, #60] @ 0x3c + 80069dc: 2200 movs r2, #0 + 80069de: 651a str r2, [r3, #80] @ 0x50 /* Enable the DMA stream */ tmp = (uint32_t *)&pData; - 8006608: f107 0308 add.w r3, r7, #8 - 800660c: 65fb str r3, [r7, #92] @ 0x5c + 80069e0: f107 0308 add.w r3, r7, #8 + 80069e4: 65fb str r3, [r7, #92] @ 0x5c if (HAL_DMA_Start_IT(huart->hdmarx, (uint32_t)&huart->Instance->DR, *(uint32_t *)tmp, Size) != HAL_OK) - 800660e: 68fb ldr r3, [r7, #12] - 8006610: 6bd8 ldr r0, [r3, #60] @ 0x3c - 8006612: 68fb ldr r3, [r7, #12] - 8006614: 681b ldr r3, [r3, #0] - 8006616: 3304 adds r3, #4 - 8006618: 4619 mov r1, r3 - 800661a: 6dfb ldr r3, [r7, #92] @ 0x5c - 800661c: 681a ldr r2, [r3, #0] - 800661e: 88fb ldrh r3, [r7, #6] - 8006620: f7fb fc94 bl 8001f4c - 8006624: 4603 mov r3, r0 - 8006626: 2b00 cmp r3, #0 - 8006628: d008 beq.n 800663c + 80069e6: 68fb ldr r3, [r7, #12] + 80069e8: 6bd8 ldr r0, [r3, #60] @ 0x3c + 80069ea: 68fb ldr r3, [r7, #12] + 80069ec: 681b ldr r3, [r3, #0] + 80069ee: 3304 adds r3, #4 + 80069f0: 4619 mov r1, r3 + 80069f2: 6dfb ldr r3, [r7, #92] @ 0x5c + 80069f4: 681a ldr r2, [r3, #0] + 80069f6: 88fb ldrh r3, [r7, #6] + 80069f8: f7fb fbe0 bl 80021bc + 80069fc: 4603 mov r3, r0 + 80069fe: 2b00 cmp r3, #0 + 8006a00: d008 beq.n 8006a14 { /* Set error code to DMA */ huart->ErrorCode = HAL_UART_ERROR_DMA; - 800662a: 68fb ldr r3, [r7, #12] - 800662c: 2210 movs r2, #16 - 800662e: 645a str r2, [r3, #68] @ 0x44 + 8006a02: 68fb ldr r3, [r7, #12] + 8006a04: 2210 movs r2, #16 + 8006a06: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->RxState to ready */ huart->RxState = HAL_UART_STATE_READY; - 8006630: 68fb ldr r3, [r7, #12] - 8006632: 2220 movs r2, #32 - 8006634: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8006a08: 68fb ldr r3, [r7, #12] + 8006a0a: 2220 movs r2, #32 + 8006a0c: f883 2042 strb.w r2, [r3, #66] @ 0x42 return HAL_ERROR; - 8006638: 2301 movs r3, #1 - 800663a: e05d b.n 80066f8 + 8006a10: 2301 movs r3, #1 + 8006a12: e05d b.n 8006ad0 } /* Clear the Overrun flag just before enabling the DMA Rx request: can be mandatory for the second transfer */ __HAL_UART_CLEAR_OREFLAG(huart); - 800663c: 2300 movs r3, #0 - 800663e: 613b str r3, [r7, #16] - 8006640: 68fb ldr r3, [r7, #12] - 8006642: 681b ldr r3, [r3, #0] - 8006644: 681b ldr r3, [r3, #0] - 8006646: 613b str r3, [r7, #16] - 8006648: 68fb ldr r3, [r7, #12] - 800664a: 681b ldr r3, [r3, #0] - 800664c: 685b ldr r3, [r3, #4] - 800664e: 613b str r3, [r7, #16] - 8006650: 693b ldr r3, [r7, #16] + 8006a14: 2300 movs r3, #0 + 8006a16: 613b str r3, [r7, #16] + 8006a18: 68fb ldr r3, [r7, #12] + 8006a1a: 681b ldr r3, [r3, #0] + 8006a1c: 681b ldr r3, [r3, #0] + 8006a1e: 613b str r3, [r7, #16] + 8006a20: 68fb ldr r3, [r7, #12] + 8006a22: 681b ldr r3, [r3, #0] + 8006a24: 685b ldr r3, [r3, #4] + 8006a26: 613b str r3, [r7, #16] + 8006a28: 693b ldr r3, [r7, #16] if (huart->Init.Parity != UART_PARITY_NONE) - 8006652: 68fb ldr r3, [r7, #12] - 8006654: 691b ldr r3, [r3, #16] - 8006656: 2b00 cmp r3, #0 - 8006658: d019 beq.n 800668e + 8006a2a: 68fb ldr r3, [r7, #12] + 8006a2c: 691b ldr r3, [r3, #16] + 8006a2e: 2b00 cmp r3, #0 + 8006a30: d019 beq.n 8006a66 { /* Enable the UART Parity Error Interrupt */ ATOMIC_SET_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 800665a: 68fb ldr r3, [r7, #12] - 800665c: 681b ldr r3, [r3, #0] - 800665e: 330c adds r3, #12 - 8006660: 643b str r3, [r7, #64] @ 0x40 + 8006a32: 68fb ldr r3, [r7, #12] + 8006a34: 681b ldr r3, [r3, #0] + 8006a36: 330c adds r3, #12 + 8006a38: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006662: 6c3b ldr r3, [r7, #64] @ 0x40 - 8006664: e853 3f00 ldrex r3, [r3] - 8006668: 63fb str r3, [r7, #60] @ 0x3c + 8006a3a: 6c3b ldr r3, [r7, #64] @ 0x40 + 8006a3c: e853 3f00 ldrex r3, [r3] + 8006a40: 63fb str r3, [r7, #60] @ 0x3c return(result); - 800666a: 6bfb ldr r3, [r7, #60] @ 0x3c - 800666c: f443 7380 orr.w r3, r3, #256 @ 0x100 - 8006670: 65bb str r3, [r7, #88] @ 0x58 - 8006672: 68fb ldr r3, [r7, #12] - 8006674: 681b ldr r3, [r3, #0] - 8006676: 330c adds r3, #12 - 8006678: 6dba ldr r2, [r7, #88] @ 0x58 - 800667a: 64fa str r2, [r7, #76] @ 0x4c - 800667c: 64bb str r3, [r7, #72] @ 0x48 + 8006a42: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006a44: f443 7380 orr.w r3, r3, #256 @ 0x100 + 8006a48: 65bb str r3, [r7, #88] @ 0x58 + 8006a4a: 68fb ldr r3, [r7, #12] + 8006a4c: 681b ldr r3, [r3, #0] + 8006a4e: 330c adds r3, #12 + 8006a50: 6dba ldr r2, [r7, #88] @ 0x58 + 8006a52: 64fa str r2, [r7, #76] @ 0x4c + 8006a54: 64bb str r3, [r7, #72] @ 0x48 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800667e: 6cb9 ldr r1, [r7, #72] @ 0x48 - 8006680: 6cfa ldr r2, [r7, #76] @ 0x4c - 8006682: e841 2300 strex r3, r2, [r1] - 8006686: 647b str r3, [r7, #68] @ 0x44 + 8006a56: 6cb9 ldr r1, [r7, #72] @ 0x48 + 8006a58: 6cfa ldr r2, [r7, #76] @ 0x4c + 8006a5a: e841 2300 strex r3, r2, [r1] + 8006a5e: 647b str r3, [r7, #68] @ 0x44 return(result); - 8006688: 6c7b ldr r3, [r7, #68] @ 0x44 - 800668a: 2b00 cmp r3, #0 - 800668c: d1e5 bne.n 800665a + 8006a60: 6c7b ldr r3, [r7, #68] @ 0x44 + 8006a62: 2b00 cmp r3, #0 + 8006a64: d1e5 bne.n 8006a32 } /* Enable the UART Error Interrupt: (Frame error, noise error, overrun error) */ ATOMIC_SET_BIT(huart->Instance->CR3, USART_CR3_EIE); - 800668e: 68fb ldr r3, [r7, #12] - 8006690: 681b ldr r3, [r3, #0] - 8006692: 3314 adds r3, #20 - 8006694: 62fb str r3, [r7, #44] @ 0x2c + 8006a66: 68fb ldr r3, [r7, #12] + 8006a68: 681b ldr r3, [r3, #0] + 8006a6a: 3314 adds r3, #20 + 8006a6c: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006696: 6afb ldr r3, [r7, #44] @ 0x2c - 8006698: e853 3f00 ldrex r3, [r3] - 800669c: 62bb str r3, [r7, #40] @ 0x28 + 8006a6e: 6afb ldr r3, [r7, #44] @ 0x2c + 8006a70: e853 3f00 ldrex r3, [r3] + 8006a74: 62bb str r3, [r7, #40] @ 0x28 return(result); - 800669e: 6abb ldr r3, [r7, #40] @ 0x28 - 80066a0: f043 0301 orr.w r3, r3, #1 - 80066a4: 657b str r3, [r7, #84] @ 0x54 - 80066a6: 68fb ldr r3, [r7, #12] - 80066a8: 681b ldr r3, [r3, #0] - 80066aa: 3314 adds r3, #20 - 80066ac: 6d7a ldr r2, [r7, #84] @ 0x54 - 80066ae: 63ba str r2, [r7, #56] @ 0x38 - 80066b0: 637b str r3, [r7, #52] @ 0x34 + 8006a76: 6abb ldr r3, [r7, #40] @ 0x28 + 8006a78: f043 0301 orr.w r3, r3, #1 + 8006a7c: 657b str r3, [r7, #84] @ 0x54 + 8006a7e: 68fb ldr r3, [r7, #12] + 8006a80: 681b ldr r3, [r3, #0] + 8006a82: 3314 adds r3, #20 + 8006a84: 6d7a ldr r2, [r7, #84] @ 0x54 + 8006a86: 63ba str r2, [r7, #56] @ 0x38 + 8006a88: 637b str r3, [r7, #52] @ 0x34 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80066b2: 6b79 ldr r1, [r7, #52] @ 0x34 - 80066b4: 6bba ldr r2, [r7, #56] @ 0x38 - 80066b6: e841 2300 strex r3, r2, [r1] - 80066ba: 633b str r3, [r7, #48] @ 0x30 + 8006a8a: 6b79 ldr r1, [r7, #52] @ 0x34 + 8006a8c: 6bba ldr r2, [r7, #56] @ 0x38 + 8006a8e: e841 2300 strex r3, r2, [r1] + 8006a92: 633b str r3, [r7, #48] @ 0x30 return(result); - 80066bc: 6b3b ldr r3, [r7, #48] @ 0x30 - 80066be: 2b00 cmp r3, #0 - 80066c0: d1e5 bne.n 800668e + 8006a94: 6b3b ldr r3, [r7, #48] @ 0x30 + 8006a96: 2b00 cmp r3, #0 + 8006a98: d1e5 bne.n 8006a66 /* Enable the DMA transfer for the receiver request by setting the DMAR bit in the UART CR3 register */ ATOMIC_SET_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 80066c2: 68fb ldr r3, [r7, #12] - 80066c4: 681b ldr r3, [r3, #0] - 80066c6: 3314 adds r3, #20 - 80066c8: 61bb str r3, [r7, #24] + 8006a9a: 68fb ldr r3, [r7, #12] + 8006a9c: 681b ldr r3, [r3, #0] + 8006a9e: 3314 adds r3, #20 + 8006aa0: 61bb str r3, [r7, #24] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80066ca: 69bb ldr r3, [r7, #24] - 80066cc: e853 3f00 ldrex r3, [r3] - 80066d0: 617b str r3, [r7, #20] + 8006aa2: 69bb ldr r3, [r7, #24] + 8006aa4: e853 3f00 ldrex r3, [r3] + 8006aa8: 617b str r3, [r7, #20] return(result); - 80066d2: 697b ldr r3, [r7, #20] - 80066d4: f043 0340 orr.w r3, r3, #64 @ 0x40 - 80066d8: 653b str r3, [r7, #80] @ 0x50 - 80066da: 68fb ldr r3, [r7, #12] - 80066dc: 681b ldr r3, [r3, #0] - 80066de: 3314 adds r3, #20 - 80066e0: 6d3a ldr r2, [r7, #80] @ 0x50 - 80066e2: 627a str r2, [r7, #36] @ 0x24 - 80066e4: 623b str r3, [r7, #32] + 8006aaa: 697b ldr r3, [r7, #20] + 8006aac: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8006ab0: 653b str r3, [r7, #80] @ 0x50 + 8006ab2: 68fb ldr r3, [r7, #12] + 8006ab4: 681b ldr r3, [r3, #0] + 8006ab6: 3314 adds r3, #20 + 8006ab8: 6d3a ldr r2, [r7, #80] @ 0x50 + 8006aba: 627a str r2, [r7, #36] @ 0x24 + 8006abc: 623b str r3, [r7, #32] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80066e6: 6a39 ldr r1, [r7, #32] - 80066e8: 6a7a ldr r2, [r7, #36] @ 0x24 - 80066ea: e841 2300 strex r3, r2, [r1] - 80066ee: 61fb str r3, [r7, #28] + 8006abe: 6a39 ldr r1, [r7, #32] + 8006ac0: 6a7a ldr r2, [r7, #36] @ 0x24 + 8006ac2: e841 2300 strex r3, r2, [r1] + 8006ac6: 61fb str r3, [r7, #28] return(result); - 80066f0: 69fb ldr r3, [r7, #28] - 80066f2: 2b00 cmp r3, #0 - 80066f4: d1e5 bne.n 80066c2 + 8006ac8: 69fb ldr r3, [r7, #28] + 8006aca: 2b00 cmp r3, #0 + 8006acc: d1e5 bne.n 8006a9a return HAL_OK; - 80066f6: 2300 movs r3, #0 + 8006ace: 2300 movs r3, #0 } - 80066f8: 4618 mov r0, r3 - 80066fa: 3760 adds r7, #96 @ 0x60 - 80066fc: 46bd mov sp, r7 - 80066fe: bd80 pop {r7, pc} - 8006700: 080063c3 .word 0x080063c3 - 8006704: 080064ef .word 0x080064ef - 8006708: 0800652b .word 0x0800652b + 8006ad0: 4618 mov r0, r3 + 8006ad2: 3760 adds r7, #96 @ 0x60 + 8006ad4: 46bd mov sp, r7 + 8006ad6: bd80 pop {r7, pc} + 8006ad8: 0800679b .word 0x0800679b + 8006adc: 080068c7 .word 0x080068c7 + 8006ae0: 08006903 .word 0x08006903 -0800670c : +08006ae4 : * @brief End ongoing Tx transfer on UART peripheral (following error detection or Transmit completion). * @param huart UART handle. * @retval None */ static void UART_EndTxTransfer(UART_HandleTypeDef *huart) { - 800670c: b480 push {r7} - 800670e: b089 sub sp, #36 @ 0x24 - 8006710: af00 add r7, sp, #0 - 8006712: 6078 str r0, [r7, #4] + 8006ae4: b480 push {r7} + 8006ae6: b089 sub sp, #36 @ 0x24 + 8006ae8: af00 add r7, sp, #0 + 8006aea: 6078 str r0, [r7, #4] /* Disable TXEIE and TCIE interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); - 8006714: 687b ldr r3, [r7, #4] - 8006716: 681b ldr r3, [r3, #0] - 8006718: 330c adds r3, #12 - 800671a: 60fb str r3, [r7, #12] + 8006aec: 687b ldr r3, [r7, #4] + 8006aee: 681b ldr r3, [r3, #0] + 8006af0: 330c adds r3, #12 + 8006af2: 60fb str r3, [r7, #12] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800671c: 68fb ldr r3, [r7, #12] - 800671e: e853 3f00 ldrex r3, [r3] - 8006722: 60bb str r3, [r7, #8] + 8006af4: 68fb ldr r3, [r7, #12] + 8006af6: e853 3f00 ldrex r3, [r3] + 8006afa: 60bb str r3, [r7, #8] return(result); - 8006724: 68bb ldr r3, [r7, #8] - 8006726: f023 03c0 bic.w r3, r3, #192 @ 0xc0 - 800672a: 61fb str r3, [r7, #28] - 800672c: 687b ldr r3, [r7, #4] - 800672e: 681b ldr r3, [r3, #0] - 8006730: 330c adds r3, #12 - 8006732: 69fa ldr r2, [r7, #28] - 8006734: 61ba str r2, [r7, #24] - 8006736: 617b str r3, [r7, #20] + 8006afc: 68bb ldr r3, [r7, #8] + 8006afe: f023 03c0 bic.w r3, r3, #192 @ 0xc0 + 8006b02: 61fb str r3, [r7, #28] + 8006b04: 687b ldr r3, [r7, #4] + 8006b06: 681b ldr r3, [r3, #0] + 8006b08: 330c adds r3, #12 + 8006b0a: 69fa ldr r2, [r7, #28] + 8006b0c: 61ba str r2, [r7, #24] + 8006b0e: 617b str r3, [r7, #20] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006738: 6979 ldr r1, [r7, #20] - 800673a: 69ba ldr r2, [r7, #24] - 800673c: e841 2300 strex r3, r2, [r1] - 8006740: 613b str r3, [r7, #16] + 8006b10: 6979 ldr r1, [r7, #20] + 8006b12: 69ba ldr r2, [r7, #24] + 8006b14: e841 2300 strex r3, r2, [r1] + 8006b18: 613b str r3, [r7, #16] return(result); - 8006742: 693b ldr r3, [r7, #16] - 8006744: 2b00 cmp r3, #0 - 8006746: d1e5 bne.n 8006714 + 8006b1a: 693b ldr r3, [r7, #16] + 8006b1c: 2b00 cmp r3, #0 + 8006b1e: d1e5 bne.n 8006aec /* At end of Tx process, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8006748: 687b ldr r3, [r7, #4] - 800674a: 2220 movs r2, #32 - 800674c: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8006b20: 687b ldr r3, [r7, #4] + 8006b22: 2220 movs r2, #32 + 8006b24: f883 2041 strb.w r2, [r3, #65] @ 0x41 } - 8006750: bf00 nop - 8006752: 3724 adds r7, #36 @ 0x24 - 8006754: 46bd mov sp, r7 - 8006756: f85d 7b04 ldr.w r7, [sp], #4 - 800675a: 4770 bx lr + 8006b28: bf00 nop + 8006b2a: 3724 adds r7, #36 @ 0x24 + 8006b2c: 46bd mov sp, r7 + 8006b2e: f85d 7b04 ldr.w r7, [sp], #4 + 8006b32: 4770 bx lr -0800675c : +08006b34 : * @brief End ongoing Rx transfer on UART peripheral (following error detection or Reception completion). * @param huart UART handle. * @retval None */ static void UART_EndRxTransfer(UART_HandleTypeDef *huart) { - 800675c: b480 push {r7} - 800675e: b095 sub sp, #84 @ 0x54 - 8006760: af00 add r7, sp, #0 - 8006762: 6078 str r0, [r7, #4] + 8006b34: b480 push {r7} + 8006b36: b095 sub sp, #84 @ 0x54 + 8006b38: af00 add r7, sp, #0 + 8006b3a: 6078 str r0, [r7, #4] /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); - 8006764: 687b ldr r3, [r7, #4] - 8006766: 681b ldr r3, [r3, #0] - 8006768: 330c adds r3, #12 - 800676a: 637b str r3, [r7, #52] @ 0x34 + 8006b3c: 687b ldr r3, [r7, #4] + 8006b3e: 681b ldr r3, [r3, #0] + 8006b40: 330c adds r3, #12 + 8006b42: 637b str r3, [r7, #52] @ 0x34 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800676c: 6b7b ldr r3, [r7, #52] @ 0x34 - 800676e: e853 3f00 ldrex r3, [r3] - 8006772: 633b str r3, [r7, #48] @ 0x30 + 8006b44: 6b7b ldr r3, [r7, #52] @ 0x34 + 8006b46: e853 3f00 ldrex r3, [r3] + 8006b4a: 633b str r3, [r7, #48] @ 0x30 return(result); - 8006774: 6b3b ldr r3, [r7, #48] @ 0x30 - 8006776: f423 7390 bic.w r3, r3, #288 @ 0x120 - 800677a: 64fb str r3, [r7, #76] @ 0x4c - 800677c: 687b ldr r3, [r7, #4] - 800677e: 681b ldr r3, [r3, #0] - 8006780: 330c adds r3, #12 - 8006782: 6cfa ldr r2, [r7, #76] @ 0x4c - 8006784: 643a str r2, [r7, #64] @ 0x40 - 8006786: 63fb str r3, [r7, #60] @ 0x3c + 8006b4c: 6b3b ldr r3, [r7, #48] @ 0x30 + 8006b4e: f423 7390 bic.w r3, r3, #288 @ 0x120 + 8006b52: 64fb str r3, [r7, #76] @ 0x4c + 8006b54: 687b ldr r3, [r7, #4] + 8006b56: 681b ldr r3, [r3, #0] + 8006b58: 330c adds r3, #12 + 8006b5a: 6cfa ldr r2, [r7, #76] @ 0x4c + 8006b5c: 643a str r2, [r7, #64] @ 0x40 + 8006b5e: 63fb str r3, [r7, #60] @ 0x3c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006788: 6bf9 ldr r1, [r7, #60] @ 0x3c - 800678a: 6c3a ldr r2, [r7, #64] @ 0x40 - 800678c: e841 2300 strex r3, r2, [r1] - 8006790: 63bb str r3, [r7, #56] @ 0x38 + 8006b60: 6bf9 ldr r1, [r7, #60] @ 0x3c + 8006b62: 6c3a ldr r2, [r7, #64] @ 0x40 + 8006b64: e841 2300 strex r3, r2, [r1] + 8006b68: 63bb str r3, [r7, #56] @ 0x38 return(result); - 8006792: 6bbb ldr r3, [r7, #56] @ 0x38 - 8006794: 2b00 cmp r3, #0 - 8006796: d1e5 bne.n 8006764 + 8006b6a: 6bbb ldr r3, [r7, #56] @ 0x38 + 8006b6c: 2b00 cmp r3, #0 + 8006b6e: d1e5 bne.n 8006b3c ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 8006798: 687b ldr r3, [r7, #4] - 800679a: 681b ldr r3, [r3, #0] - 800679c: 3314 adds r3, #20 - 800679e: 623b str r3, [r7, #32] + 8006b70: 687b ldr r3, [r7, #4] + 8006b72: 681b ldr r3, [r3, #0] + 8006b74: 3314 adds r3, #20 + 8006b76: 623b str r3, [r7, #32] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80067a0: 6a3b ldr r3, [r7, #32] - 80067a2: e853 3f00 ldrex r3, [r3] - 80067a6: 61fb str r3, [r7, #28] + 8006b78: 6a3b ldr r3, [r7, #32] + 8006b7a: e853 3f00 ldrex r3, [r3] + 8006b7e: 61fb str r3, [r7, #28] return(result); - 80067a8: 69fb ldr r3, [r7, #28] - 80067aa: f023 0301 bic.w r3, r3, #1 - 80067ae: 64bb str r3, [r7, #72] @ 0x48 - 80067b0: 687b ldr r3, [r7, #4] - 80067b2: 681b ldr r3, [r3, #0] - 80067b4: 3314 adds r3, #20 - 80067b6: 6cba ldr r2, [r7, #72] @ 0x48 - 80067b8: 62fa str r2, [r7, #44] @ 0x2c - 80067ba: 62bb str r3, [r7, #40] @ 0x28 + 8006b80: 69fb ldr r3, [r7, #28] + 8006b82: f023 0301 bic.w r3, r3, #1 + 8006b86: 64bb str r3, [r7, #72] @ 0x48 + 8006b88: 687b ldr r3, [r7, #4] + 8006b8a: 681b ldr r3, [r3, #0] + 8006b8c: 3314 adds r3, #20 + 8006b8e: 6cba ldr r2, [r7, #72] @ 0x48 + 8006b90: 62fa str r2, [r7, #44] @ 0x2c + 8006b92: 62bb str r3, [r7, #40] @ 0x28 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80067bc: 6ab9 ldr r1, [r7, #40] @ 0x28 - 80067be: 6afa ldr r2, [r7, #44] @ 0x2c - 80067c0: e841 2300 strex r3, r2, [r1] - 80067c4: 627b str r3, [r7, #36] @ 0x24 + 8006b94: 6ab9 ldr r1, [r7, #40] @ 0x28 + 8006b96: 6afa ldr r2, [r7, #44] @ 0x2c + 8006b98: e841 2300 strex r3, r2, [r1] + 8006b9c: 627b str r3, [r7, #36] @ 0x24 return(result); - 80067c6: 6a7b ldr r3, [r7, #36] @ 0x24 - 80067c8: 2b00 cmp r3, #0 - 80067ca: d1e5 bne.n 8006798 + 8006b9e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8006ba0: 2b00 cmp r3, #0 + 8006ba2: d1e5 bne.n 8006b70 /* In case of reception waiting for IDLE event, disable also the IDLE IE interrupt source */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 80067cc: 687b ldr r3, [r7, #4] - 80067ce: 6b1b ldr r3, [r3, #48] @ 0x30 - 80067d0: 2b01 cmp r3, #1 - 80067d2: d119 bne.n 8006808 + 8006ba4: 687b ldr r3, [r7, #4] + 8006ba6: 6b1b ldr r3, [r3, #48] @ 0x30 + 8006ba8: 2b01 cmp r3, #1 + 8006baa: d119 bne.n 8006be0 { ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 80067d4: 687b ldr r3, [r7, #4] - 80067d6: 681b ldr r3, [r3, #0] - 80067d8: 330c adds r3, #12 - 80067da: 60fb str r3, [r7, #12] + 8006bac: 687b ldr r3, [r7, #4] + 8006bae: 681b ldr r3, [r3, #0] + 8006bb0: 330c adds r3, #12 + 8006bb2: 60fb str r3, [r7, #12] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80067dc: 68fb ldr r3, [r7, #12] - 80067de: e853 3f00 ldrex r3, [r3] - 80067e2: 60bb str r3, [r7, #8] + 8006bb4: 68fb ldr r3, [r7, #12] + 8006bb6: e853 3f00 ldrex r3, [r3] + 8006bba: 60bb str r3, [r7, #8] return(result); - 80067e4: 68bb ldr r3, [r7, #8] - 80067e6: f023 0310 bic.w r3, r3, #16 - 80067ea: 647b str r3, [r7, #68] @ 0x44 - 80067ec: 687b ldr r3, [r7, #4] - 80067ee: 681b ldr r3, [r3, #0] - 80067f0: 330c adds r3, #12 - 80067f2: 6c7a ldr r2, [r7, #68] @ 0x44 - 80067f4: 61ba str r2, [r7, #24] - 80067f6: 617b str r3, [r7, #20] + 8006bbc: 68bb ldr r3, [r7, #8] + 8006bbe: f023 0310 bic.w r3, r3, #16 + 8006bc2: 647b str r3, [r7, #68] @ 0x44 + 8006bc4: 687b ldr r3, [r7, #4] + 8006bc6: 681b ldr r3, [r3, #0] + 8006bc8: 330c adds r3, #12 + 8006bca: 6c7a ldr r2, [r7, #68] @ 0x44 + 8006bcc: 61ba str r2, [r7, #24] + 8006bce: 617b str r3, [r7, #20] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80067f8: 6979 ldr r1, [r7, #20] - 80067fa: 69ba ldr r2, [r7, #24] - 80067fc: e841 2300 strex r3, r2, [r1] - 8006800: 613b str r3, [r7, #16] + 8006bd0: 6979 ldr r1, [r7, #20] + 8006bd2: 69ba ldr r2, [r7, #24] + 8006bd4: e841 2300 strex r3, r2, [r1] + 8006bd8: 613b str r3, [r7, #16] return(result); - 8006802: 693b ldr r3, [r7, #16] - 8006804: 2b00 cmp r3, #0 - 8006806: d1e5 bne.n 80067d4 + 8006bda: 693b ldr r3, [r7, #16] + 8006bdc: 2b00 cmp r3, #0 + 8006bde: d1e5 bne.n 8006bac } /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8006808: 687b ldr r3, [r7, #4] - 800680a: 2220 movs r2, #32 - 800680c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8006be0: 687b ldr r3, [r7, #4] + 8006be2: 2220 movs r2, #32 + 8006be4: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8006810: 687b ldr r3, [r7, #4] - 8006812: 2200 movs r2, #0 - 8006814: 631a str r2, [r3, #48] @ 0x30 + 8006be8: 687b ldr r3, [r7, #4] + 8006bea: 2200 movs r2, #0 + 8006bec: 631a str r2, [r3, #48] @ 0x30 } - 8006816: bf00 nop - 8006818: 3754 adds r7, #84 @ 0x54 - 800681a: 46bd mov sp, r7 - 800681c: f85d 7b04 ldr.w r7, [sp], #4 - 8006820: 4770 bx lr + 8006bee: bf00 nop + 8006bf0: 3754 adds r7, #84 @ 0x54 + 8006bf2: 46bd mov sp, r7 + 8006bf4: f85d 7b04 ldr.w r7, [sp], #4 + 8006bf8: 4770 bx lr -08006822 : +08006bfa : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAAbortOnError(DMA_HandleTypeDef *hdma) { - 8006822: b580 push {r7, lr} - 8006824: b084 sub sp, #16 - 8006826: af00 add r7, sp, #0 - 8006828: 6078 str r0, [r7, #4] + 8006bfa: b580 push {r7, lr} + 8006bfc: b084 sub sp, #16 + 8006bfe: af00 add r7, sp, #0 + 8006c00: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 800682a: 687b ldr r3, [r7, #4] - 800682c: 6b9b ldr r3, [r3, #56] @ 0x38 - 800682e: 60fb str r3, [r7, #12] + 8006c02: 687b ldr r3, [r7, #4] + 8006c04: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006c06: 60fb str r3, [r7, #12] huart->RxXferCount = 0x00U; - 8006830: 68fb ldr r3, [r7, #12] - 8006832: 2200 movs r2, #0 - 8006834: 85da strh r2, [r3, #46] @ 0x2e + 8006c08: 68fb ldr r3, [r7, #12] + 8006c0a: 2200 movs r2, #0 + 8006c0c: 85da strh r2, [r3, #46] @ 0x2e #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8006836: 68f8 ldr r0, [r7, #12] - 8006838: f7fa f9a2 bl 8000b80 + 8006c0e: 68f8 ldr r0, [r7, #12] + 8006c10: f7fa f8c4 bl 8000d9c #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 800683c: bf00 nop - 800683e: 3710 adds r7, #16 - 8006840: 46bd mov sp, r7 - 8006842: bd80 pop {r7, pc} + 8006c14: bf00 nop + 8006c16: 3710 adds r7, #16 + 8006c18: 46bd mov sp, r7 + 8006c1a: bd80 pop {r7, pc} -08006844 : +08006c1c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_Transmit_IT(UART_HandleTypeDef *huart) { - 8006844: b480 push {r7} - 8006846: b085 sub sp, #20 - 8006848: af00 add r7, sp, #0 - 800684a: 6078 str r0, [r7, #4] + 8006c1c: b480 push {r7} + 8006c1e: b085 sub sp, #20 + 8006c20: af00 add r7, sp, #0 + 8006c22: 6078 str r0, [r7, #4] const uint16_t *tmp; /* Check that a Tx process is ongoing */ if (huart->gState == HAL_UART_STATE_BUSY_TX) - 800684c: 687b ldr r3, [r7, #4] - 800684e: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8006852: b2db uxtb r3, r3 - 8006854: 2b21 cmp r3, #33 @ 0x21 - 8006856: d13e bne.n 80068d6 + 8006c24: 687b ldr r3, [r7, #4] + 8006c26: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8006c2a: b2db uxtb r3, r3 + 8006c2c: 2b21 cmp r3, #33 @ 0x21 + 8006c2e: d13e bne.n 8006cae { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8006858: 687b ldr r3, [r7, #4] - 800685a: 689b ldr r3, [r3, #8] - 800685c: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8006860: d114 bne.n 800688c - 8006862: 687b ldr r3, [r7, #4] - 8006864: 691b ldr r3, [r3, #16] - 8006866: 2b00 cmp r3, #0 - 8006868: d110 bne.n 800688c + 8006c30: 687b ldr r3, [r7, #4] + 8006c32: 689b ldr r3, [r3, #8] + 8006c34: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8006c38: d114 bne.n 8006c64 + 8006c3a: 687b ldr r3, [r7, #4] + 8006c3c: 691b ldr r3, [r3, #16] + 8006c3e: 2b00 cmp r3, #0 + 8006c40: d110 bne.n 8006c64 { tmp = (const uint16_t *) huart->pTxBuffPtr; - 800686a: 687b ldr r3, [r7, #4] - 800686c: 6a1b ldr r3, [r3, #32] - 800686e: 60fb str r3, [r7, #12] + 8006c42: 687b ldr r3, [r7, #4] + 8006c44: 6a1b ldr r3, [r3, #32] + 8006c46: 60fb str r3, [r7, #12] huart->Instance->DR = (uint16_t)(*tmp & (uint16_t)0x01FF); - 8006870: 68fb ldr r3, [r7, #12] - 8006872: 881b ldrh r3, [r3, #0] - 8006874: 461a mov r2, r3 - 8006876: 687b ldr r3, [r7, #4] - 8006878: 681b ldr r3, [r3, #0] - 800687a: f3c2 0208 ubfx r2, r2, #0, #9 - 800687e: 605a str r2, [r3, #4] + 8006c48: 68fb ldr r3, [r7, #12] + 8006c4a: 881b ldrh r3, [r3, #0] + 8006c4c: 461a mov r2, r3 + 8006c4e: 687b ldr r3, [r7, #4] + 8006c50: 681b ldr r3, [r3, #0] + 8006c52: f3c2 0208 ubfx r2, r2, #0, #9 + 8006c56: 605a str r2, [r3, #4] huart->pTxBuffPtr += 2U; - 8006880: 687b ldr r3, [r7, #4] - 8006882: 6a1b ldr r3, [r3, #32] - 8006884: 1c9a adds r2, r3, #2 - 8006886: 687b ldr r3, [r7, #4] - 8006888: 621a str r2, [r3, #32] - 800688a: e008 b.n 800689e + 8006c58: 687b ldr r3, [r7, #4] + 8006c5a: 6a1b ldr r3, [r3, #32] + 8006c5c: 1c9a adds r2, r3, #2 + 8006c5e: 687b ldr r3, [r7, #4] + 8006c60: 621a str r2, [r3, #32] + 8006c62: e008 b.n 8006c76 } else { huart->Instance->DR = (uint8_t)(*huart->pTxBuffPtr++ & (uint8_t)0x00FF); - 800688c: 687b ldr r3, [r7, #4] - 800688e: 6a1b ldr r3, [r3, #32] - 8006890: 1c59 adds r1, r3, #1 - 8006892: 687a ldr r2, [r7, #4] - 8006894: 6211 str r1, [r2, #32] - 8006896: 781a ldrb r2, [r3, #0] - 8006898: 687b ldr r3, [r7, #4] - 800689a: 681b ldr r3, [r3, #0] - 800689c: 605a str r2, [r3, #4] + 8006c64: 687b ldr r3, [r7, #4] + 8006c66: 6a1b ldr r3, [r3, #32] + 8006c68: 1c59 adds r1, r3, #1 + 8006c6a: 687a ldr r2, [r7, #4] + 8006c6c: 6211 str r1, [r2, #32] + 8006c6e: 781a ldrb r2, [r3, #0] + 8006c70: 687b ldr r3, [r7, #4] + 8006c72: 681b ldr r3, [r3, #0] + 8006c74: 605a str r2, [r3, #4] } if (--huart->TxXferCount == 0U) - 800689e: 687b ldr r3, [r7, #4] - 80068a0: 8cdb ldrh r3, [r3, #38] @ 0x26 - 80068a2: b29b uxth r3, r3 - 80068a4: 3b01 subs r3, #1 - 80068a6: b29b uxth r3, r3 - 80068a8: 687a ldr r2, [r7, #4] - 80068aa: 4619 mov r1, r3 - 80068ac: 84d1 strh r1, [r2, #38] @ 0x26 - 80068ae: 2b00 cmp r3, #0 - 80068b0: d10f bne.n 80068d2 + 8006c76: 687b ldr r3, [r7, #4] + 8006c78: 8cdb ldrh r3, [r3, #38] @ 0x26 + 8006c7a: b29b uxth r3, r3 + 8006c7c: 3b01 subs r3, #1 + 8006c7e: b29b uxth r3, r3 + 8006c80: 687a ldr r2, [r7, #4] + 8006c82: 4619 mov r1, r3 + 8006c84: 84d1 strh r1, [r2, #38] @ 0x26 + 8006c86: 2b00 cmp r3, #0 + 8006c88: d10f bne.n 8006caa { /* Disable the UART Transmit Data Register Empty Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_TXE); - 80068b2: 687b ldr r3, [r7, #4] - 80068b4: 681b ldr r3, [r3, #0] - 80068b6: 68da ldr r2, [r3, #12] - 80068b8: 687b ldr r3, [r7, #4] - 80068ba: 681b ldr r3, [r3, #0] - 80068bc: f022 0280 bic.w r2, r2, #128 @ 0x80 - 80068c0: 60da str r2, [r3, #12] + 8006c8a: 687b ldr r3, [r7, #4] + 8006c8c: 681b ldr r3, [r3, #0] + 8006c8e: 68da ldr r2, [r3, #12] + 8006c90: 687b ldr r3, [r7, #4] + 8006c92: 681b ldr r3, [r3, #0] + 8006c94: f022 0280 bic.w r2, r2, #128 @ 0x80 + 8006c98: 60da str r2, [r3, #12] /* Enable the UART Transmit Complete Interrupt */ __HAL_UART_ENABLE_IT(huart, UART_IT_TC); - 80068c2: 687b ldr r3, [r7, #4] - 80068c4: 681b ldr r3, [r3, #0] - 80068c6: 68da ldr r2, [r3, #12] - 80068c8: 687b ldr r3, [r7, #4] - 80068ca: 681b ldr r3, [r3, #0] - 80068cc: f042 0240 orr.w r2, r2, #64 @ 0x40 - 80068d0: 60da str r2, [r3, #12] + 8006c9a: 687b ldr r3, [r7, #4] + 8006c9c: 681b ldr r3, [r3, #0] + 8006c9e: 68da ldr r2, [r3, #12] + 8006ca0: 687b ldr r3, [r7, #4] + 8006ca2: 681b ldr r3, [r3, #0] + 8006ca4: f042 0240 orr.w r2, r2, #64 @ 0x40 + 8006ca8: 60da str r2, [r3, #12] } return HAL_OK; - 80068d2: 2300 movs r3, #0 - 80068d4: e000 b.n 80068d8 + 8006caa: 2300 movs r3, #0 + 8006cac: e000 b.n 8006cb0 } else { return HAL_BUSY; - 80068d6: 2302 movs r3, #2 + 8006cae: 2302 movs r3, #2 } } - 80068d8: 4618 mov r0, r3 - 80068da: 3714 adds r7, #20 - 80068dc: 46bd mov sp, r7 - 80068de: f85d 7b04 ldr.w r7, [sp], #4 - 80068e2: 4770 bx lr + 8006cb0: 4618 mov r0, r3 + 8006cb2: 3714 adds r7, #20 + 8006cb4: 46bd mov sp, r7 + 8006cb6: f85d 7b04 ldr.w r7, [sp], #4 + 8006cba: 4770 bx lr -080068e4 : +08006cbc : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_EndTransmit_IT(UART_HandleTypeDef *huart) { - 80068e4: b580 push {r7, lr} - 80068e6: b082 sub sp, #8 - 80068e8: af00 add r7, sp, #0 - 80068ea: 6078 str r0, [r7, #4] + 8006cbc: b580 push {r7, lr} + 8006cbe: b082 sub sp, #8 + 8006cc0: af00 add r7, sp, #0 + 8006cc2: 6078 str r0, [r7, #4] /* Disable the UART Transmit Complete Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_TC); - 80068ec: 687b ldr r3, [r7, #4] - 80068ee: 681b ldr r3, [r3, #0] - 80068f0: 68da ldr r2, [r3, #12] - 80068f2: 687b ldr r3, [r7, #4] - 80068f4: 681b ldr r3, [r3, #0] - 80068f6: f022 0240 bic.w r2, r2, #64 @ 0x40 - 80068fa: 60da str r2, [r3, #12] + 8006cc4: 687b ldr r3, [r7, #4] + 8006cc6: 681b ldr r3, [r3, #0] + 8006cc8: 68da ldr r2, [r3, #12] + 8006cca: 687b ldr r3, [r7, #4] + 8006ccc: 681b ldr r3, [r3, #0] + 8006cce: f022 0240 bic.w r2, r2, #64 @ 0x40 + 8006cd2: 60da str r2, [r3, #12] /* Tx process is ended, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 80068fc: 687b ldr r3, [r7, #4] - 80068fe: 2220 movs r2, #32 - 8006900: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8006cd4: 687b ldr r3, [r7, #4] + 8006cd6: 2220 movs r2, #32 + 8006cd8: f883 2041 strb.w r2, [r3, #65] @ 0x41 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Tx complete callback*/ huart->TxCpltCallback(huart); #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxCpltCallback(huart); - 8006904: 6878 ldr r0, [r7, #4] - 8006906: f7ff fcd7 bl 80062b8 + 8006cdc: 6878 ldr r0, [r7, #4] + 8006cde: f7ff fcd7 bl 8006690 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ return HAL_OK; - 800690a: 2300 movs r3, #0 + 8006ce2: 2300 movs r3, #0 } - 800690c: 4618 mov r0, r3 - 800690e: 3708 adds r7, #8 - 8006910: 46bd mov sp, r7 - 8006912: bd80 pop {r7, pc} + 8006ce4: 4618 mov r0, r3 + 8006ce6: 3708 adds r7, #8 + 8006ce8: 46bd mov sp, r7 + 8006cea: bd80 pop {r7, pc} -08006914 : +08006cec : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_Receive_IT(UART_HandleTypeDef *huart) { - 8006914: b580 push {r7, lr} - 8006916: b08c sub sp, #48 @ 0x30 - 8006918: af00 add r7, sp, #0 - 800691a: 6078 str r0, [r7, #4] + 8006cec: b580 push {r7, lr} + 8006cee: b08c sub sp, #48 @ 0x30 + 8006cf0: af00 add r7, sp, #0 + 8006cf2: 6078 str r0, [r7, #4] uint8_t *pdata8bits = NULL; - 800691c: 2300 movs r3, #0 - 800691e: 62fb str r3, [r7, #44] @ 0x2c + 8006cf4: 2300 movs r3, #0 + 8006cf6: 62fb str r3, [r7, #44] @ 0x2c uint16_t *pdata16bits = NULL; - 8006920: 2300 movs r3, #0 - 8006922: 62bb str r3, [r7, #40] @ 0x28 + 8006cf8: 2300 movs r3, #0 + 8006cfa: 62bb str r3, [r7, #40] @ 0x28 /* Check that a Rx process is ongoing */ if (huart->RxState == HAL_UART_STATE_BUSY_RX) - 8006924: 687b ldr r3, [r7, #4] - 8006926: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 800692a: b2db uxtb r3, r3 - 800692c: 2b22 cmp r3, #34 @ 0x22 - 800692e: f040 80aa bne.w 8006a86 + 8006cfc: 687b ldr r3, [r7, #4] + 8006cfe: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8006d02: b2db uxtb r3, r3 + 8006d04: 2b22 cmp r3, #34 @ 0x22 + 8006d06: f040 80aa bne.w 8006e5e { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8006932: 687b ldr r3, [r7, #4] - 8006934: 689b ldr r3, [r3, #8] - 8006936: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 800693a: d115 bne.n 8006968 - 800693c: 687b ldr r3, [r7, #4] - 800693e: 691b ldr r3, [r3, #16] - 8006940: 2b00 cmp r3, #0 - 8006942: d111 bne.n 8006968 + 8006d0a: 687b ldr r3, [r7, #4] + 8006d0c: 689b ldr r3, [r3, #8] + 8006d0e: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8006d12: d115 bne.n 8006d40 + 8006d14: 687b ldr r3, [r7, #4] + 8006d16: 691b ldr r3, [r3, #16] + 8006d18: 2b00 cmp r3, #0 + 8006d1a: d111 bne.n 8006d40 { /* Unused pdata8bits */ UNUSED(pdata8bits); pdata16bits = (uint16_t *) huart->pRxBuffPtr; - 8006944: 687b ldr r3, [r7, #4] - 8006946: 6a9b ldr r3, [r3, #40] @ 0x28 - 8006948: 62bb str r3, [r7, #40] @ 0x28 + 8006d1c: 687b ldr r3, [r7, #4] + 8006d1e: 6a9b ldr r3, [r3, #40] @ 0x28 + 8006d20: 62bb str r3, [r7, #40] @ 0x28 *pdata16bits = (uint16_t)(huart->Instance->DR & (uint16_t)0x01FF); - 800694a: 687b ldr r3, [r7, #4] - 800694c: 681b ldr r3, [r3, #0] - 800694e: 685b ldr r3, [r3, #4] - 8006950: b29b uxth r3, r3 - 8006952: f3c3 0308 ubfx r3, r3, #0, #9 - 8006956: b29a uxth r2, r3 - 8006958: 6abb ldr r3, [r7, #40] @ 0x28 - 800695a: 801a strh r2, [r3, #0] + 8006d22: 687b ldr r3, [r7, #4] + 8006d24: 681b ldr r3, [r3, #0] + 8006d26: 685b ldr r3, [r3, #4] + 8006d28: b29b uxth r3, r3 + 8006d2a: f3c3 0308 ubfx r3, r3, #0, #9 + 8006d2e: b29a uxth r2, r3 + 8006d30: 6abb ldr r3, [r7, #40] @ 0x28 + 8006d32: 801a strh r2, [r3, #0] huart->pRxBuffPtr += 2U; - 800695c: 687b ldr r3, [r7, #4] - 800695e: 6a9b ldr r3, [r3, #40] @ 0x28 - 8006960: 1c9a adds r2, r3, #2 - 8006962: 687b ldr r3, [r7, #4] - 8006964: 629a str r2, [r3, #40] @ 0x28 - 8006966: e024 b.n 80069b2 + 8006d34: 687b ldr r3, [r7, #4] + 8006d36: 6a9b ldr r3, [r3, #40] @ 0x28 + 8006d38: 1c9a adds r2, r3, #2 + 8006d3a: 687b ldr r3, [r7, #4] + 8006d3c: 629a str r2, [r3, #40] @ 0x28 + 8006d3e: e024 b.n 8006d8a } else { pdata8bits = (uint8_t *) huart->pRxBuffPtr; - 8006968: 687b ldr r3, [r7, #4] - 800696a: 6a9b ldr r3, [r3, #40] @ 0x28 - 800696c: 62fb str r3, [r7, #44] @ 0x2c + 8006d40: 687b ldr r3, [r7, #4] + 8006d42: 6a9b ldr r3, [r3, #40] @ 0x28 + 8006d44: 62fb str r3, [r7, #44] @ 0x2c /* Unused pdata16bits */ UNUSED(pdata16bits); if ((huart->Init.WordLength == UART_WORDLENGTH_9B) || ((huart->Init.WordLength == UART_WORDLENGTH_8B) && (huart->Init.Parity == UART_PARITY_NONE))) - 800696e: 687b ldr r3, [r7, #4] - 8006970: 689b ldr r3, [r3, #8] - 8006972: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8006976: d007 beq.n 8006988 - 8006978: 687b ldr r3, [r7, #4] - 800697a: 689b ldr r3, [r3, #8] - 800697c: 2b00 cmp r3, #0 - 800697e: d10a bne.n 8006996 - 8006980: 687b ldr r3, [r7, #4] - 8006982: 691b ldr r3, [r3, #16] - 8006984: 2b00 cmp r3, #0 - 8006986: d106 bne.n 8006996 + 8006d46: 687b ldr r3, [r7, #4] + 8006d48: 689b ldr r3, [r3, #8] + 8006d4a: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8006d4e: d007 beq.n 8006d60 + 8006d50: 687b ldr r3, [r7, #4] + 8006d52: 689b ldr r3, [r3, #8] + 8006d54: 2b00 cmp r3, #0 + 8006d56: d10a bne.n 8006d6e + 8006d58: 687b ldr r3, [r7, #4] + 8006d5a: 691b ldr r3, [r3, #16] + 8006d5c: 2b00 cmp r3, #0 + 8006d5e: d106 bne.n 8006d6e { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x00FF); - 8006988: 687b ldr r3, [r7, #4] - 800698a: 681b ldr r3, [r3, #0] - 800698c: 685b ldr r3, [r3, #4] - 800698e: b2da uxtb r2, r3 - 8006990: 6afb ldr r3, [r7, #44] @ 0x2c - 8006992: 701a strb r2, [r3, #0] - 8006994: e008 b.n 80069a8 + 8006d60: 687b ldr r3, [r7, #4] + 8006d62: 681b ldr r3, [r3, #0] + 8006d64: 685b ldr r3, [r3, #4] + 8006d66: b2da uxtb r2, r3 + 8006d68: 6afb ldr r3, [r7, #44] @ 0x2c + 8006d6a: 701a strb r2, [r3, #0] + 8006d6c: e008 b.n 8006d80 } else { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x007F); - 8006996: 687b ldr r3, [r7, #4] - 8006998: 681b ldr r3, [r3, #0] - 800699a: 685b ldr r3, [r3, #4] - 800699c: b2db uxtb r3, r3 - 800699e: f003 037f and.w r3, r3, #127 @ 0x7f - 80069a2: b2da uxtb r2, r3 - 80069a4: 6afb ldr r3, [r7, #44] @ 0x2c - 80069a6: 701a strb r2, [r3, #0] + 8006d6e: 687b ldr r3, [r7, #4] + 8006d70: 681b ldr r3, [r3, #0] + 8006d72: 685b ldr r3, [r3, #4] + 8006d74: b2db uxtb r3, r3 + 8006d76: f003 037f and.w r3, r3, #127 @ 0x7f + 8006d7a: b2da uxtb r2, r3 + 8006d7c: 6afb ldr r3, [r7, #44] @ 0x2c + 8006d7e: 701a strb r2, [r3, #0] } huart->pRxBuffPtr += 1U; - 80069a8: 687b ldr r3, [r7, #4] - 80069aa: 6a9b ldr r3, [r3, #40] @ 0x28 - 80069ac: 1c5a adds r2, r3, #1 - 80069ae: 687b ldr r3, [r7, #4] - 80069b0: 629a str r2, [r3, #40] @ 0x28 + 8006d80: 687b ldr r3, [r7, #4] + 8006d82: 6a9b ldr r3, [r3, #40] @ 0x28 + 8006d84: 1c5a adds r2, r3, #1 + 8006d86: 687b ldr r3, [r7, #4] + 8006d88: 629a str r2, [r3, #40] @ 0x28 } if (--huart->RxXferCount == 0U) - 80069b2: 687b ldr r3, [r7, #4] - 80069b4: 8ddb ldrh r3, [r3, #46] @ 0x2e - 80069b6: b29b uxth r3, r3 - 80069b8: 3b01 subs r3, #1 - 80069ba: b29b uxth r3, r3 - 80069bc: 687a ldr r2, [r7, #4] - 80069be: 4619 mov r1, r3 - 80069c0: 85d1 strh r1, [r2, #46] @ 0x2e - 80069c2: 2b00 cmp r3, #0 - 80069c4: d15d bne.n 8006a82 + 8006d8a: 687b ldr r3, [r7, #4] + 8006d8c: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8006d8e: b29b uxth r3, r3 + 8006d90: 3b01 subs r3, #1 + 8006d92: b29b uxth r3, r3 + 8006d94: 687a ldr r2, [r7, #4] + 8006d96: 4619 mov r1, r3 + 8006d98: 85d1 strh r1, [r2, #46] @ 0x2e + 8006d9a: 2b00 cmp r3, #0 + 8006d9c: d15d bne.n 8006e5a { /* Disable the UART Data Register not empty Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_RXNE); - 80069c6: 687b ldr r3, [r7, #4] - 80069c8: 681b ldr r3, [r3, #0] - 80069ca: 68da ldr r2, [r3, #12] - 80069cc: 687b ldr r3, [r7, #4] - 80069ce: 681b ldr r3, [r3, #0] - 80069d0: f022 0220 bic.w r2, r2, #32 - 80069d4: 60da str r2, [r3, #12] + 8006d9e: 687b ldr r3, [r7, #4] + 8006da0: 681b ldr r3, [r3, #0] + 8006da2: 68da ldr r2, [r3, #12] + 8006da4: 687b ldr r3, [r7, #4] + 8006da6: 681b ldr r3, [r3, #0] + 8006da8: f022 0220 bic.w r2, r2, #32 + 8006dac: 60da str r2, [r3, #12] /* Disable the UART Parity Error Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_PE); - 80069d6: 687b ldr r3, [r7, #4] - 80069d8: 681b ldr r3, [r3, #0] - 80069da: 68da ldr r2, [r3, #12] - 80069dc: 687b ldr r3, [r7, #4] - 80069de: 681b ldr r3, [r3, #0] - 80069e0: f422 7280 bic.w r2, r2, #256 @ 0x100 - 80069e4: 60da str r2, [r3, #12] + 8006dae: 687b ldr r3, [r7, #4] + 8006db0: 681b ldr r3, [r3, #0] + 8006db2: 68da ldr r2, [r3, #12] + 8006db4: 687b ldr r3, [r7, #4] + 8006db6: 681b ldr r3, [r3, #0] + 8006db8: f422 7280 bic.w r2, r2, #256 @ 0x100 + 8006dbc: 60da str r2, [r3, #12] /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ __HAL_UART_DISABLE_IT(huart, UART_IT_ERR); - 80069e6: 687b ldr r3, [r7, #4] - 80069e8: 681b ldr r3, [r3, #0] - 80069ea: 695a ldr r2, [r3, #20] - 80069ec: 687b ldr r3, [r7, #4] - 80069ee: 681b ldr r3, [r3, #0] - 80069f0: f022 0201 bic.w r2, r2, #1 - 80069f4: 615a str r2, [r3, #20] + 8006dbe: 687b ldr r3, [r7, #4] + 8006dc0: 681b ldr r3, [r3, #0] + 8006dc2: 695a ldr r2, [r3, #20] + 8006dc4: 687b ldr r3, [r7, #4] + 8006dc6: 681b ldr r3, [r3, #0] + 8006dc8: f022 0201 bic.w r2, r2, #1 + 8006dcc: 615a str r2, [r3, #20] /* Rx process is completed, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 80069f6: 687b ldr r3, [r7, #4] - 80069f8: 2220 movs r2, #32 - 80069fa: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8006dce: 687b ldr r3, [r7, #4] + 8006dd0: 2220 movs r2, #32 + 8006dd2: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* Initialize type of RxEvent to Transfer Complete */ huart->RxEventType = HAL_UART_RXEVENT_TC; - 80069fe: 687b ldr r3, [r7, #4] - 8006a00: 2200 movs r2, #0 - 8006a02: 635a str r2, [r3, #52] @ 0x34 + 8006dd6: 687b ldr r3, [r7, #4] + 8006dd8: 2200 movs r2, #0 + 8006dda: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006a04: 687b ldr r3, [r7, #4] - 8006a06: 6b1b ldr r3, [r3, #48] @ 0x30 - 8006a08: 2b01 cmp r3, #1 - 8006a0a: d135 bne.n 8006a78 + 8006ddc: 687b ldr r3, [r7, #4] + 8006dde: 6b1b ldr r3, [r3, #48] @ 0x30 + 8006de0: 2b01 cmp r3, #1 + 8006de2: d135 bne.n 8006e50 { /* Set reception type to Standard */ huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8006a0c: 687b ldr r3, [r7, #4] - 8006a0e: 2200 movs r2, #0 - 8006a10: 631a str r2, [r3, #48] @ 0x30 + 8006de4: 687b ldr r3, [r7, #4] + 8006de6: 2200 movs r2, #0 + 8006de8: 631a str r2, [r3, #48] @ 0x30 /* Disable IDLE interrupt */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8006a12: 687b ldr r3, [r7, #4] - 8006a14: 681b ldr r3, [r3, #0] - 8006a16: 330c adds r3, #12 - 8006a18: 617b str r3, [r7, #20] + 8006dea: 687b ldr r3, [r7, #4] + 8006dec: 681b ldr r3, [r3, #0] + 8006dee: 330c adds r3, #12 + 8006df0: 617b str r3, [r7, #20] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006a1a: 697b ldr r3, [r7, #20] - 8006a1c: e853 3f00 ldrex r3, [r3] - 8006a20: 613b str r3, [r7, #16] + 8006df2: 697b ldr r3, [r7, #20] + 8006df4: e853 3f00 ldrex r3, [r3] + 8006df8: 613b str r3, [r7, #16] return(result); - 8006a22: 693b ldr r3, [r7, #16] - 8006a24: f023 0310 bic.w r3, r3, #16 - 8006a28: 627b str r3, [r7, #36] @ 0x24 - 8006a2a: 687b ldr r3, [r7, #4] - 8006a2c: 681b ldr r3, [r3, #0] - 8006a2e: 330c adds r3, #12 - 8006a30: 6a7a ldr r2, [r7, #36] @ 0x24 - 8006a32: 623a str r2, [r7, #32] - 8006a34: 61fb str r3, [r7, #28] + 8006dfa: 693b ldr r3, [r7, #16] + 8006dfc: f023 0310 bic.w r3, r3, #16 + 8006e00: 627b str r3, [r7, #36] @ 0x24 + 8006e02: 687b ldr r3, [r7, #4] + 8006e04: 681b ldr r3, [r3, #0] + 8006e06: 330c adds r3, #12 + 8006e08: 6a7a ldr r2, [r7, #36] @ 0x24 + 8006e0a: 623a str r2, [r7, #32] + 8006e0c: 61fb str r3, [r7, #28] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006a36: 69f9 ldr r1, [r7, #28] - 8006a38: 6a3a ldr r2, [r7, #32] - 8006a3a: e841 2300 strex r3, r2, [r1] - 8006a3e: 61bb str r3, [r7, #24] + 8006e0e: 69f9 ldr r1, [r7, #28] + 8006e10: 6a3a ldr r2, [r7, #32] + 8006e12: e841 2300 strex r3, r2, [r1] + 8006e16: 61bb str r3, [r7, #24] return(result); - 8006a40: 69bb ldr r3, [r7, #24] - 8006a42: 2b00 cmp r3, #0 - 8006a44: d1e5 bne.n 8006a12 + 8006e18: 69bb ldr r3, [r7, #24] + 8006e1a: 2b00 cmp r3, #0 + 8006e1c: d1e5 bne.n 8006dea /* Check if IDLE flag is set */ if (__HAL_UART_GET_FLAG(huart, UART_FLAG_IDLE)) - 8006a46: 687b ldr r3, [r7, #4] - 8006a48: 681b ldr r3, [r3, #0] - 8006a4a: 681b ldr r3, [r3, #0] - 8006a4c: f003 0310 and.w r3, r3, #16 - 8006a50: 2b10 cmp r3, #16 - 8006a52: d10a bne.n 8006a6a + 8006e1e: 687b ldr r3, [r7, #4] + 8006e20: 681b ldr r3, [r3, #0] + 8006e22: 681b ldr r3, [r3, #0] + 8006e24: f003 0310 and.w r3, r3, #16 + 8006e28: 2b10 cmp r3, #16 + 8006e2a: d10a bne.n 8006e42 { /* Clear IDLE flag in ISR */ __HAL_UART_CLEAR_IDLEFLAG(huart); - 8006a54: 2300 movs r3, #0 - 8006a56: 60fb str r3, [r7, #12] - 8006a58: 687b ldr r3, [r7, #4] - 8006a5a: 681b ldr r3, [r3, #0] - 8006a5c: 681b ldr r3, [r3, #0] - 8006a5e: 60fb str r3, [r7, #12] - 8006a60: 687b ldr r3, [r7, #4] - 8006a62: 681b ldr r3, [r3, #0] - 8006a64: 685b ldr r3, [r3, #4] - 8006a66: 60fb str r3, [r7, #12] - 8006a68: 68fb ldr r3, [r7, #12] + 8006e2c: 2300 movs r3, #0 + 8006e2e: 60fb str r3, [r7, #12] + 8006e30: 687b ldr r3, [r7, #4] + 8006e32: 681b ldr r3, [r3, #0] + 8006e34: 681b ldr r3, [r3, #0] + 8006e36: 60fb str r3, [r7, #12] + 8006e38: 687b ldr r3, [r7, #4] + 8006e3a: 681b ldr r3, [r3, #0] + 8006e3c: 685b ldr r3, [r3, #4] + 8006e3e: 60fb str r3, [r7, #12] + 8006e40: 68fb ldr r3, [r7, #12] #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 8006a6a: 687b ldr r3, [r7, #4] - 8006a6c: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8006a6e: 4619 mov r1, r3 - 8006a70: 6878 ldr r0, [r7, #4] - 8006a72: f7ff fc3f bl 80062f4 - 8006a76: e002 b.n 8006a7e + 8006e42: 687b ldr r3, [r7, #4] + 8006e44: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8006e46: 4619 mov r1, r3 + 8006e48: 6878 ldr r0, [r7, #4] + 8006e4a: f7ff fc3f bl 80066cc + 8006e4e: e002 b.n 8006e56 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx complete callback*/ huart->RxCpltCallback(huart); #else /*Call legacy weak Rx complete callback*/ HAL_UART_RxCpltCallback(huart); - 8006a78: 6878 ldr r0, [r7, #4] - 8006a7a: f7fa f825 bl 8000ac8 + 8006e50: 6878 ldr r0, [r7, #4] + 8006e52: f7f9 ff47 bl 8000ce4 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return HAL_OK; - 8006a7e: 2300 movs r3, #0 - 8006a80: e002 b.n 8006a88 + 8006e56: 2300 movs r3, #0 + 8006e58: e002 b.n 8006e60 } return HAL_OK; - 8006a82: 2300 movs r3, #0 - 8006a84: e000 b.n 8006a88 + 8006e5a: 2300 movs r3, #0 + 8006e5c: e000 b.n 8006e60 } else { return HAL_BUSY; - 8006a86: 2302 movs r3, #2 + 8006e5e: 2302 movs r3, #2 } } - 8006a88: 4618 mov r0, r3 - 8006a8a: 3730 adds r7, #48 @ 0x30 - 8006a8c: 46bd mov sp, r7 - 8006a8e: bd80 pop {r7, pc} + 8006e60: 4618 mov r0, r3 + 8006e62: 3730 adds r7, #48 @ 0x30 + 8006e64: 46bd mov sp, r7 + 8006e66: bd80 pop {r7, pc} -08006a90 : +08006e68 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ static void UART_SetConfig(UART_HandleTypeDef *huart) { - 8006a90: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 8006a94: b0c0 sub sp, #256 @ 0x100 - 8006a96: af00 add r7, sp, #0 - 8006a98: f8c7 00f4 str.w r0, [r7, #244] @ 0xf4 + 8006e68: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 8006e6c: b0c0 sub sp, #256 @ 0x100 + 8006e6e: af00 add r7, sp, #0 + 8006e70: f8c7 00f4 str.w r0, [r7, #244] @ 0xf4 assert_param(IS_UART_MODE(huart->Init.Mode)); /*-------------------------- USART CR2 Configuration -----------------------*/ /* Configure the UART Stop Bits: Set STOP[13:12] bits according to huart->Init.StopBits value */ MODIFY_REG(huart->Instance->CR2, USART_CR2_STOP, huart->Init.StopBits); - 8006a9c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006aa0: 681b ldr r3, [r3, #0] - 8006aa2: 691b ldr r3, [r3, #16] - 8006aa4: f423 5040 bic.w r0, r3, #12288 @ 0x3000 - 8006aa8: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006aac: 68d9 ldr r1, [r3, #12] - 8006aae: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006ab2: 681a ldr r2, [r3, #0] - 8006ab4: ea40 0301 orr.w r3, r0, r1 - 8006ab8: 6113 str r3, [r2, #16] + 8006e74: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006e78: 681b ldr r3, [r3, #0] + 8006e7a: 691b ldr r3, [r3, #16] + 8006e7c: f423 5040 bic.w r0, r3, #12288 @ 0x3000 + 8006e80: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006e84: 68d9 ldr r1, [r3, #12] + 8006e86: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006e8a: 681a ldr r2, [r3, #0] + 8006e8c: ea40 0301 orr.w r3, r0, r1 + 8006e90: 6113 str r3, [r2, #16] Set the M bits according to huart->Init.WordLength value Set PCE and PS bits according to huart->Init.Parity value Set TE and RE bits according to huart->Init.Mode value Set OVER8 bit according to huart->Init.OverSampling value */ tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode | huart->Init.OverSampling; - 8006aba: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006abe: 689a ldr r2, [r3, #8] - 8006ac0: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006ac4: 691b ldr r3, [r3, #16] - 8006ac6: 431a orrs r2, r3 - 8006ac8: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006acc: 695b ldr r3, [r3, #20] - 8006ace: 431a orrs r2, r3 - 8006ad0: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006ad4: 69db ldr r3, [r3, #28] - 8006ad6: 4313 orrs r3, r2 - 8006ad8: f8c7 30f8 str.w r3, [r7, #248] @ 0xf8 + 8006e92: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006e96: 689a ldr r2, [r3, #8] + 8006e98: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006e9c: 691b ldr r3, [r3, #16] + 8006e9e: 431a orrs r2, r3 + 8006ea0: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006ea4: 695b ldr r3, [r3, #20] + 8006ea6: 431a orrs r2, r3 + 8006ea8: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006eac: 69db ldr r3, [r3, #28] + 8006eae: 4313 orrs r3, r2 + 8006eb0: f8c7 30f8 str.w r3, [r7, #248] @ 0xf8 MODIFY_REG(huart->Instance->CR1, - 8006adc: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006ae0: 681b ldr r3, [r3, #0] - 8006ae2: 68db ldr r3, [r3, #12] - 8006ae4: f423 4116 bic.w r1, r3, #38400 @ 0x9600 - 8006ae8: f021 010c bic.w r1, r1, #12 - 8006aec: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006af0: 681a ldr r2, [r3, #0] - 8006af2: f8d7 30f8 ldr.w r3, [r7, #248] @ 0xf8 - 8006af6: 430b orrs r3, r1 - 8006af8: 60d3 str r3, [r2, #12] + 8006eb4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006eb8: 681b ldr r3, [r3, #0] + 8006eba: 68db ldr r3, [r3, #12] + 8006ebc: f423 4116 bic.w r1, r3, #38400 @ 0x9600 + 8006ec0: f021 010c bic.w r1, r1, #12 + 8006ec4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006ec8: 681a ldr r2, [r3, #0] + 8006eca: f8d7 30f8 ldr.w r3, [r7, #248] @ 0xf8 + 8006ece: 430b orrs r3, r1 + 8006ed0: 60d3 str r3, [r2, #12] (uint32_t)(USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8), tmpreg); /*-------------------------- USART CR3 Configuration -----------------------*/ /* Configure the UART HFC: Set CTSE and RTSE bits according to huart->Init.HwFlowCtl value */ MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE), huart->Init.HwFlowCtl); - 8006afa: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006afe: 681b ldr r3, [r3, #0] - 8006b00: 695b ldr r3, [r3, #20] - 8006b02: f423 7040 bic.w r0, r3, #768 @ 0x300 - 8006b06: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b0a: 6999 ldr r1, [r3, #24] - 8006b0c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b10: 681a ldr r2, [r3, #0] - 8006b12: ea40 0301 orr.w r3, r0, r1 - 8006b16: 6153 str r3, [r2, #20] + 8006ed2: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006ed6: 681b ldr r3, [r3, #0] + 8006ed8: 695b ldr r3, [r3, #20] + 8006eda: f423 7040 bic.w r0, r3, #768 @ 0x300 + 8006ede: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006ee2: 6999 ldr r1, [r3, #24] + 8006ee4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006ee8: 681a ldr r2, [r3, #0] + 8006eea: ea40 0301 orr.w r3, r0, r1 + 8006eee: 6153 str r3, [r2, #20] if ((huart->Instance == USART1) || (huart->Instance == USART6) || (huart->Instance == UART9) || (huart->Instance == UART10)) { pclk = HAL_RCC_GetPCLK2Freq(); } #elif defined(USART6) if ((huart->Instance == USART1) || (huart->Instance == USART6)) - 8006b18: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b1c: 681a ldr r2, [r3, #0] - 8006b1e: 4b8f ldr r3, [pc, #572] @ (8006d5c ) - 8006b20: 429a cmp r2, r3 - 8006b22: d005 beq.n 8006b30 - 8006b24: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b28: 681a ldr r2, [r3, #0] - 8006b2a: 4b8d ldr r3, [pc, #564] @ (8006d60 ) - 8006b2c: 429a cmp r2, r3 - 8006b2e: d104 bne.n 8006b3a + 8006ef0: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006ef4: 681a ldr r2, [r3, #0] + 8006ef6: 4b8f ldr r3, [pc, #572] @ (8007134 ) + 8006ef8: 429a cmp r2, r3 + 8006efa: d005 beq.n 8006f08 + 8006efc: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006f00: 681a ldr r2, [r3, #0] + 8006f02: 4b8d ldr r3, [pc, #564] @ (8007138 ) + 8006f04: 429a cmp r2, r3 + 8006f06: d104 bne.n 8006f12 { pclk = HAL_RCC_GetPCLK2Freq(); - 8006b30: f7fd fbf6 bl 8004320 - 8006b34: f8c7 00fc str.w r0, [r7, #252] @ 0xfc - 8006b38: e003 b.n 8006b42 + 8006f08: f7fd fb42 bl 8004590 + 8006f0c: f8c7 00fc str.w r0, [r7, #252] @ 0xfc + 8006f10: e003 b.n 8006f1a pclk = HAL_RCC_GetPCLK2Freq(); } #endif /* USART6 */ else { pclk = HAL_RCC_GetPCLK1Freq(); - 8006b3a: f7fd fbdd bl 80042f8 - 8006b3e: f8c7 00fc str.w r0, [r7, #252] @ 0xfc + 8006f12: f7fd fb29 bl 8004568 + 8006f16: f8c7 00fc str.w r0, [r7, #252] @ 0xfc } /*-------------------------- USART BRR Configuration ---------------------*/ if (huart->Init.OverSampling == UART_OVERSAMPLING_8) - 8006b42: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b46: 69db ldr r3, [r3, #28] - 8006b48: f5b3 4f00 cmp.w r3, #32768 @ 0x8000 - 8006b4c: f040 810c bne.w 8006d68 + 8006f1a: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006f1e: 69db ldr r3, [r3, #28] + 8006f20: f5b3 4f00 cmp.w r3, #32768 @ 0x8000 + 8006f24: f040 810c bne.w 8007140 { huart->Instance->BRR = UART_BRR_SAMPLING8(pclk, huart->Init.BaudRate); - 8006b50: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006b54: 2200 movs r2, #0 - 8006b56: f8c7 30e8 str.w r3, [r7, #232] @ 0xe8 - 8006b5a: f8c7 20ec str.w r2, [r7, #236] @ 0xec - 8006b5e: e9d7 453a ldrd r4, r5, [r7, #232] @ 0xe8 - 8006b62: 4622 mov r2, r4 - 8006b64: 462b mov r3, r5 - 8006b66: 1891 adds r1, r2, r2 - 8006b68: 65b9 str r1, [r7, #88] @ 0x58 - 8006b6a: 415b adcs r3, r3 - 8006b6c: 65fb str r3, [r7, #92] @ 0x5c - 8006b6e: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 - 8006b72: 4621 mov r1, r4 - 8006b74: eb12 0801 adds.w r8, r2, r1 - 8006b78: 4629 mov r1, r5 - 8006b7a: eb43 0901 adc.w r9, r3, r1 - 8006b7e: f04f 0200 mov.w r2, #0 - 8006b82: f04f 0300 mov.w r3, #0 - 8006b86: ea4f 03c9 mov.w r3, r9, lsl #3 - 8006b8a: ea43 7358 orr.w r3, r3, r8, lsr #29 - 8006b8e: ea4f 02c8 mov.w r2, r8, lsl #3 - 8006b92: 4690 mov r8, r2 - 8006b94: 4699 mov r9, r3 - 8006b96: 4623 mov r3, r4 - 8006b98: eb18 0303 adds.w r3, r8, r3 - 8006b9c: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 - 8006ba0: 462b mov r3, r5 - 8006ba2: eb49 0303 adc.w r3, r9, r3 - 8006ba6: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 - 8006baa: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006bae: 685b ldr r3, [r3, #4] - 8006bb0: 2200 movs r2, #0 - 8006bb2: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 - 8006bb6: f8c7 20dc str.w r2, [r7, #220] @ 0xdc - 8006bba: e9d7 1236 ldrd r1, r2, [r7, #216] @ 0xd8 - 8006bbe: 460b mov r3, r1 - 8006bc0: 18db adds r3, r3, r3 - 8006bc2: 653b str r3, [r7, #80] @ 0x50 - 8006bc4: 4613 mov r3, r2 - 8006bc6: eb42 0303 adc.w r3, r2, r3 - 8006bca: 657b str r3, [r7, #84] @ 0x54 - 8006bcc: e9d7 2314 ldrd r2, r3, [r7, #80] @ 0x50 - 8006bd0: e9d7 0138 ldrd r0, r1, [r7, #224] @ 0xe0 - 8006bd4: f7f9 fb16 bl 8000204 <__aeabi_uldivmod> - 8006bd8: 4602 mov r2, r0 - 8006bda: 460b mov r3, r1 - 8006bdc: 4b61 ldr r3, [pc, #388] @ (8006d64 ) - 8006bde: fba3 2302 umull r2, r3, r3, r2 - 8006be2: 095b lsrs r3, r3, #5 - 8006be4: 011c lsls r4, r3, #4 - 8006be6: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006bea: 2200 movs r2, #0 - 8006bec: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 - 8006bf0: f8c7 20d4 str.w r2, [r7, #212] @ 0xd4 - 8006bf4: e9d7 8934 ldrd r8, r9, [r7, #208] @ 0xd0 - 8006bf8: 4642 mov r2, r8 - 8006bfa: 464b mov r3, r9 - 8006bfc: 1891 adds r1, r2, r2 - 8006bfe: 64b9 str r1, [r7, #72] @ 0x48 - 8006c00: 415b adcs r3, r3 - 8006c02: 64fb str r3, [r7, #76] @ 0x4c - 8006c04: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 - 8006c08: 4641 mov r1, r8 - 8006c0a: eb12 0a01 adds.w sl, r2, r1 - 8006c0e: 4649 mov r1, r9 - 8006c10: eb43 0b01 adc.w fp, r3, r1 - 8006c14: f04f 0200 mov.w r2, #0 - 8006c18: f04f 0300 mov.w r3, #0 - 8006c1c: ea4f 03cb mov.w r3, fp, lsl #3 - 8006c20: ea43 735a orr.w r3, r3, sl, lsr #29 - 8006c24: ea4f 02ca mov.w r2, sl, lsl #3 - 8006c28: 4692 mov sl, r2 - 8006c2a: 469b mov fp, r3 - 8006c2c: 4643 mov r3, r8 - 8006c2e: eb1a 0303 adds.w r3, sl, r3 - 8006c32: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 - 8006c36: 464b mov r3, r9 - 8006c38: eb4b 0303 adc.w r3, fp, r3 - 8006c3c: f8c7 30cc str.w r3, [r7, #204] @ 0xcc - 8006c40: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006c44: 685b ldr r3, [r3, #4] - 8006c46: 2200 movs r2, #0 - 8006c48: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 - 8006c4c: f8c7 20c4 str.w r2, [r7, #196] @ 0xc4 - 8006c50: e9d7 1230 ldrd r1, r2, [r7, #192] @ 0xc0 - 8006c54: 460b mov r3, r1 - 8006c56: 18db adds r3, r3, r3 - 8006c58: 643b str r3, [r7, #64] @ 0x40 - 8006c5a: 4613 mov r3, r2 - 8006c5c: eb42 0303 adc.w r3, r2, r3 - 8006c60: 647b str r3, [r7, #68] @ 0x44 - 8006c62: e9d7 2310 ldrd r2, r3, [r7, #64] @ 0x40 - 8006c66: e9d7 0132 ldrd r0, r1, [r7, #200] @ 0xc8 - 8006c6a: f7f9 facb bl 8000204 <__aeabi_uldivmod> - 8006c6e: 4602 mov r2, r0 - 8006c70: 460b mov r3, r1 - 8006c72: 4611 mov r1, r2 - 8006c74: 4b3b ldr r3, [pc, #236] @ (8006d64 ) - 8006c76: fba3 2301 umull r2, r3, r3, r1 - 8006c7a: 095b lsrs r3, r3, #5 - 8006c7c: 2264 movs r2, #100 @ 0x64 - 8006c7e: fb02 f303 mul.w r3, r2, r3 - 8006c82: 1acb subs r3, r1, r3 - 8006c84: 00db lsls r3, r3, #3 - 8006c86: f103 0232 add.w r2, r3, #50 @ 0x32 - 8006c8a: 4b36 ldr r3, [pc, #216] @ (8006d64 ) - 8006c8c: fba3 2302 umull r2, r3, r3, r2 - 8006c90: 095b lsrs r3, r3, #5 - 8006c92: 005b lsls r3, r3, #1 - 8006c94: f403 73f8 and.w r3, r3, #496 @ 0x1f0 - 8006c98: 441c add r4, r3 - 8006c9a: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006c9e: 2200 movs r2, #0 - 8006ca0: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 - 8006ca4: f8c7 20bc str.w r2, [r7, #188] @ 0xbc - 8006ca8: e9d7 892e ldrd r8, r9, [r7, #184] @ 0xb8 - 8006cac: 4642 mov r2, r8 - 8006cae: 464b mov r3, r9 - 8006cb0: 1891 adds r1, r2, r2 - 8006cb2: 63b9 str r1, [r7, #56] @ 0x38 - 8006cb4: 415b adcs r3, r3 - 8006cb6: 63fb str r3, [r7, #60] @ 0x3c - 8006cb8: e9d7 230e ldrd r2, r3, [r7, #56] @ 0x38 - 8006cbc: 4641 mov r1, r8 - 8006cbe: 1851 adds r1, r2, r1 - 8006cc0: 6339 str r1, [r7, #48] @ 0x30 - 8006cc2: 4649 mov r1, r9 - 8006cc4: 414b adcs r3, r1 - 8006cc6: 637b str r3, [r7, #52] @ 0x34 - 8006cc8: f04f 0200 mov.w r2, #0 - 8006ccc: f04f 0300 mov.w r3, #0 - 8006cd0: e9d7 ab0c ldrd sl, fp, [r7, #48] @ 0x30 - 8006cd4: 4659 mov r1, fp - 8006cd6: 00cb lsls r3, r1, #3 - 8006cd8: 4651 mov r1, sl - 8006cda: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8006cde: 4651 mov r1, sl - 8006ce0: 00ca lsls r2, r1, #3 - 8006ce2: 4610 mov r0, r2 - 8006ce4: 4619 mov r1, r3 - 8006ce6: 4603 mov r3, r0 - 8006ce8: 4642 mov r2, r8 - 8006cea: 189b adds r3, r3, r2 - 8006cec: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 - 8006cf0: 464b mov r3, r9 - 8006cf2: 460a mov r2, r1 - 8006cf4: eb42 0303 adc.w r3, r2, r3 - 8006cf8: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8006cfc: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006d00: 685b ldr r3, [r3, #4] - 8006d02: 2200 movs r2, #0 - 8006d04: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 - 8006d08: f8c7 20ac str.w r2, [r7, #172] @ 0xac - 8006d0c: e9d7 122a ldrd r1, r2, [r7, #168] @ 0xa8 - 8006d10: 460b mov r3, r1 - 8006d12: 18db adds r3, r3, r3 - 8006d14: 62bb str r3, [r7, #40] @ 0x28 - 8006d16: 4613 mov r3, r2 - 8006d18: eb42 0303 adc.w r3, r2, r3 - 8006d1c: 62fb str r3, [r7, #44] @ 0x2c - 8006d1e: e9d7 230a ldrd r2, r3, [r7, #40] @ 0x28 - 8006d22: e9d7 012c ldrd r0, r1, [r7, #176] @ 0xb0 - 8006d26: f7f9 fa6d bl 8000204 <__aeabi_uldivmod> - 8006d2a: 4602 mov r2, r0 - 8006d2c: 460b mov r3, r1 - 8006d2e: 4b0d ldr r3, [pc, #52] @ (8006d64 ) - 8006d30: fba3 1302 umull r1, r3, r3, r2 - 8006d34: 095b lsrs r3, r3, #5 - 8006d36: 2164 movs r1, #100 @ 0x64 - 8006d38: fb01 f303 mul.w r3, r1, r3 - 8006d3c: 1ad3 subs r3, r2, r3 - 8006d3e: 00db lsls r3, r3, #3 - 8006d40: 3332 adds r3, #50 @ 0x32 - 8006d42: 4a08 ldr r2, [pc, #32] @ (8006d64 ) - 8006d44: fba2 2303 umull r2, r3, r2, r3 - 8006d48: 095b lsrs r3, r3, #5 - 8006d4a: f003 0207 and.w r2, r3, #7 - 8006d4e: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006d52: 681b ldr r3, [r3, #0] - 8006d54: 4422 add r2, r4 - 8006d56: 609a str r2, [r3, #8] + 8006f28: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006f2c: 2200 movs r2, #0 + 8006f2e: f8c7 30e8 str.w r3, [r7, #232] @ 0xe8 + 8006f32: f8c7 20ec str.w r2, [r7, #236] @ 0xec + 8006f36: e9d7 453a ldrd r4, r5, [r7, #232] @ 0xe8 + 8006f3a: 4622 mov r2, r4 + 8006f3c: 462b mov r3, r5 + 8006f3e: 1891 adds r1, r2, r2 + 8006f40: 65b9 str r1, [r7, #88] @ 0x58 + 8006f42: 415b adcs r3, r3 + 8006f44: 65fb str r3, [r7, #92] @ 0x5c + 8006f46: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 + 8006f4a: 4621 mov r1, r4 + 8006f4c: eb12 0801 adds.w r8, r2, r1 + 8006f50: 4629 mov r1, r5 + 8006f52: eb43 0901 adc.w r9, r3, r1 + 8006f56: f04f 0200 mov.w r2, #0 + 8006f5a: f04f 0300 mov.w r3, #0 + 8006f5e: ea4f 03c9 mov.w r3, r9, lsl #3 + 8006f62: ea43 7358 orr.w r3, r3, r8, lsr #29 + 8006f66: ea4f 02c8 mov.w r2, r8, lsl #3 + 8006f6a: 4690 mov r8, r2 + 8006f6c: 4699 mov r9, r3 + 8006f6e: 4623 mov r3, r4 + 8006f70: eb18 0303 adds.w r3, r8, r3 + 8006f74: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 + 8006f78: 462b mov r3, r5 + 8006f7a: eb49 0303 adc.w r3, r9, r3 + 8006f7e: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 + 8006f82: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006f86: 685b ldr r3, [r3, #4] + 8006f88: 2200 movs r2, #0 + 8006f8a: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 8006f8e: f8c7 20dc str.w r2, [r7, #220] @ 0xdc + 8006f92: e9d7 1236 ldrd r1, r2, [r7, #216] @ 0xd8 + 8006f96: 460b mov r3, r1 + 8006f98: 18db adds r3, r3, r3 + 8006f9a: 653b str r3, [r7, #80] @ 0x50 + 8006f9c: 4613 mov r3, r2 + 8006f9e: eb42 0303 adc.w r3, r2, r3 + 8006fa2: 657b str r3, [r7, #84] @ 0x54 + 8006fa4: e9d7 2314 ldrd r2, r3, [r7, #80] @ 0x50 + 8006fa8: e9d7 0138 ldrd r0, r1, [r7, #224] @ 0xe0 + 8006fac: f7f9 f92a bl 8000204 <__aeabi_uldivmod> + 8006fb0: 4602 mov r2, r0 + 8006fb2: 460b mov r3, r1 + 8006fb4: 4b61 ldr r3, [pc, #388] @ (800713c ) + 8006fb6: fba3 2302 umull r2, r3, r3, r2 + 8006fba: 095b lsrs r3, r3, #5 + 8006fbc: 011c lsls r4, r3, #4 + 8006fbe: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006fc2: 2200 movs r2, #0 + 8006fc4: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 + 8006fc8: f8c7 20d4 str.w r2, [r7, #212] @ 0xd4 + 8006fcc: e9d7 8934 ldrd r8, r9, [r7, #208] @ 0xd0 + 8006fd0: 4642 mov r2, r8 + 8006fd2: 464b mov r3, r9 + 8006fd4: 1891 adds r1, r2, r2 + 8006fd6: 64b9 str r1, [r7, #72] @ 0x48 + 8006fd8: 415b adcs r3, r3 + 8006fda: 64fb str r3, [r7, #76] @ 0x4c + 8006fdc: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 + 8006fe0: 4641 mov r1, r8 + 8006fe2: eb12 0a01 adds.w sl, r2, r1 + 8006fe6: 4649 mov r1, r9 + 8006fe8: eb43 0b01 adc.w fp, r3, r1 + 8006fec: f04f 0200 mov.w r2, #0 + 8006ff0: f04f 0300 mov.w r3, #0 + 8006ff4: ea4f 03cb mov.w r3, fp, lsl #3 + 8006ff8: ea43 735a orr.w r3, r3, sl, lsr #29 + 8006ffc: ea4f 02ca mov.w r2, sl, lsl #3 + 8007000: 4692 mov sl, r2 + 8007002: 469b mov fp, r3 + 8007004: 4643 mov r3, r8 + 8007006: eb1a 0303 adds.w r3, sl, r3 + 800700a: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 + 800700e: 464b mov r3, r9 + 8007010: eb4b 0303 adc.w r3, fp, r3 + 8007014: f8c7 30cc str.w r3, [r7, #204] @ 0xcc + 8007018: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 800701c: 685b ldr r3, [r3, #4] + 800701e: 2200 movs r2, #0 + 8007020: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 + 8007024: f8c7 20c4 str.w r2, [r7, #196] @ 0xc4 + 8007028: e9d7 1230 ldrd r1, r2, [r7, #192] @ 0xc0 + 800702c: 460b mov r3, r1 + 800702e: 18db adds r3, r3, r3 + 8007030: 643b str r3, [r7, #64] @ 0x40 + 8007032: 4613 mov r3, r2 + 8007034: eb42 0303 adc.w r3, r2, r3 + 8007038: 647b str r3, [r7, #68] @ 0x44 + 800703a: e9d7 2310 ldrd r2, r3, [r7, #64] @ 0x40 + 800703e: e9d7 0132 ldrd r0, r1, [r7, #200] @ 0xc8 + 8007042: f7f9 f8df bl 8000204 <__aeabi_uldivmod> + 8007046: 4602 mov r2, r0 + 8007048: 460b mov r3, r1 + 800704a: 4611 mov r1, r2 + 800704c: 4b3b ldr r3, [pc, #236] @ (800713c ) + 800704e: fba3 2301 umull r2, r3, r3, r1 + 8007052: 095b lsrs r3, r3, #5 + 8007054: 2264 movs r2, #100 @ 0x64 + 8007056: fb02 f303 mul.w r3, r2, r3 + 800705a: 1acb subs r3, r1, r3 + 800705c: 00db lsls r3, r3, #3 + 800705e: f103 0232 add.w r2, r3, #50 @ 0x32 + 8007062: 4b36 ldr r3, [pc, #216] @ (800713c ) + 8007064: fba3 2302 umull r2, r3, r3, r2 + 8007068: 095b lsrs r3, r3, #5 + 800706a: 005b lsls r3, r3, #1 + 800706c: f403 73f8 and.w r3, r3, #496 @ 0x1f0 + 8007070: 441c add r4, r3 + 8007072: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8007076: 2200 movs r2, #0 + 8007078: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 + 800707c: f8c7 20bc str.w r2, [r7, #188] @ 0xbc + 8007080: e9d7 892e ldrd r8, r9, [r7, #184] @ 0xb8 + 8007084: 4642 mov r2, r8 + 8007086: 464b mov r3, r9 + 8007088: 1891 adds r1, r2, r2 + 800708a: 63b9 str r1, [r7, #56] @ 0x38 + 800708c: 415b adcs r3, r3 + 800708e: 63fb str r3, [r7, #60] @ 0x3c + 8007090: e9d7 230e ldrd r2, r3, [r7, #56] @ 0x38 + 8007094: 4641 mov r1, r8 + 8007096: 1851 adds r1, r2, r1 + 8007098: 6339 str r1, [r7, #48] @ 0x30 + 800709a: 4649 mov r1, r9 + 800709c: 414b adcs r3, r1 + 800709e: 637b str r3, [r7, #52] @ 0x34 + 80070a0: f04f 0200 mov.w r2, #0 + 80070a4: f04f 0300 mov.w r3, #0 + 80070a8: e9d7 ab0c ldrd sl, fp, [r7, #48] @ 0x30 + 80070ac: 4659 mov r1, fp + 80070ae: 00cb lsls r3, r1, #3 + 80070b0: 4651 mov r1, sl + 80070b2: ea43 7351 orr.w r3, r3, r1, lsr #29 + 80070b6: 4651 mov r1, sl + 80070b8: 00ca lsls r2, r1, #3 + 80070ba: 4610 mov r0, r2 + 80070bc: 4619 mov r1, r3 + 80070be: 4603 mov r3, r0 + 80070c0: 4642 mov r2, r8 + 80070c2: 189b adds r3, r3, r2 + 80070c4: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 80070c8: 464b mov r3, r9 + 80070ca: 460a mov r2, r1 + 80070cc: eb42 0303 adc.w r3, r2, r3 + 80070d0: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 80070d4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80070d8: 685b ldr r3, [r3, #4] + 80070da: 2200 movs r2, #0 + 80070dc: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 + 80070e0: f8c7 20ac str.w r2, [r7, #172] @ 0xac + 80070e4: e9d7 122a ldrd r1, r2, [r7, #168] @ 0xa8 + 80070e8: 460b mov r3, r1 + 80070ea: 18db adds r3, r3, r3 + 80070ec: 62bb str r3, [r7, #40] @ 0x28 + 80070ee: 4613 mov r3, r2 + 80070f0: eb42 0303 adc.w r3, r2, r3 + 80070f4: 62fb str r3, [r7, #44] @ 0x2c + 80070f6: e9d7 230a ldrd r2, r3, [r7, #40] @ 0x28 + 80070fa: e9d7 012c ldrd r0, r1, [r7, #176] @ 0xb0 + 80070fe: f7f9 f881 bl 8000204 <__aeabi_uldivmod> + 8007102: 4602 mov r2, r0 + 8007104: 460b mov r3, r1 + 8007106: 4b0d ldr r3, [pc, #52] @ (800713c ) + 8007108: fba3 1302 umull r1, r3, r3, r2 + 800710c: 095b lsrs r3, r3, #5 + 800710e: 2164 movs r1, #100 @ 0x64 + 8007110: fb01 f303 mul.w r3, r1, r3 + 8007114: 1ad3 subs r3, r2, r3 + 8007116: 00db lsls r3, r3, #3 + 8007118: 3332 adds r3, #50 @ 0x32 + 800711a: 4a08 ldr r2, [pc, #32] @ (800713c ) + 800711c: fba2 2303 umull r2, r3, r2, r3 + 8007120: 095b lsrs r3, r3, #5 + 8007122: f003 0207 and.w r2, r3, #7 + 8007126: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 800712a: 681b ldr r3, [r3, #0] + 800712c: 4422 add r2, r4 + 800712e: 609a str r2, [r3, #8] } else { huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); } } - 8006d58: e106 b.n 8006f68 - 8006d5a: bf00 nop - 8006d5c: 40011000 .word 0x40011000 - 8006d60: 40011400 .word 0x40011400 - 8006d64: 51eb851f .word 0x51eb851f + 8007130: e106 b.n 8007340 + 8007132: bf00 nop + 8007134: 40011000 .word 0x40011000 + 8007138: 40011400 .word 0x40011400 + 800713c: 51eb851f .word 0x51eb851f huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); - 8006d68: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006d6c: 2200 movs r2, #0 - 8006d6e: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 - 8006d72: f8c7 20a4 str.w r2, [r7, #164] @ 0xa4 - 8006d76: e9d7 8928 ldrd r8, r9, [r7, #160] @ 0xa0 - 8006d7a: 4642 mov r2, r8 - 8006d7c: 464b mov r3, r9 - 8006d7e: 1891 adds r1, r2, r2 - 8006d80: 6239 str r1, [r7, #32] - 8006d82: 415b adcs r3, r3 - 8006d84: 627b str r3, [r7, #36] @ 0x24 - 8006d86: e9d7 2308 ldrd r2, r3, [r7, #32] - 8006d8a: 4641 mov r1, r8 - 8006d8c: 1854 adds r4, r2, r1 - 8006d8e: 4649 mov r1, r9 - 8006d90: eb43 0501 adc.w r5, r3, r1 - 8006d94: f04f 0200 mov.w r2, #0 - 8006d98: f04f 0300 mov.w r3, #0 - 8006d9c: 00eb lsls r3, r5, #3 - 8006d9e: ea43 7354 orr.w r3, r3, r4, lsr #29 - 8006da2: 00e2 lsls r2, r4, #3 - 8006da4: 4614 mov r4, r2 - 8006da6: 461d mov r5, r3 - 8006da8: 4643 mov r3, r8 - 8006daa: 18e3 adds r3, r4, r3 - 8006dac: f8c7 3098 str.w r3, [r7, #152] @ 0x98 - 8006db0: 464b mov r3, r9 - 8006db2: eb45 0303 adc.w r3, r5, r3 - 8006db6: f8c7 309c str.w r3, [r7, #156] @ 0x9c - 8006dba: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006dbe: 685b ldr r3, [r3, #4] - 8006dc0: 2200 movs r2, #0 - 8006dc2: f8c7 3090 str.w r3, [r7, #144] @ 0x90 - 8006dc6: f8c7 2094 str.w r2, [r7, #148] @ 0x94 - 8006dca: f04f 0200 mov.w r2, #0 - 8006dce: f04f 0300 mov.w r3, #0 - 8006dd2: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 - 8006dd6: 4629 mov r1, r5 - 8006dd8: 008b lsls r3, r1, #2 - 8006dda: 4621 mov r1, r4 - 8006ddc: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8006de0: 4621 mov r1, r4 - 8006de2: 008a lsls r2, r1, #2 - 8006de4: e9d7 0126 ldrd r0, r1, [r7, #152] @ 0x98 - 8006de8: f7f9 fa0c bl 8000204 <__aeabi_uldivmod> - 8006dec: 4602 mov r2, r0 - 8006dee: 460b mov r3, r1 - 8006df0: 4b60 ldr r3, [pc, #384] @ (8006f74 ) - 8006df2: fba3 2302 umull r2, r3, r3, r2 - 8006df6: 095b lsrs r3, r3, #5 - 8006df8: 011c lsls r4, r3, #4 - 8006dfa: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006dfe: 2200 movs r2, #0 - 8006e00: f8c7 3088 str.w r3, [r7, #136] @ 0x88 - 8006e04: f8c7 208c str.w r2, [r7, #140] @ 0x8c - 8006e08: e9d7 8922 ldrd r8, r9, [r7, #136] @ 0x88 - 8006e0c: 4642 mov r2, r8 - 8006e0e: 464b mov r3, r9 - 8006e10: 1891 adds r1, r2, r2 - 8006e12: 61b9 str r1, [r7, #24] - 8006e14: 415b adcs r3, r3 - 8006e16: 61fb str r3, [r7, #28] - 8006e18: e9d7 2306 ldrd r2, r3, [r7, #24] - 8006e1c: 4641 mov r1, r8 - 8006e1e: 1851 adds r1, r2, r1 - 8006e20: 6139 str r1, [r7, #16] - 8006e22: 4649 mov r1, r9 - 8006e24: 414b adcs r3, r1 - 8006e26: 617b str r3, [r7, #20] - 8006e28: f04f 0200 mov.w r2, #0 - 8006e2c: f04f 0300 mov.w r3, #0 - 8006e30: e9d7 ab04 ldrd sl, fp, [r7, #16] - 8006e34: 4659 mov r1, fp - 8006e36: 00cb lsls r3, r1, #3 - 8006e38: 4651 mov r1, sl - 8006e3a: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8006e3e: 4651 mov r1, sl - 8006e40: 00ca lsls r2, r1, #3 - 8006e42: 4610 mov r0, r2 - 8006e44: 4619 mov r1, r3 - 8006e46: 4603 mov r3, r0 - 8006e48: 4642 mov r2, r8 - 8006e4a: 189b adds r3, r3, r2 - 8006e4c: f8c7 3080 str.w r3, [r7, #128] @ 0x80 - 8006e50: 464b mov r3, r9 - 8006e52: 460a mov r2, r1 - 8006e54: eb42 0303 adc.w r3, r2, r3 - 8006e58: f8c7 3084 str.w r3, [r7, #132] @ 0x84 - 8006e5c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006e60: 685b ldr r3, [r3, #4] - 8006e62: 2200 movs r2, #0 - 8006e64: 67bb str r3, [r7, #120] @ 0x78 - 8006e66: 67fa str r2, [r7, #124] @ 0x7c - 8006e68: f04f 0200 mov.w r2, #0 - 8006e6c: f04f 0300 mov.w r3, #0 - 8006e70: e9d7 891e ldrd r8, r9, [r7, #120] @ 0x78 - 8006e74: 4649 mov r1, r9 - 8006e76: 008b lsls r3, r1, #2 - 8006e78: 4641 mov r1, r8 - 8006e7a: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8006e7e: 4641 mov r1, r8 - 8006e80: 008a lsls r2, r1, #2 - 8006e82: e9d7 0120 ldrd r0, r1, [r7, #128] @ 0x80 - 8006e86: f7f9 f9bd bl 8000204 <__aeabi_uldivmod> - 8006e8a: 4602 mov r2, r0 - 8006e8c: 460b mov r3, r1 - 8006e8e: 4611 mov r1, r2 - 8006e90: 4b38 ldr r3, [pc, #224] @ (8006f74 ) - 8006e92: fba3 2301 umull r2, r3, r3, r1 - 8006e96: 095b lsrs r3, r3, #5 - 8006e98: 2264 movs r2, #100 @ 0x64 - 8006e9a: fb02 f303 mul.w r3, r2, r3 - 8006e9e: 1acb subs r3, r1, r3 - 8006ea0: 011b lsls r3, r3, #4 - 8006ea2: 3332 adds r3, #50 @ 0x32 - 8006ea4: 4a33 ldr r2, [pc, #204] @ (8006f74 ) - 8006ea6: fba2 2303 umull r2, r3, r2, r3 - 8006eaa: 095b lsrs r3, r3, #5 - 8006eac: f003 03f0 and.w r3, r3, #240 @ 0xf0 - 8006eb0: 441c add r4, r3 - 8006eb2: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006eb6: 2200 movs r2, #0 - 8006eb8: 673b str r3, [r7, #112] @ 0x70 - 8006eba: 677a str r2, [r7, #116] @ 0x74 - 8006ebc: e9d7 891c ldrd r8, r9, [r7, #112] @ 0x70 - 8006ec0: 4642 mov r2, r8 - 8006ec2: 464b mov r3, r9 - 8006ec4: 1891 adds r1, r2, r2 - 8006ec6: 60b9 str r1, [r7, #8] - 8006ec8: 415b adcs r3, r3 - 8006eca: 60fb str r3, [r7, #12] - 8006ecc: e9d7 2302 ldrd r2, r3, [r7, #8] - 8006ed0: 4641 mov r1, r8 - 8006ed2: 1851 adds r1, r2, r1 - 8006ed4: 6039 str r1, [r7, #0] - 8006ed6: 4649 mov r1, r9 - 8006ed8: 414b adcs r3, r1 - 8006eda: 607b str r3, [r7, #4] - 8006edc: f04f 0200 mov.w r2, #0 - 8006ee0: f04f 0300 mov.w r3, #0 - 8006ee4: e9d7 ab00 ldrd sl, fp, [r7] - 8006ee8: 4659 mov r1, fp - 8006eea: 00cb lsls r3, r1, #3 - 8006eec: 4651 mov r1, sl - 8006eee: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8006ef2: 4651 mov r1, sl - 8006ef4: 00ca lsls r2, r1, #3 - 8006ef6: 4610 mov r0, r2 - 8006ef8: 4619 mov r1, r3 - 8006efa: 4603 mov r3, r0 - 8006efc: 4642 mov r2, r8 - 8006efe: 189b adds r3, r3, r2 - 8006f00: 66bb str r3, [r7, #104] @ 0x68 - 8006f02: 464b mov r3, r9 - 8006f04: 460a mov r2, r1 - 8006f06: eb42 0303 adc.w r3, r2, r3 - 8006f0a: 66fb str r3, [r7, #108] @ 0x6c - 8006f0c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006f10: 685b ldr r3, [r3, #4] - 8006f12: 2200 movs r2, #0 - 8006f14: 663b str r3, [r7, #96] @ 0x60 - 8006f16: 667a str r2, [r7, #100] @ 0x64 - 8006f18: f04f 0200 mov.w r2, #0 - 8006f1c: f04f 0300 mov.w r3, #0 - 8006f20: e9d7 8918 ldrd r8, r9, [r7, #96] @ 0x60 - 8006f24: 4649 mov r1, r9 - 8006f26: 008b lsls r3, r1, #2 - 8006f28: 4641 mov r1, r8 - 8006f2a: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8006f2e: 4641 mov r1, r8 - 8006f30: 008a lsls r2, r1, #2 - 8006f32: e9d7 011a ldrd r0, r1, [r7, #104] @ 0x68 - 8006f36: f7f9 f965 bl 8000204 <__aeabi_uldivmod> - 8006f3a: 4602 mov r2, r0 - 8006f3c: 460b mov r3, r1 - 8006f3e: 4b0d ldr r3, [pc, #52] @ (8006f74 ) - 8006f40: fba3 1302 umull r1, r3, r3, r2 - 8006f44: 095b lsrs r3, r3, #5 - 8006f46: 2164 movs r1, #100 @ 0x64 - 8006f48: fb01 f303 mul.w r3, r1, r3 - 8006f4c: 1ad3 subs r3, r2, r3 - 8006f4e: 011b lsls r3, r3, #4 - 8006f50: 3332 adds r3, #50 @ 0x32 - 8006f52: 4a08 ldr r2, [pc, #32] @ (8006f74 ) - 8006f54: fba2 2303 umull r2, r3, r2, r3 - 8006f58: 095b lsrs r3, r3, #5 - 8006f5a: f003 020f and.w r2, r3, #15 - 8006f5e: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006f62: 681b ldr r3, [r3, #0] - 8006f64: 4422 add r2, r4 - 8006f66: 609a str r2, [r3, #8] + 8007140: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8007144: 2200 movs r2, #0 + 8007146: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 + 800714a: f8c7 20a4 str.w r2, [r7, #164] @ 0xa4 + 800714e: e9d7 8928 ldrd r8, r9, [r7, #160] @ 0xa0 + 8007152: 4642 mov r2, r8 + 8007154: 464b mov r3, r9 + 8007156: 1891 adds r1, r2, r2 + 8007158: 6239 str r1, [r7, #32] + 800715a: 415b adcs r3, r3 + 800715c: 627b str r3, [r7, #36] @ 0x24 + 800715e: e9d7 2308 ldrd r2, r3, [r7, #32] + 8007162: 4641 mov r1, r8 + 8007164: 1854 adds r4, r2, r1 + 8007166: 4649 mov r1, r9 + 8007168: eb43 0501 adc.w r5, r3, r1 + 800716c: f04f 0200 mov.w r2, #0 + 8007170: f04f 0300 mov.w r3, #0 + 8007174: 00eb lsls r3, r5, #3 + 8007176: ea43 7354 orr.w r3, r3, r4, lsr #29 + 800717a: 00e2 lsls r2, r4, #3 + 800717c: 4614 mov r4, r2 + 800717e: 461d mov r5, r3 + 8007180: 4643 mov r3, r8 + 8007182: 18e3 adds r3, r4, r3 + 8007184: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 8007188: 464b mov r3, r9 + 800718a: eb45 0303 adc.w r3, r5, r3 + 800718e: f8c7 309c str.w r3, [r7, #156] @ 0x9c + 8007192: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8007196: 685b ldr r3, [r3, #4] + 8007198: 2200 movs r2, #0 + 800719a: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 800719e: f8c7 2094 str.w r2, [r7, #148] @ 0x94 + 80071a2: f04f 0200 mov.w r2, #0 + 80071a6: f04f 0300 mov.w r3, #0 + 80071aa: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 + 80071ae: 4629 mov r1, r5 + 80071b0: 008b lsls r3, r1, #2 + 80071b2: 4621 mov r1, r4 + 80071b4: ea43 7391 orr.w r3, r3, r1, lsr #30 + 80071b8: 4621 mov r1, r4 + 80071ba: 008a lsls r2, r1, #2 + 80071bc: e9d7 0126 ldrd r0, r1, [r7, #152] @ 0x98 + 80071c0: f7f9 f820 bl 8000204 <__aeabi_uldivmod> + 80071c4: 4602 mov r2, r0 + 80071c6: 460b mov r3, r1 + 80071c8: 4b60 ldr r3, [pc, #384] @ (800734c ) + 80071ca: fba3 2302 umull r2, r3, r3, r2 + 80071ce: 095b lsrs r3, r3, #5 + 80071d0: 011c lsls r4, r3, #4 + 80071d2: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 80071d6: 2200 movs r2, #0 + 80071d8: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 80071dc: f8c7 208c str.w r2, [r7, #140] @ 0x8c + 80071e0: e9d7 8922 ldrd r8, r9, [r7, #136] @ 0x88 + 80071e4: 4642 mov r2, r8 + 80071e6: 464b mov r3, r9 + 80071e8: 1891 adds r1, r2, r2 + 80071ea: 61b9 str r1, [r7, #24] + 80071ec: 415b adcs r3, r3 + 80071ee: 61fb str r3, [r7, #28] + 80071f0: e9d7 2306 ldrd r2, r3, [r7, #24] + 80071f4: 4641 mov r1, r8 + 80071f6: 1851 adds r1, r2, r1 + 80071f8: 6139 str r1, [r7, #16] + 80071fa: 4649 mov r1, r9 + 80071fc: 414b adcs r3, r1 + 80071fe: 617b str r3, [r7, #20] + 8007200: f04f 0200 mov.w r2, #0 + 8007204: f04f 0300 mov.w r3, #0 + 8007208: e9d7 ab04 ldrd sl, fp, [r7, #16] + 800720c: 4659 mov r1, fp + 800720e: 00cb lsls r3, r1, #3 + 8007210: 4651 mov r1, sl + 8007212: ea43 7351 orr.w r3, r3, r1, lsr #29 + 8007216: 4651 mov r1, sl + 8007218: 00ca lsls r2, r1, #3 + 800721a: 4610 mov r0, r2 + 800721c: 4619 mov r1, r3 + 800721e: 4603 mov r3, r0 + 8007220: 4642 mov r2, r8 + 8007222: 189b adds r3, r3, r2 + 8007224: f8c7 3080 str.w r3, [r7, #128] @ 0x80 + 8007228: 464b mov r3, r9 + 800722a: 460a mov r2, r1 + 800722c: eb42 0303 adc.w r3, r2, r3 + 8007230: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 8007234: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8007238: 685b ldr r3, [r3, #4] + 800723a: 2200 movs r2, #0 + 800723c: 67bb str r3, [r7, #120] @ 0x78 + 800723e: 67fa str r2, [r7, #124] @ 0x7c + 8007240: f04f 0200 mov.w r2, #0 + 8007244: f04f 0300 mov.w r3, #0 + 8007248: e9d7 891e ldrd r8, r9, [r7, #120] @ 0x78 + 800724c: 4649 mov r1, r9 + 800724e: 008b lsls r3, r1, #2 + 8007250: 4641 mov r1, r8 + 8007252: ea43 7391 orr.w r3, r3, r1, lsr #30 + 8007256: 4641 mov r1, r8 + 8007258: 008a lsls r2, r1, #2 + 800725a: e9d7 0120 ldrd r0, r1, [r7, #128] @ 0x80 + 800725e: f7f8 ffd1 bl 8000204 <__aeabi_uldivmod> + 8007262: 4602 mov r2, r0 + 8007264: 460b mov r3, r1 + 8007266: 4611 mov r1, r2 + 8007268: 4b38 ldr r3, [pc, #224] @ (800734c ) + 800726a: fba3 2301 umull r2, r3, r3, r1 + 800726e: 095b lsrs r3, r3, #5 + 8007270: 2264 movs r2, #100 @ 0x64 + 8007272: fb02 f303 mul.w r3, r2, r3 + 8007276: 1acb subs r3, r1, r3 + 8007278: 011b lsls r3, r3, #4 + 800727a: 3332 adds r3, #50 @ 0x32 + 800727c: 4a33 ldr r2, [pc, #204] @ (800734c ) + 800727e: fba2 2303 umull r2, r3, r2, r3 + 8007282: 095b lsrs r3, r3, #5 + 8007284: f003 03f0 and.w r3, r3, #240 @ 0xf0 + 8007288: 441c add r4, r3 + 800728a: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 800728e: 2200 movs r2, #0 + 8007290: 673b str r3, [r7, #112] @ 0x70 + 8007292: 677a str r2, [r7, #116] @ 0x74 + 8007294: e9d7 891c ldrd r8, r9, [r7, #112] @ 0x70 + 8007298: 4642 mov r2, r8 + 800729a: 464b mov r3, r9 + 800729c: 1891 adds r1, r2, r2 + 800729e: 60b9 str r1, [r7, #8] + 80072a0: 415b adcs r3, r3 + 80072a2: 60fb str r3, [r7, #12] + 80072a4: e9d7 2302 ldrd r2, r3, [r7, #8] + 80072a8: 4641 mov r1, r8 + 80072aa: 1851 adds r1, r2, r1 + 80072ac: 6039 str r1, [r7, #0] + 80072ae: 4649 mov r1, r9 + 80072b0: 414b adcs r3, r1 + 80072b2: 607b str r3, [r7, #4] + 80072b4: f04f 0200 mov.w r2, #0 + 80072b8: f04f 0300 mov.w r3, #0 + 80072bc: e9d7 ab00 ldrd sl, fp, [r7] + 80072c0: 4659 mov r1, fp + 80072c2: 00cb lsls r3, r1, #3 + 80072c4: 4651 mov r1, sl + 80072c6: ea43 7351 orr.w r3, r3, r1, lsr #29 + 80072ca: 4651 mov r1, sl + 80072cc: 00ca lsls r2, r1, #3 + 80072ce: 4610 mov r0, r2 + 80072d0: 4619 mov r1, r3 + 80072d2: 4603 mov r3, r0 + 80072d4: 4642 mov r2, r8 + 80072d6: 189b adds r3, r3, r2 + 80072d8: 66bb str r3, [r7, #104] @ 0x68 + 80072da: 464b mov r3, r9 + 80072dc: 460a mov r2, r1 + 80072de: eb42 0303 adc.w r3, r2, r3 + 80072e2: 66fb str r3, [r7, #108] @ 0x6c + 80072e4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80072e8: 685b ldr r3, [r3, #4] + 80072ea: 2200 movs r2, #0 + 80072ec: 663b str r3, [r7, #96] @ 0x60 + 80072ee: 667a str r2, [r7, #100] @ 0x64 + 80072f0: f04f 0200 mov.w r2, #0 + 80072f4: f04f 0300 mov.w r3, #0 + 80072f8: e9d7 8918 ldrd r8, r9, [r7, #96] @ 0x60 + 80072fc: 4649 mov r1, r9 + 80072fe: 008b lsls r3, r1, #2 + 8007300: 4641 mov r1, r8 + 8007302: ea43 7391 orr.w r3, r3, r1, lsr #30 + 8007306: 4641 mov r1, r8 + 8007308: 008a lsls r2, r1, #2 + 800730a: e9d7 011a ldrd r0, r1, [r7, #104] @ 0x68 + 800730e: f7f8 ff79 bl 8000204 <__aeabi_uldivmod> + 8007312: 4602 mov r2, r0 + 8007314: 460b mov r3, r1 + 8007316: 4b0d ldr r3, [pc, #52] @ (800734c ) + 8007318: fba3 1302 umull r1, r3, r3, r2 + 800731c: 095b lsrs r3, r3, #5 + 800731e: 2164 movs r1, #100 @ 0x64 + 8007320: fb01 f303 mul.w r3, r1, r3 + 8007324: 1ad3 subs r3, r2, r3 + 8007326: 011b lsls r3, r3, #4 + 8007328: 3332 adds r3, #50 @ 0x32 + 800732a: 4a08 ldr r2, [pc, #32] @ (800734c ) + 800732c: fba2 2303 umull r2, r3, r2, r3 + 8007330: 095b lsrs r3, r3, #5 + 8007332: f003 020f and.w r2, r3, #15 + 8007336: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 800733a: 681b ldr r3, [r3, #0] + 800733c: 4422 add r2, r4 + 800733e: 609a str r2, [r3, #8] } - 8006f68: bf00 nop - 8006f6a: f507 7780 add.w r7, r7, #256 @ 0x100 - 8006f6e: 46bd mov sp, r7 - 8006f70: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8006f74: 51eb851f .word 0x51eb851f + 8007340: bf00 nop + 8007342: f507 7780 add.w r7, r7, #256 @ 0x100 + 8007346: 46bd mov sp, r7 + 8007348: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 800734c: 51eb851f .word 0x51eb851f -08006f78 : +08007350 : * @param cfg pointer to a USB_OTG_CfgTypeDef structure that contains * the configuration information for the specified USBx peripheral. * @retval HAL status */ HAL_StatusTypeDef USB_CoreInit(USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef cfg) { - 8006f78: b084 sub sp, #16 - 8006f7a: b580 push {r7, lr} - 8006f7c: b084 sub sp, #16 - 8006f7e: af00 add r7, sp, #0 - 8006f80: 6078 str r0, [r7, #4] - 8006f82: f107 001c add.w r0, r7, #28 - 8006f86: e880 000e stmia.w r0, {r1, r2, r3} + 8007350: b084 sub sp, #16 + 8007352: b580 push {r7, lr} + 8007354: b084 sub sp, #16 + 8007356: af00 add r7, sp, #0 + 8007358: 6078 str r0, [r7, #4] + 800735a: f107 001c add.w r0, r7, #28 + 800735e: e880 000e stmia.w r0, {r1, r2, r3} HAL_StatusTypeDef ret; if (cfg.phy_itface == USB_OTG_ULPI_PHY) - 8006f8a: f897 3021 ldrb.w r3, [r7, #33] @ 0x21 - 8006f8e: 2b01 cmp r3, #1 - 8006f90: d123 bne.n 8006fda + 8007362: f897 3021 ldrb.w r3, [r7, #33] @ 0x21 + 8007366: 2b01 cmp r3, #1 + 8007368: d123 bne.n 80073b2 { USBx->GCCFG &= ~(USB_OTG_GCCFG_PWRDWN); - 8006f92: 687b ldr r3, [r7, #4] - 8006f94: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006f96: f423 3280 bic.w r2, r3, #65536 @ 0x10000 - 8006f9a: 687b ldr r3, [r7, #4] - 8006f9c: 639a str r2, [r3, #56] @ 0x38 + 800736a: 687b ldr r3, [r7, #4] + 800736c: 6b9b ldr r3, [r3, #56] @ 0x38 + 800736e: f423 3280 bic.w r2, r3, #65536 @ 0x10000 + 8007372: 687b ldr r3, [r7, #4] + 8007374: 639a str r2, [r3, #56] @ 0x38 /* Init The ULPI Interface */ USBx->GUSBCFG &= ~(USB_OTG_GUSBCFG_TSDPS | USB_OTG_GUSBCFG_ULPIFSLS | USB_OTG_GUSBCFG_PHYSEL); - 8006f9e: 687b ldr r3, [r7, #4] - 8006fa0: 68db ldr r3, [r3, #12] - 8006fa2: f423 0384 bic.w r3, r3, #4325376 @ 0x420000 - 8006fa6: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8006faa: 687a ldr r2, [r7, #4] - 8006fac: 60d3 str r3, [r2, #12] + 8007376: 687b ldr r3, [r7, #4] + 8007378: 68db ldr r3, [r3, #12] + 800737a: f423 0384 bic.w r3, r3, #4325376 @ 0x420000 + 800737e: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8007382: 687a ldr r2, [r7, #4] + 8007384: 60d3 str r3, [r2, #12] /* Select vbus source */ USBx->GUSBCFG &= ~(USB_OTG_GUSBCFG_ULPIEVBUSD | USB_OTG_GUSBCFG_ULPIEVBUSI); - 8006fae: 687b ldr r3, [r7, #4] - 8006fb0: 68db ldr r3, [r3, #12] - 8006fb2: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 - 8006fb6: 687b ldr r3, [r7, #4] - 8006fb8: 60da str r2, [r3, #12] + 8007386: 687b ldr r3, [r7, #4] + 8007388: 68db ldr r3, [r3, #12] + 800738a: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 + 800738e: 687b ldr r3, [r7, #4] + 8007390: 60da str r2, [r3, #12] if (cfg.use_external_vbus == 1U) - 8006fba: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 - 8006fbe: 2b01 cmp r3, #1 - 8006fc0: d105 bne.n 8006fce + 8007392: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 + 8007396: 2b01 cmp r3, #1 + 8007398: d105 bne.n 80073a6 { USBx->GUSBCFG |= USB_OTG_GUSBCFG_ULPIEVBUSD; - 8006fc2: 687b ldr r3, [r7, #4] - 8006fc4: 68db ldr r3, [r3, #12] - 8006fc6: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 - 8006fca: 687b ldr r3, [r7, #4] - 8006fcc: 60da str r2, [r3, #12] + 800739a: 687b ldr r3, [r7, #4] + 800739c: 68db ldr r3, [r3, #12] + 800739e: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 + 80073a2: 687b ldr r3, [r7, #4] + 80073a4: 60da str r2, [r3, #12] } /* Reset after a PHY select */ ret = USB_CoreReset(USBx); - 8006fce: 6878 ldr r0, [r7, #4] - 8006fd0: f001 fae2 bl 8008598 - 8006fd4: 4603 mov r3, r0 - 8006fd6: 73fb strb r3, [r7, #15] - 8006fd8: e01b b.n 8007012 + 80073a6: 6878 ldr r0, [r7, #4] + 80073a8: f001 fae2 bl 8008970 + 80073ac: 4603 mov r3, r0 + 80073ae: 73fb strb r3, [r7, #15] + 80073b0: e01b b.n 80073ea } else /* FS interface (embedded Phy) */ { /* Select FS Embedded PHY */ USBx->GUSBCFG |= USB_OTG_GUSBCFG_PHYSEL; - 8006fda: 687b ldr r3, [r7, #4] - 8006fdc: 68db ldr r3, [r3, #12] - 8006fde: f043 0240 orr.w r2, r3, #64 @ 0x40 - 8006fe2: 687b ldr r3, [r7, #4] - 8006fe4: 60da str r2, [r3, #12] + 80073b2: 687b ldr r3, [r7, #4] + 80073b4: 68db ldr r3, [r3, #12] + 80073b6: f043 0240 orr.w r2, r3, #64 @ 0x40 + 80073ba: 687b ldr r3, [r7, #4] + 80073bc: 60da str r2, [r3, #12] /* Reset after a PHY select */ ret = USB_CoreReset(USBx); - 8006fe6: 6878 ldr r0, [r7, #4] - 8006fe8: f001 fad6 bl 8008598 - 8006fec: 4603 mov r3, r0 - 8006fee: 73fb strb r3, [r7, #15] + 80073be: 6878 ldr r0, [r7, #4] + 80073c0: f001 fad6 bl 8008970 + 80073c4: 4603 mov r3, r0 + 80073c6: 73fb strb r3, [r7, #15] if (cfg.battery_charging_enable == 0U) - 8006ff0: f897 3025 ldrb.w r3, [r7, #37] @ 0x25 - 8006ff4: 2b00 cmp r3, #0 - 8006ff6: d106 bne.n 8007006 + 80073c8: f897 3025 ldrb.w r3, [r7, #37] @ 0x25 + 80073cc: 2b00 cmp r3, #0 + 80073ce: d106 bne.n 80073de { /* Activate the USB Transceiver */ USBx->GCCFG |= USB_OTG_GCCFG_PWRDWN; - 8006ff8: 687b ldr r3, [r7, #4] - 8006ffa: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006ffc: f443 3280 orr.w r2, r3, #65536 @ 0x10000 - 8007000: 687b ldr r3, [r7, #4] - 8007002: 639a str r2, [r3, #56] @ 0x38 - 8007004: e005 b.n 8007012 + 80073d0: 687b ldr r3, [r7, #4] + 80073d2: 6b9b ldr r3, [r3, #56] @ 0x38 + 80073d4: f443 3280 orr.w r2, r3, #65536 @ 0x10000 + 80073d8: 687b ldr r3, [r7, #4] + 80073da: 639a str r2, [r3, #56] @ 0x38 + 80073dc: e005 b.n 80073ea } else { /* Deactivate the USB Transceiver */ USBx->GCCFG &= ~(USB_OTG_GCCFG_PWRDWN); - 8007006: 687b ldr r3, [r7, #4] - 8007008: 6b9b ldr r3, [r3, #56] @ 0x38 - 800700a: f423 3280 bic.w r2, r3, #65536 @ 0x10000 - 800700e: 687b ldr r3, [r7, #4] - 8007010: 639a str r2, [r3, #56] @ 0x38 + 80073de: 687b ldr r3, [r7, #4] + 80073e0: 6b9b ldr r3, [r3, #56] @ 0x38 + 80073e2: f423 3280 bic.w r2, r3, #65536 @ 0x10000 + 80073e6: 687b ldr r3, [r7, #4] + 80073e8: 639a str r2, [r3, #56] @ 0x38 } } if (cfg.dma_enable == 1U) - 8007012: 7fbb ldrb r3, [r7, #30] - 8007014: 2b01 cmp r3, #1 - 8007016: d10b bne.n 8007030 + 80073ea: 7fbb ldrb r3, [r7, #30] + 80073ec: 2b01 cmp r3, #1 + 80073ee: d10b bne.n 8007408 { USBx->GAHBCFG |= USB_OTG_GAHBCFG_HBSTLEN_2; - 8007018: 687b ldr r3, [r7, #4] - 800701a: 689b ldr r3, [r3, #8] - 800701c: f043 0206 orr.w r2, r3, #6 - 8007020: 687b ldr r3, [r7, #4] - 8007022: 609a str r2, [r3, #8] + 80073f0: 687b ldr r3, [r7, #4] + 80073f2: 689b ldr r3, [r3, #8] + 80073f4: f043 0206 orr.w r2, r3, #6 + 80073f8: 687b ldr r3, [r7, #4] + 80073fa: 609a str r2, [r3, #8] USBx->GAHBCFG |= USB_OTG_GAHBCFG_DMAEN; - 8007024: 687b ldr r3, [r7, #4] - 8007026: 689b ldr r3, [r3, #8] - 8007028: f043 0220 orr.w r2, r3, #32 - 800702c: 687b ldr r3, [r7, #4] - 800702e: 609a str r2, [r3, #8] + 80073fc: 687b ldr r3, [r7, #4] + 80073fe: 689b ldr r3, [r3, #8] + 8007400: f043 0220 orr.w r2, r3, #32 + 8007404: 687b ldr r3, [r7, #4] + 8007406: 609a str r2, [r3, #8] } return ret; - 8007030: 7bfb ldrb r3, [r7, #15] + 8007408: 7bfb ldrb r3, [r7, #15] } - 8007032: 4618 mov r0, r3 - 8007034: 3710 adds r7, #16 - 8007036: 46bd mov sp, r7 - 8007038: e8bd 4080 ldmia.w sp!, {r7, lr} - 800703c: b004 add sp, #16 - 800703e: 4770 bx lr + 800740a: 4618 mov r0, r3 + 800740c: 3710 adds r7, #16 + 800740e: 46bd mov sp, r7 + 8007410: e8bd 4080 ldmia.w sp!, {r7, lr} + 8007414: b004 add sp, #16 + 8007416: 4770 bx lr -08007040 : +08007418 : * @param hclk: AHB clock frequency * @retval USB turnaround time In PHY Clocks number */ HAL_StatusTypeDef USB_SetTurnaroundTime(USB_OTG_GlobalTypeDef *USBx, uint32_t hclk, uint8_t speed) { - 8007040: b480 push {r7} - 8007042: b087 sub sp, #28 - 8007044: af00 add r7, sp, #0 - 8007046: 60f8 str r0, [r7, #12] - 8007048: 60b9 str r1, [r7, #8] - 800704a: 4613 mov r3, r2 - 800704c: 71fb strb r3, [r7, #7] + 8007418: b480 push {r7} + 800741a: b087 sub sp, #28 + 800741c: af00 add r7, sp, #0 + 800741e: 60f8 str r0, [r7, #12] + 8007420: 60b9 str r1, [r7, #8] + 8007422: 4613 mov r3, r2 + 8007424: 71fb strb r3, [r7, #7] /* The USBTRD is configured according to the tables below, depending on AHB frequency used by application. In the low AHB frequency range it is used to stretch enough the USB response time to IN tokens, the USB turnaround time, so to compensate for the longer AHB read access latency to the Data FIFO */ if (speed == USBD_FS_SPEED) - 800704e: 79fb ldrb r3, [r7, #7] - 8007050: 2b02 cmp r3, #2 - 8007052: d165 bne.n 8007120 + 8007426: 79fb ldrb r3, [r7, #7] + 8007428: 2b02 cmp r3, #2 + 800742a: d165 bne.n 80074f8 { if ((hclk >= 14200000U) && (hclk < 15000000U)) - 8007054: 68bb ldr r3, [r7, #8] - 8007056: 4a41 ldr r2, [pc, #260] @ (800715c ) - 8007058: 4293 cmp r3, r2 - 800705a: d906 bls.n 800706a - 800705c: 68bb ldr r3, [r7, #8] - 800705e: 4a40 ldr r2, [pc, #256] @ (8007160 ) - 8007060: 4293 cmp r3, r2 - 8007062: d202 bcs.n 800706a + 800742c: 68bb ldr r3, [r7, #8] + 800742e: 4a41 ldr r2, [pc, #260] @ (8007534 ) + 8007430: 4293 cmp r3, r2 + 8007432: d906 bls.n 8007442 + 8007434: 68bb ldr r3, [r7, #8] + 8007436: 4a40 ldr r2, [pc, #256] @ (8007538 ) + 8007438: 4293 cmp r3, r2 + 800743a: d202 bcs.n 8007442 { /* hclk Clock Range between 14.2-15 MHz */ UsbTrd = 0xFU; - 8007064: 230f movs r3, #15 - 8007066: 617b str r3, [r7, #20] - 8007068: e062 b.n 8007130 + 800743c: 230f movs r3, #15 + 800743e: 617b str r3, [r7, #20] + 8007440: e062 b.n 8007508 } else if ((hclk >= 15000000U) && (hclk < 16000000U)) - 800706a: 68bb ldr r3, [r7, #8] - 800706c: 4a3c ldr r2, [pc, #240] @ (8007160 ) - 800706e: 4293 cmp r3, r2 - 8007070: d306 bcc.n 8007080 - 8007072: 68bb ldr r3, [r7, #8] - 8007074: 4a3b ldr r2, [pc, #236] @ (8007164 ) - 8007076: 4293 cmp r3, r2 - 8007078: d202 bcs.n 8007080 + 8007442: 68bb ldr r3, [r7, #8] + 8007444: 4a3c ldr r2, [pc, #240] @ (8007538 ) + 8007446: 4293 cmp r3, r2 + 8007448: d306 bcc.n 8007458 + 800744a: 68bb ldr r3, [r7, #8] + 800744c: 4a3b ldr r2, [pc, #236] @ (800753c ) + 800744e: 4293 cmp r3, r2 + 8007450: d202 bcs.n 8007458 { /* hclk Clock Range between 15-16 MHz */ UsbTrd = 0xEU; - 800707a: 230e movs r3, #14 - 800707c: 617b str r3, [r7, #20] - 800707e: e057 b.n 8007130 + 8007452: 230e movs r3, #14 + 8007454: 617b str r3, [r7, #20] + 8007456: e057 b.n 8007508 } else if ((hclk >= 16000000U) && (hclk < 17200000U)) - 8007080: 68bb ldr r3, [r7, #8] - 8007082: 4a38 ldr r2, [pc, #224] @ (8007164 ) - 8007084: 4293 cmp r3, r2 - 8007086: d306 bcc.n 8007096 - 8007088: 68bb ldr r3, [r7, #8] - 800708a: 4a37 ldr r2, [pc, #220] @ (8007168 ) - 800708c: 4293 cmp r3, r2 - 800708e: d202 bcs.n 8007096 + 8007458: 68bb ldr r3, [r7, #8] + 800745a: 4a38 ldr r2, [pc, #224] @ (800753c ) + 800745c: 4293 cmp r3, r2 + 800745e: d306 bcc.n 800746e + 8007460: 68bb ldr r3, [r7, #8] + 8007462: 4a37 ldr r2, [pc, #220] @ (8007540 ) + 8007464: 4293 cmp r3, r2 + 8007466: d202 bcs.n 800746e { /* hclk Clock Range between 16-17.2 MHz */ UsbTrd = 0xDU; - 8007090: 230d movs r3, #13 - 8007092: 617b str r3, [r7, #20] - 8007094: e04c b.n 8007130 + 8007468: 230d movs r3, #13 + 800746a: 617b str r3, [r7, #20] + 800746c: e04c b.n 8007508 } else if ((hclk >= 17200000U) && (hclk < 18500000U)) - 8007096: 68bb ldr r3, [r7, #8] - 8007098: 4a33 ldr r2, [pc, #204] @ (8007168 ) - 800709a: 4293 cmp r3, r2 - 800709c: d306 bcc.n 80070ac - 800709e: 68bb ldr r3, [r7, #8] - 80070a0: 4a32 ldr r2, [pc, #200] @ (800716c ) - 80070a2: 4293 cmp r3, r2 - 80070a4: d802 bhi.n 80070ac + 800746e: 68bb ldr r3, [r7, #8] + 8007470: 4a33 ldr r2, [pc, #204] @ (8007540 ) + 8007472: 4293 cmp r3, r2 + 8007474: d306 bcc.n 8007484 + 8007476: 68bb ldr r3, [r7, #8] + 8007478: 4a32 ldr r2, [pc, #200] @ (8007544 ) + 800747a: 4293 cmp r3, r2 + 800747c: d802 bhi.n 8007484 { /* hclk Clock Range between 17.2-18.5 MHz */ UsbTrd = 0xCU; - 80070a6: 230c movs r3, #12 - 80070a8: 617b str r3, [r7, #20] - 80070aa: e041 b.n 8007130 + 800747e: 230c movs r3, #12 + 8007480: 617b str r3, [r7, #20] + 8007482: e041 b.n 8007508 } else if ((hclk >= 18500000U) && (hclk < 20000000U)) - 80070ac: 68bb ldr r3, [r7, #8] - 80070ae: 4a2f ldr r2, [pc, #188] @ (800716c ) - 80070b0: 4293 cmp r3, r2 - 80070b2: d906 bls.n 80070c2 - 80070b4: 68bb ldr r3, [r7, #8] - 80070b6: 4a2e ldr r2, [pc, #184] @ (8007170 ) - 80070b8: 4293 cmp r3, r2 - 80070ba: d802 bhi.n 80070c2 + 8007484: 68bb ldr r3, [r7, #8] + 8007486: 4a2f ldr r2, [pc, #188] @ (8007544 ) + 8007488: 4293 cmp r3, r2 + 800748a: d906 bls.n 800749a + 800748c: 68bb ldr r3, [r7, #8] + 800748e: 4a2e ldr r2, [pc, #184] @ (8007548 ) + 8007490: 4293 cmp r3, r2 + 8007492: d802 bhi.n 800749a { /* hclk Clock Range between 18.5-20 MHz */ UsbTrd = 0xBU; - 80070bc: 230b movs r3, #11 - 80070be: 617b str r3, [r7, #20] - 80070c0: e036 b.n 8007130 + 8007494: 230b movs r3, #11 + 8007496: 617b str r3, [r7, #20] + 8007498: e036 b.n 8007508 } else if ((hclk >= 20000000U) && (hclk < 21800000U)) - 80070c2: 68bb ldr r3, [r7, #8] - 80070c4: 4a2a ldr r2, [pc, #168] @ (8007170 ) - 80070c6: 4293 cmp r3, r2 - 80070c8: d906 bls.n 80070d8 - 80070ca: 68bb ldr r3, [r7, #8] - 80070cc: 4a29 ldr r2, [pc, #164] @ (8007174 ) - 80070ce: 4293 cmp r3, r2 - 80070d0: d802 bhi.n 80070d8 + 800749a: 68bb ldr r3, [r7, #8] + 800749c: 4a2a ldr r2, [pc, #168] @ (8007548 ) + 800749e: 4293 cmp r3, r2 + 80074a0: d906 bls.n 80074b0 + 80074a2: 68bb ldr r3, [r7, #8] + 80074a4: 4a29 ldr r2, [pc, #164] @ (800754c ) + 80074a6: 4293 cmp r3, r2 + 80074a8: d802 bhi.n 80074b0 { /* hclk Clock Range between 20-21.8 MHz */ UsbTrd = 0xAU; - 80070d2: 230a movs r3, #10 - 80070d4: 617b str r3, [r7, #20] - 80070d6: e02b b.n 8007130 + 80074aa: 230a movs r3, #10 + 80074ac: 617b str r3, [r7, #20] + 80074ae: e02b b.n 8007508 } else if ((hclk >= 21800000U) && (hclk < 24000000U)) - 80070d8: 68bb ldr r3, [r7, #8] - 80070da: 4a26 ldr r2, [pc, #152] @ (8007174 ) - 80070dc: 4293 cmp r3, r2 - 80070de: d906 bls.n 80070ee - 80070e0: 68bb ldr r3, [r7, #8] - 80070e2: 4a25 ldr r2, [pc, #148] @ (8007178 ) - 80070e4: 4293 cmp r3, r2 - 80070e6: d202 bcs.n 80070ee + 80074b0: 68bb ldr r3, [r7, #8] + 80074b2: 4a26 ldr r2, [pc, #152] @ (800754c ) + 80074b4: 4293 cmp r3, r2 + 80074b6: d906 bls.n 80074c6 + 80074b8: 68bb ldr r3, [r7, #8] + 80074ba: 4a25 ldr r2, [pc, #148] @ (8007550 ) + 80074bc: 4293 cmp r3, r2 + 80074be: d202 bcs.n 80074c6 { /* hclk Clock Range between 21.8-24 MHz */ UsbTrd = 0x9U; - 80070e8: 2309 movs r3, #9 - 80070ea: 617b str r3, [r7, #20] - 80070ec: e020 b.n 8007130 + 80074c0: 2309 movs r3, #9 + 80074c2: 617b str r3, [r7, #20] + 80074c4: e020 b.n 8007508 } else if ((hclk >= 24000000U) && (hclk < 27700000U)) - 80070ee: 68bb ldr r3, [r7, #8] - 80070f0: 4a21 ldr r2, [pc, #132] @ (8007178 ) - 80070f2: 4293 cmp r3, r2 - 80070f4: d306 bcc.n 8007104 - 80070f6: 68bb ldr r3, [r7, #8] - 80070f8: 4a20 ldr r2, [pc, #128] @ (800717c ) - 80070fa: 4293 cmp r3, r2 - 80070fc: d802 bhi.n 8007104 + 80074c6: 68bb ldr r3, [r7, #8] + 80074c8: 4a21 ldr r2, [pc, #132] @ (8007550 ) + 80074ca: 4293 cmp r3, r2 + 80074cc: d306 bcc.n 80074dc + 80074ce: 68bb ldr r3, [r7, #8] + 80074d0: 4a20 ldr r2, [pc, #128] @ (8007554 ) + 80074d2: 4293 cmp r3, r2 + 80074d4: d802 bhi.n 80074dc { /* hclk Clock Range between 24-27.7 MHz */ UsbTrd = 0x8U; - 80070fe: 2308 movs r3, #8 - 8007100: 617b str r3, [r7, #20] - 8007102: e015 b.n 8007130 + 80074d6: 2308 movs r3, #8 + 80074d8: 617b str r3, [r7, #20] + 80074da: e015 b.n 8007508 } else if ((hclk >= 27700000U) && (hclk < 32000000U)) - 8007104: 68bb ldr r3, [r7, #8] - 8007106: 4a1d ldr r2, [pc, #116] @ (800717c ) - 8007108: 4293 cmp r3, r2 - 800710a: d906 bls.n 800711a - 800710c: 68bb ldr r3, [r7, #8] - 800710e: 4a1c ldr r2, [pc, #112] @ (8007180 ) - 8007110: 4293 cmp r3, r2 - 8007112: d202 bcs.n 800711a + 80074dc: 68bb ldr r3, [r7, #8] + 80074de: 4a1d ldr r2, [pc, #116] @ (8007554 ) + 80074e0: 4293 cmp r3, r2 + 80074e2: d906 bls.n 80074f2 + 80074e4: 68bb ldr r3, [r7, #8] + 80074e6: 4a1c ldr r2, [pc, #112] @ (8007558 ) + 80074e8: 4293 cmp r3, r2 + 80074ea: d202 bcs.n 80074f2 { /* hclk Clock Range between 27.7-32 MHz */ UsbTrd = 0x7U; - 8007114: 2307 movs r3, #7 - 8007116: 617b str r3, [r7, #20] - 8007118: e00a b.n 8007130 + 80074ec: 2307 movs r3, #7 + 80074ee: 617b str r3, [r7, #20] + 80074f0: e00a b.n 8007508 } else /* if(hclk >= 32000000) */ { /* hclk Clock Range between 32-200 MHz */ UsbTrd = 0x6U; - 800711a: 2306 movs r3, #6 - 800711c: 617b str r3, [r7, #20] - 800711e: e007 b.n 8007130 + 80074f2: 2306 movs r3, #6 + 80074f4: 617b str r3, [r7, #20] + 80074f6: e007 b.n 8007508 } } else if (speed == USBD_HS_SPEED) - 8007120: 79fb ldrb r3, [r7, #7] - 8007122: 2b00 cmp r3, #0 - 8007124: d102 bne.n 800712c + 80074f8: 79fb ldrb r3, [r7, #7] + 80074fa: 2b00 cmp r3, #0 + 80074fc: d102 bne.n 8007504 { UsbTrd = USBD_HS_TRDT_VALUE; - 8007126: 2309 movs r3, #9 - 8007128: 617b str r3, [r7, #20] - 800712a: e001 b.n 8007130 + 80074fe: 2309 movs r3, #9 + 8007500: 617b str r3, [r7, #20] + 8007502: e001 b.n 8007508 } else { UsbTrd = USBD_DEFAULT_TRDT_VALUE; - 800712c: 2309 movs r3, #9 - 800712e: 617b str r3, [r7, #20] + 8007504: 2309 movs r3, #9 + 8007506: 617b str r3, [r7, #20] } USBx->GUSBCFG &= ~USB_OTG_GUSBCFG_TRDT; - 8007130: 68fb ldr r3, [r7, #12] - 8007132: 68db ldr r3, [r3, #12] - 8007134: f423 5270 bic.w r2, r3, #15360 @ 0x3c00 - 8007138: 68fb ldr r3, [r7, #12] - 800713a: 60da str r2, [r3, #12] + 8007508: 68fb ldr r3, [r7, #12] + 800750a: 68db ldr r3, [r3, #12] + 800750c: f423 5270 bic.w r2, r3, #15360 @ 0x3c00 + 8007510: 68fb ldr r3, [r7, #12] + 8007512: 60da str r2, [r3, #12] USBx->GUSBCFG |= (uint32_t)((UsbTrd << 10) & USB_OTG_GUSBCFG_TRDT); - 800713c: 68fb ldr r3, [r7, #12] - 800713e: 68da ldr r2, [r3, #12] - 8007140: 697b ldr r3, [r7, #20] - 8007142: 029b lsls r3, r3, #10 - 8007144: f403 5370 and.w r3, r3, #15360 @ 0x3c00 - 8007148: 431a orrs r2, r3 - 800714a: 68fb ldr r3, [r7, #12] - 800714c: 60da str r2, [r3, #12] + 8007514: 68fb ldr r3, [r7, #12] + 8007516: 68da ldr r2, [r3, #12] + 8007518: 697b ldr r3, [r7, #20] + 800751a: 029b lsls r3, r3, #10 + 800751c: f403 5370 and.w r3, r3, #15360 @ 0x3c00 + 8007520: 431a orrs r2, r3 + 8007522: 68fb ldr r3, [r7, #12] + 8007524: 60da str r2, [r3, #12] return HAL_OK; - 800714e: 2300 movs r3, #0 + 8007526: 2300 movs r3, #0 } - 8007150: 4618 mov r0, r3 - 8007152: 371c adds r7, #28 - 8007154: 46bd mov sp, r7 - 8007156: f85d 7b04 ldr.w r7, [sp], #4 - 800715a: 4770 bx lr - 800715c: 00d8acbf .word 0x00d8acbf - 8007160: 00e4e1c0 .word 0x00e4e1c0 - 8007164: 00f42400 .word 0x00f42400 - 8007168: 01067380 .word 0x01067380 - 800716c: 011a499f .word 0x011a499f - 8007170: 01312cff .word 0x01312cff - 8007174: 014ca43f .word 0x014ca43f - 8007178: 016e3600 .word 0x016e3600 - 800717c: 01a6ab1f .word 0x01a6ab1f - 8007180: 01e84800 .word 0x01e84800 + 8007528: 4618 mov r0, r3 + 800752a: 371c adds r7, #28 + 800752c: 46bd mov sp, r7 + 800752e: f85d 7b04 ldr.w r7, [sp], #4 + 8007532: 4770 bx lr + 8007534: 00d8acbf .word 0x00d8acbf + 8007538: 00e4e1c0 .word 0x00e4e1c0 + 800753c: 00f42400 .word 0x00f42400 + 8007540: 01067380 .word 0x01067380 + 8007544: 011a499f .word 0x011a499f + 8007548: 01312cff .word 0x01312cff + 800754c: 014ca43f .word 0x014ca43f + 8007550: 016e3600 .word 0x016e3600 + 8007554: 01a6ab1f .word 0x01a6ab1f + 8007558: 01e84800 .word 0x01e84800 -08007184 : +0800755c : * Enables the controller's Global Int in the AHB Config reg * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_EnableGlobalInt(USB_OTG_GlobalTypeDef *USBx) { - 8007184: b480 push {r7} - 8007186: b083 sub sp, #12 - 8007188: af00 add r7, sp, #0 - 800718a: 6078 str r0, [r7, #4] + 800755c: b480 push {r7} + 800755e: b083 sub sp, #12 + 8007560: af00 add r7, sp, #0 + 8007562: 6078 str r0, [r7, #4] USBx->GAHBCFG |= USB_OTG_GAHBCFG_GINT; - 800718c: 687b ldr r3, [r7, #4] - 800718e: 689b ldr r3, [r3, #8] - 8007190: f043 0201 orr.w r2, r3, #1 - 8007194: 687b ldr r3, [r7, #4] - 8007196: 609a str r2, [r3, #8] + 8007564: 687b ldr r3, [r7, #4] + 8007566: 689b ldr r3, [r3, #8] + 8007568: f043 0201 orr.w r2, r3, #1 + 800756c: 687b ldr r3, [r7, #4] + 800756e: 609a str r2, [r3, #8] return HAL_OK; - 8007198: 2300 movs r3, #0 + 8007570: 2300 movs r3, #0 } - 800719a: 4618 mov r0, r3 - 800719c: 370c adds r7, #12 - 800719e: 46bd mov sp, r7 - 80071a0: f85d 7b04 ldr.w r7, [sp], #4 - 80071a4: 4770 bx lr + 8007572: 4618 mov r0, r3 + 8007574: 370c adds r7, #12 + 8007576: 46bd mov sp, r7 + 8007578: f85d 7b04 ldr.w r7, [sp], #4 + 800757c: 4770 bx lr -080071a6 : +0800757e : * Disable the controller's Global Int in the AHB Config reg * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_DisableGlobalInt(USB_OTG_GlobalTypeDef *USBx) { - 80071a6: b480 push {r7} - 80071a8: b083 sub sp, #12 - 80071aa: af00 add r7, sp, #0 - 80071ac: 6078 str r0, [r7, #4] + 800757e: b480 push {r7} + 8007580: b083 sub sp, #12 + 8007582: af00 add r7, sp, #0 + 8007584: 6078 str r0, [r7, #4] USBx->GAHBCFG &= ~USB_OTG_GAHBCFG_GINT; - 80071ae: 687b ldr r3, [r7, #4] - 80071b0: 689b ldr r3, [r3, #8] - 80071b2: f023 0201 bic.w r2, r3, #1 - 80071b6: 687b ldr r3, [r7, #4] - 80071b8: 609a str r2, [r3, #8] + 8007586: 687b ldr r3, [r7, #4] + 8007588: 689b ldr r3, [r3, #8] + 800758a: f023 0201 bic.w r2, r3, #1 + 800758e: 687b ldr r3, [r7, #4] + 8007590: 609a str r2, [r3, #8] return HAL_OK; - 80071ba: 2300 movs r3, #0 + 8007592: 2300 movs r3, #0 } - 80071bc: 4618 mov r0, r3 - 80071be: 370c adds r7, #12 - 80071c0: 46bd mov sp, r7 - 80071c2: f85d 7b04 ldr.w r7, [sp], #4 - 80071c6: 4770 bx lr + 8007594: 4618 mov r0, r3 + 8007596: 370c adds r7, #12 + 8007598: 46bd mov sp, r7 + 800759a: f85d 7b04 ldr.w r7, [sp], #4 + 800759e: 4770 bx lr -080071c8 : +080075a0 : * @arg USB_DEVICE_MODE Peripheral mode * @arg USB_HOST_MODE Host mode * @retval HAL status */ HAL_StatusTypeDef USB_SetCurrentMode(USB_OTG_GlobalTypeDef *USBx, USB_OTG_ModeTypeDef mode) { - 80071c8: b580 push {r7, lr} - 80071ca: b084 sub sp, #16 - 80071cc: af00 add r7, sp, #0 - 80071ce: 6078 str r0, [r7, #4] - 80071d0: 460b mov r3, r1 - 80071d2: 70fb strb r3, [r7, #3] + 80075a0: b580 push {r7, lr} + 80075a2: b084 sub sp, #16 + 80075a4: af00 add r7, sp, #0 + 80075a6: 6078 str r0, [r7, #4] + 80075a8: 460b mov r3, r1 + 80075aa: 70fb strb r3, [r7, #3] uint32_t ms = 0U; - 80071d4: 2300 movs r3, #0 - 80071d6: 60fb str r3, [r7, #12] + 80075ac: 2300 movs r3, #0 + 80075ae: 60fb str r3, [r7, #12] USBx->GUSBCFG &= ~(USB_OTG_GUSBCFG_FHMOD | USB_OTG_GUSBCFG_FDMOD); - 80071d8: 687b ldr r3, [r7, #4] - 80071da: 68db ldr r3, [r3, #12] - 80071dc: f023 42c0 bic.w r2, r3, #1610612736 @ 0x60000000 - 80071e0: 687b ldr r3, [r7, #4] - 80071e2: 60da str r2, [r3, #12] + 80075b0: 687b ldr r3, [r7, #4] + 80075b2: 68db ldr r3, [r3, #12] + 80075b4: f023 42c0 bic.w r2, r3, #1610612736 @ 0x60000000 + 80075b8: 687b ldr r3, [r7, #4] + 80075ba: 60da str r2, [r3, #12] if (mode == USB_HOST_MODE) - 80071e4: 78fb ldrb r3, [r7, #3] - 80071e6: 2b01 cmp r3, #1 - 80071e8: d115 bne.n 8007216 + 80075bc: 78fb ldrb r3, [r7, #3] + 80075be: 2b01 cmp r3, #1 + 80075c0: d115 bne.n 80075ee { USBx->GUSBCFG |= USB_OTG_GUSBCFG_FHMOD; - 80071ea: 687b ldr r3, [r7, #4] - 80071ec: 68db ldr r3, [r3, #12] - 80071ee: f043 5200 orr.w r2, r3, #536870912 @ 0x20000000 - 80071f2: 687b ldr r3, [r7, #4] - 80071f4: 60da str r2, [r3, #12] + 80075c2: 687b ldr r3, [r7, #4] + 80075c4: 68db ldr r3, [r3, #12] + 80075c6: f043 5200 orr.w r2, r3, #536870912 @ 0x20000000 + 80075ca: 687b ldr r3, [r7, #4] + 80075cc: 60da str r2, [r3, #12] do { HAL_Delay(10U); - 80071f6: 200a movs r0, #10 - 80071f8: f7fa fcc4 bl 8001b84 + 80075ce: 200a movs r0, #10 + 80075d0: f7fa fc10 bl 8001df4 ms += 10U; - 80071fc: 68fb ldr r3, [r7, #12] - 80071fe: 330a adds r3, #10 - 8007200: 60fb str r3, [r7, #12] + 80075d4: 68fb ldr r3, [r7, #12] + 80075d6: 330a adds r3, #10 + 80075d8: 60fb str r3, [r7, #12] } while ((USB_GetMode(USBx) != (uint32_t)USB_HOST_MODE) && (ms < HAL_USB_CURRENT_MODE_MAX_DELAY_MS)); - 8007202: 6878 ldr r0, [r7, #4] - 8007204: f001 f939 bl 800847a - 8007208: 4603 mov r3, r0 - 800720a: 2b01 cmp r3, #1 - 800720c: d01e beq.n 800724c - 800720e: 68fb ldr r3, [r7, #12] - 8007210: 2bc7 cmp r3, #199 @ 0xc7 - 8007212: d9f0 bls.n 80071f6 - 8007214: e01a b.n 800724c + 80075da: 6878 ldr r0, [r7, #4] + 80075dc: f001 f939 bl 8008852 + 80075e0: 4603 mov r3, r0 + 80075e2: 2b01 cmp r3, #1 + 80075e4: d01e beq.n 8007624 + 80075e6: 68fb ldr r3, [r7, #12] + 80075e8: 2bc7 cmp r3, #199 @ 0xc7 + 80075ea: d9f0 bls.n 80075ce + 80075ec: e01a b.n 8007624 } else if (mode == USB_DEVICE_MODE) - 8007216: 78fb ldrb r3, [r7, #3] - 8007218: 2b00 cmp r3, #0 - 800721a: d115 bne.n 8007248 + 80075ee: 78fb ldrb r3, [r7, #3] + 80075f0: 2b00 cmp r3, #0 + 80075f2: d115 bne.n 8007620 { USBx->GUSBCFG |= USB_OTG_GUSBCFG_FDMOD; - 800721c: 687b ldr r3, [r7, #4] - 800721e: 68db ldr r3, [r3, #12] - 8007220: f043 4280 orr.w r2, r3, #1073741824 @ 0x40000000 - 8007224: 687b ldr r3, [r7, #4] - 8007226: 60da str r2, [r3, #12] + 80075f4: 687b ldr r3, [r7, #4] + 80075f6: 68db ldr r3, [r3, #12] + 80075f8: f043 4280 orr.w r2, r3, #1073741824 @ 0x40000000 + 80075fc: 687b ldr r3, [r7, #4] + 80075fe: 60da str r2, [r3, #12] do { HAL_Delay(10U); - 8007228: 200a movs r0, #10 - 800722a: f7fa fcab bl 8001b84 + 8007600: 200a movs r0, #10 + 8007602: f7fa fbf7 bl 8001df4 ms += 10U; - 800722e: 68fb ldr r3, [r7, #12] - 8007230: 330a adds r3, #10 - 8007232: 60fb str r3, [r7, #12] + 8007606: 68fb ldr r3, [r7, #12] + 8007608: 330a adds r3, #10 + 800760a: 60fb str r3, [r7, #12] } while ((USB_GetMode(USBx) != (uint32_t)USB_DEVICE_MODE) && (ms < HAL_USB_CURRENT_MODE_MAX_DELAY_MS)); - 8007234: 6878 ldr r0, [r7, #4] - 8007236: f001 f920 bl 800847a - 800723a: 4603 mov r3, r0 - 800723c: 2b00 cmp r3, #0 - 800723e: d005 beq.n 800724c - 8007240: 68fb ldr r3, [r7, #12] - 8007242: 2bc7 cmp r3, #199 @ 0xc7 - 8007244: d9f0 bls.n 8007228 - 8007246: e001 b.n 800724c + 800760c: 6878 ldr r0, [r7, #4] + 800760e: f001 f920 bl 8008852 + 8007612: 4603 mov r3, r0 + 8007614: 2b00 cmp r3, #0 + 8007616: d005 beq.n 8007624 + 8007618: 68fb ldr r3, [r7, #12] + 800761a: 2bc7 cmp r3, #199 @ 0xc7 + 800761c: d9f0 bls.n 8007600 + 800761e: e001 b.n 8007624 } else { return HAL_ERROR; - 8007248: 2301 movs r3, #1 - 800724a: e005 b.n 8007258 + 8007620: 2301 movs r3, #1 + 8007622: e005 b.n 8007630 } if (ms == HAL_USB_CURRENT_MODE_MAX_DELAY_MS) - 800724c: 68fb ldr r3, [r7, #12] - 800724e: 2bc8 cmp r3, #200 @ 0xc8 - 8007250: d101 bne.n 8007256 + 8007624: 68fb ldr r3, [r7, #12] + 8007626: 2bc8 cmp r3, #200 @ 0xc8 + 8007628: d101 bne.n 800762e { return HAL_ERROR; - 8007252: 2301 movs r3, #1 - 8007254: e000 b.n 8007258 + 800762a: 2301 movs r3, #1 + 800762c: e000 b.n 8007630 } return HAL_OK; - 8007256: 2300 movs r3, #0 + 800762e: 2300 movs r3, #0 } - 8007258: 4618 mov r0, r3 - 800725a: 3710 adds r7, #16 - 800725c: 46bd mov sp, r7 - 800725e: bd80 pop {r7, pc} + 8007630: 4618 mov r0, r3 + 8007632: 3710 adds r7, #16 + 8007634: 46bd mov sp, r7 + 8007636: bd80 pop {r7, pc} -08007260 : +08007638 : * @param cfg pointer to a USB_OTG_CfgTypeDef structure that contains * the configuration information for the specified USBx peripheral. * @retval HAL status */ HAL_StatusTypeDef USB_DevInit(USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef cfg) { - 8007260: b084 sub sp, #16 - 8007262: b580 push {r7, lr} - 8007264: b086 sub sp, #24 - 8007266: af00 add r7, sp, #0 - 8007268: 6078 str r0, [r7, #4] - 800726a: f107 0024 add.w r0, r7, #36 @ 0x24 - 800726e: e880 000e stmia.w r0, {r1, r2, r3} + 8007638: b084 sub sp, #16 + 800763a: b580 push {r7, lr} + 800763c: b086 sub sp, #24 + 800763e: af00 add r7, sp, #0 + 8007640: 6078 str r0, [r7, #4] + 8007642: f107 0024 add.w r0, r7, #36 @ 0x24 + 8007646: e880 000e stmia.w r0, {r1, r2, r3} HAL_StatusTypeDef ret = HAL_OK; - 8007272: 2300 movs r3, #0 - 8007274: 75fb strb r3, [r7, #23] + 800764a: 2300 movs r3, #0 + 800764c: 75fb strb r3, [r7, #23] uint32_t USBx_BASE = (uint32_t)USBx; - 8007276: 687b ldr r3, [r7, #4] - 8007278: 60fb str r3, [r7, #12] + 800764e: 687b ldr r3, [r7, #4] + 8007650: 60fb str r3, [r7, #12] uint32_t i; for (i = 0U; i < 15U; i++) - 800727a: 2300 movs r3, #0 - 800727c: 613b str r3, [r7, #16] - 800727e: e009 b.n 8007294 + 8007652: 2300 movs r3, #0 + 8007654: 613b str r3, [r7, #16] + 8007656: e009 b.n 800766c { USBx->DIEPTXF[i] = 0U; - 8007280: 687a ldr r2, [r7, #4] - 8007282: 693b ldr r3, [r7, #16] - 8007284: 3340 adds r3, #64 @ 0x40 - 8007286: 009b lsls r3, r3, #2 - 8007288: 4413 add r3, r2 - 800728a: 2200 movs r2, #0 - 800728c: 605a str r2, [r3, #4] + 8007658: 687a ldr r2, [r7, #4] + 800765a: 693b ldr r3, [r7, #16] + 800765c: 3340 adds r3, #64 @ 0x40 + 800765e: 009b lsls r3, r3, #2 + 8007660: 4413 add r3, r2 + 8007662: 2200 movs r2, #0 + 8007664: 605a str r2, [r3, #4] for (i = 0U; i < 15U; i++) - 800728e: 693b ldr r3, [r7, #16] - 8007290: 3301 adds r3, #1 - 8007292: 613b str r3, [r7, #16] - 8007294: 693b ldr r3, [r7, #16] - 8007296: 2b0e cmp r3, #14 - 8007298: d9f2 bls.n 8007280 + 8007666: 693b ldr r3, [r7, #16] + 8007668: 3301 adds r3, #1 + 800766a: 613b str r3, [r7, #16] + 800766c: 693b ldr r3, [r7, #16] + 800766e: 2b0e cmp r3, #14 + 8007670: d9f2 bls.n 8007658 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) \ || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) \ || defined(STM32F423xx) /* VBUS Sensing setup */ if (cfg.vbus_sensing_enable == 0U) - 800729a: f897 302e ldrb.w r3, [r7, #46] @ 0x2e - 800729e: 2b00 cmp r3, #0 - 80072a0: d11c bne.n 80072dc + 8007672: f897 302e ldrb.w r3, [r7, #46] @ 0x2e + 8007676: 2b00 cmp r3, #0 + 8007678: d11c bne.n 80076b4 { USBx_DEVICE->DCTL |= USB_OTG_DCTL_SDIS; - 80072a2: 68fb ldr r3, [r7, #12] - 80072a4: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80072a8: 685b ldr r3, [r3, #4] - 80072aa: 68fa ldr r2, [r7, #12] - 80072ac: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80072b0: f043 0302 orr.w r3, r3, #2 - 80072b4: 6053 str r3, [r2, #4] + 800767a: 68fb ldr r3, [r7, #12] + 800767c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007680: 685b ldr r3, [r3, #4] + 8007682: 68fa ldr r2, [r7, #12] + 8007684: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8007688: f043 0302 orr.w r3, r3, #2 + 800768c: 6053 str r3, [r2, #4] /* Deactivate VBUS Sensing B */ USBx->GCCFG &= ~USB_OTG_GCCFG_VBDEN; - 80072b6: 687b ldr r3, [r7, #4] - 80072b8: 6b9b ldr r3, [r3, #56] @ 0x38 - 80072ba: f423 1200 bic.w r2, r3, #2097152 @ 0x200000 - 80072be: 687b ldr r3, [r7, #4] - 80072c0: 639a str r2, [r3, #56] @ 0x38 + 800768e: 687b ldr r3, [r7, #4] + 8007690: 6b9b ldr r3, [r3, #56] @ 0x38 + 8007692: f423 1200 bic.w r2, r3, #2097152 @ 0x200000 + 8007696: 687b ldr r3, [r7, #4] + 8007698: 639a str r2, [r3, #56] @ 0x38 /* B-peripheral session valid override enable */ USBx->GOTGCTL |= USB_OTG_GOTGCTL_BVALOEN; - 80072c2: 687b ldr r3, [r7, #4] - 80072c4: 681b ldr r3, [r3, #0] - 80072c6: f043 0240 orr.w r2, r3, #64 @ 0x40 - 80072ca: 687b ldr r3, [r7, #4] - 80072cc: 601a str r2, [r3, #0] + 800769a: 687b ldr r3, [r7, #4] + 800769c: 681b ldr r3, [r3, #0] + 800769e: f043 0240 orr.w r2, r3, #64 @ 0x40 + 80076a2: 687b ldr r3, [r7, #4] + 80076a4: 601a str r2, [r3, #0] USBx->GOTGCTL |= USB_OTG_GOTGCTL_BVALOVAL; - 80072ce: 687b ldr r3, [r7, #4] - 80072d0: 681b ldr r3, [r3, #0] - 80072d2: f043 0280 orr.w r2, r3, #128 @ 0x80 - 80072d6: 687b ldr r3, [r7, #4] - 80072d8: 601a str r2, [r3, #0] - 80072da: e005 b.n 80072e8 + 80076a6: 687b ldr r3, [r7, #4] + 80076a8: 681b ldr r3, [r3, #0] + 80076aa: f043 0280 orr.w r2, r3, #128 @ 0x80 + 80076ae: 687b ldr r3, [r7, #4] + 80076b0: 601a str r2, [r3, #0] + 80076b2: e005 b.n 80076c0 } else { /* Enable HW VBUS sensing */ USBx->GCCFG |= USB_OTG_GCCFG_VBDEN; - 80072dc: 687b ldr r3, [r7, #4] - 80072de: 6b9b ldr r3, [r3, #56] @ 0x38 - 80072e0: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 - 80072e4: 687b ldr r3, [r7, #4] - 80072e6: 639a str r2, [r3, #56] @ 0x38 + 80076b4: 687b ldr r3, [r7, #4] + 80076b6: 6b9b ldr r3, [r3, #56] @ 0x38 + 80076b8: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 + 80076bc: 687b ldr r3, [r7, #4] + 80076be: 639a str r2, [r3, #56] @ 0x38 #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx) */ /* Restart the Phy Clock */ USBx_PCGCCTL = 0U; - 80072e8: 68fb ldr r3, [r7, #12] - 80072ea: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 80072ee: 461a mov r2, r3 - 80072f0: 2300 movs r3, #0 - 80072f2: 6013 str r3, [r2, #0] + 80076c0: 68fb ldr r3, [r7, #12] + 80076c2: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 80076c6: 461a mov r2, r3 + 80076c8: 2300 movs r3, #0 + 80076ca: 6013 str r3, [r2, #0] if (cfg.phy_itface == USB_OTG_ULPI_PHY) - 80072f4: f897 3029 ldrb.w r3, [r7, #41] @ 0x29 - 80072f8: 2b01 cmp r3, #1 - 80072fa: d10d bne.n 8007318 + 80076cc: f897 3029 ldrb.w r3, [r7, #41] @ 0x29 + 80076d0: 2b01 cmp r3, #1 + 80076d2: d10d bne.n 80076f0 { if (cfg.speed == USBD_HS_SPEED) - 80072fc: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 - 8007300: 2b00 cmp r3, #0 - 8007302: d104 bne.n 800730e + 80076d4: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 + 80076d8: 2b00 cmp r3, #0 + 80076da: d104 bne.n 80076e6 { /* Set Core speed to High speed mode */ (void)USB_SetDevSpeed(USBx, USB_OTG_SPEED_HIGH); - 8007304: 2100 movs r1, #0 - 8007306: 6878 ldr r0, [r7, #4] - 8007308: f000 f968 bl 80075dc - 800730c: e008 b.n 8007320 + 80076dc: 2100 movs r1, #0 + 80076de: 6878 ldr r0, [r7, #4] + 80076e0: f000 f968 bl 80079b4 + 80076e4: e008 b.n 80076f8 } else { /* Set Core speed to Full speed mode */ (void)USB_SetDevSpeed(USBx, USB_OTG_SPEED_HIGH_IN_FULL); - 800730e: 2101 movs r1, #1 - 8007310: 6878 ldr r0, [r7, #4] - 8007312: f000 f963 bl 80075dc - 8007316: e003 b.n 8007320 + 80076e6: 2101 movs r1, #1 + 80076e8: 6878 ldr r0, [r7, #4] + 80076ea: f000 f963 bl 80079b4 + 80076ee: e003 b.n 80076f8 } } else { /* Set Core speed to Full speed mode */ (void)USB_SetDevSpeed(USBx, USB_OTG_SPEED_FULL); - 8007318: 2103 movs r1, #3 - 800731a: 6878 ldr r0, [r7, #4] - 800731c: f000 f95e bl 80075dc + 80076f0: 2103 movs r1, #3 + 80076f2: 6878 ldr r0, [r7, #4] + 80076f4: f000 f95e bl 80079b4 } /* Flush the FIFOs */ if (USB_FlushTxFifo(USBx, 0x10U) != HAL_OK) /* all Tx FIFOs */ - 8007320: 2110 movs r1, #16 - 8007322: 6878 ldr r0, [r7, #4] - 8007324: f000 f8fa bl 800751c - 8007328: 4603 mov r3, r0 - 800732a: 2b00 cmp r3, #0 - 800732c: d001 beq.n 8007332 + 80076f8: 2110 movs r1, #16 + 80076fa: 6878 ldr r0, [r7, #4] + 80076fc: f000 f8fa bl 80078f4 + 8007700: 4603 mov r3, r0 + 8007702: 2b00 cmp r3, #0 + 8007704: d001 beq.n 800770a { ret = HAL_ERROR; - 800732e: 2301 movs r3, #1 - 8007330: 75fb strb r3, [r7, #23] + 8007706: 2301 movs r3, #1 + 8007708: 75fb strb r3, [r7, #23] } if (USB_FlushRxFifo(USBx) != HAL_OK) - 8007332: 6878 ldr r0, [r7, #4] - 8007334: f000 f924 bl 8007580 - 8007338: 4603 mov r3, r0 - 800733a: 2b00 cmp r3, #0 - 800733c: d001 beq.n 8007342 + 800770a: 6878 ldr r0, [r7, #4] + 800770c: f000 f924 bl 8007958 + 8007710: 4603 mov r3, r0 + 8007712: 2b00 cmp r3, #0 + 8007714: d001 beq.n 800771a { ret = HAL_ERROR; - 800733e: 2301 movs r3, #1 - 8007340: 75fb strb r3, [r7, #23] + 8007716: 2301 movs r3, #1 + 8007718: 75fb strb r3, [r7, #23] } /* Clear all pending Device Interrupts */ USBx_DEVICE->DIEPMSK = 0U; - 8007342: 68fb ldr r3, [r7, #12] - 8007344: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007348: 461a mov r2, r3 - 800734a: 2300 movs r3, #0 - 800734c: 6113 str r3, [r2, #16] + 800771a: 68fb ldr r3, [r7, #12] + 800771c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007720: 461a mov r2, r3 + 8007722: 2300 movs r3, #0 + 8007724: 6113 str r3, [r2, #16] USBx_DEVICE->DOEPMSK = 0U; - 800734e: 68fb ldr r3, [r7, #12] - 8007350: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007354: 461a mov r2, r3 - 8007356: 2300 movs r3, #0 - 8007358: 6153 str r3, [r2, #20] + 8007726: 68fb ldr r3, [r7, #12] + 8007728: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800772c: 461a mov r2, r3 + 800772e: 2300 movs r3, #0 + 8007730: 6153 str r3, [r2, #20] USBx_DEVICE->DAINTMSK = 0U; - 800735a: 68fb ldr r3, [r7, #12] - 800735c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007360: 461a mov r2, r3 - 8007362: 2300 movs r3, #0 - 8007364: 61d3 str r3, [r2, #28] + 8007732: 68fb ldr r3, [r7, #12] + 8007734: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007738: 461a mov r2, r3 + 800773a: 2300 movs r3, #0 + 800773c: 61d3 str r3, [r2, #28] for (i = 0U; i < cfg.dev_endpoints; i++) - 8007366: 2300 movs r3, #0 - 8007368: 613b str r3, [r7, #16] - 800736a: e043 b.n 80073f4 + 800773e: 2300 movs r3, #0 + 8007740: 613b str r3, [r7, #16] + 8007742: e043 b.n 80077cc { if ((USBx_INEP(i)->DIEPCTL & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA) - 800736c: 693b ldr r3, [r7, #16] - 800736e: 015a lsls r2, r3, #5 - 8007370: 68fb ldr r3, [r7, #12] - 8007372: 4413 add r3, r2 - 8007374: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007378: 681b ldr r3, [r3, #0] - 800737a: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 800737e: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007382: d118 bne.n 80073b6 + 8007744: 693b ldr r3, [r7, #16] + 8007746: 015a lsls r2, r3, #5 + 8007748: 68fb ldr r3, [r7, #12] + 800774a: 4413 add r3, r2 + 800774c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007750: 681b ldr r3, [r3, #0] + 8007752: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007756: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 800775a: d118 bne.n 800778e { if (i == 0U) - 8007384: 693b ldr r3, [r7, #16] - 8007386: 2b00 cmp r3, #0 - 8007388: d10a bne.n 80073a0 + 800775c: 693b ldr r3, [r7, #16] + 800775e: 2b00 cmp r3, #0 + 8007760: d10a bne.n 8007778 { USBx_INEP(i)->DIEPCTL = USB_OTG_DIEPCTL_SNAK; - 800738a: 693b ldr r3, [r7, #16] - 800738c: 015a lsls r2, r3, #5 - 800738e: 68fb ldr r3, [r7, #12] - 8007390: 4413 add r3, r2 - 8007392: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007396: 461a mov r2, r3 - 8007398: f04f 6300 mov.w r3, #134217728 @ 0x8000000 - 800739c: 6013 str r3, [r2, #0] - 800739e: e013 b.n 80073c8 + 8007762: 693b ldr r3, [r7, #16] + 8007764: 015a lsls r2, r3, #5 + 8007766: 68fb ldr r3, [r7, #12] + 8007768: 4413 add r3, r2 + 800776a: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800776e: 461a mov r2, r3 + 8007770: f04f 6300 mov.w r3, #134217728 @ 0x8000000 + 8007774: 6013 str r3, [r2, #0] + 8007776: e013 b.n 80077a0 } else { USBx_INEP(i)->DIEPCTL = USB_OTG_DIEPCTL_EPDIS | USB_OTG_DIEPCTL_SNAK; - 80073a0: 693b ldr r3, [r7, #16] - 80073a2: 015a lsls r2, r3, #5 - 80073a4: 68fb ldr r3, [r7, #12] - 80073a6: 4413 add r3, r2 - 80073a8: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073ac: 461a mov r2, r3 - 80073ae: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 - 80073b2: 6013 str r3, [r2, #0] - 80073b4: e008 b.n 80073c8 + 8007778: 693b ldr r3, [r7, #16] + 800777a: 015a lsls r2, r3, #5 + 800777c: 68fb ldr r3, [r7, #12] + 800777e: 4413 add r3, r2 + 8007780: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007784: 461a mov r2, r3 + 8007786: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 + 800778a: 6013 str r3, [r2, #0] + 800778c: e008 b.n 80077a0 } } else { USBx_INEP(i)->DIEPCTL = 0U; - 80073b6: 693b ldr r3, [r7, #16] - 80073b8: 015a lsls r2, r3, #5 - 80073ba: 68fb ldr r3, [r7, #12] - 80073bc: 4413 add r3, r2 - 80073be: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073c2: 461a mov r2, r3 - 80073c4: 2300 movs r3, #0 - 80073c6: 6013 str r3, [r2, #0] + 800778e: 693b ldr r3, [r7, #16] + 8007790: 015a lsls r2, r3, #5 + 8007792: 68fb ldr r3, [r7, #12] + 8007794: 4413 add r3, r2 + 8007796: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800779a: 461a mov r2, r3 + 800779c: 2300 movs r3, #0 + 800779e: 6013 str r3, [r2, #0] } USBx_INEP(i)->DIEPTSIZ = 0U; - 80073c8: 693b ldr r3, [r7, #16] - 80073ca: 015a lsls r2, r3, #5 - 80073cc: 68fb ldr r3, [r7, #12] - 80073ce: 4413 add r3, r2 - 80073d0: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073d4: 461a mov r2, r3 - 80073d6: 2300 movs r3, #0 - 80073d8: 6113 str r3, [r2, #16] + 80077a0: 693b ldr r3, [r7, #16] + 80077a2: 015a lsls r2, r3, #5 + 80077a4: 68fb ldr r3, [r7, #12] + 80077a6: 4413 add r3, r2 + 80077a8: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80077ac: 461a mov r2, r3 + 80077ae: 2300 movs r3, #0 + 80077b0: 6113 str r3, [r2, #16] USBx_INEP(i)->DIEPINT = 0xFB7FU; - 80073da: 693b ldr r3, [r7, #16] - 80073dc: 015a lsls r2, r3, #5 - 80073de: 68fb ldr r3, [r7, #12] - 80073e0: 4413 add r3, r2 - 80073e2: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073e6: 461a mov r2, r3 - 80073e8: f64f 337f movw r3, #64383 @ 0xfb7f - 80073ec: 6093 str r3, [r2, #8] + 80077b2: 693b ldr r3, [r7, #16] + 80077b4: 015a lsls r2, r3, #5 + 80077b6: 68fb ldr r3, [r7, #12] + 80077b8: 4413 add r3, r2 + 80077ba: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80077be: 461a mov r2, r3 + 80077c0: f64f 337f movw r3, #64383 @ 0xfb7f + 80077c4: 6093 str r3, [r2, #8] for (i = 0U; i < cfg.dev_endpoints; i++) - 80073ee: 693b ldr r3, [r7, #16] - 80073f0: 3301 adds r3, #1 - 80073f2: 613b str r3, [r7, #16] - 80073f4: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 - 80073f8: 461a mov r2, r3 - 80073fa: 693b ldr r3, [r7, #16] - 80073fc: 4293 cmp r3, r2 - 80073fe: d3b5 bcc.n 800736c + 80077c6: 693b ldr r3, [r7, #16] + 80077c8: 3301 adds r3, #1 + 80077ca: 613b str r3, [r7, #16] + 80077cc: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 + 80077d0: 461a mov r2, r3 + 80077d2: 693b ldr r3, [r7, #16] + 80077d4: 4293 cmp r3, r2 + 80077d6: d3b5 bcc.n 8007744 } for (i = 0U; i < cfg.dev_endpoints; i++) - 8007400: 2300 movs r3, #0 - 8007402: 613b str r3, [r7, #16] - 8007404: e043 b.n 800748e + 80077d8: 2300 movs r3, #0 + 80077da: 613b str r3, [r7, #16] + 80077dc: e043 b.n 8007866 { if ((USBx_OUTEP(i)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8007406: 693b ldr r3, [r7, #16] - 8007408: 015a lsls r2, r3, #5 - 800740a: 68fb ldr r3, [r7, #12] - 800740c: 4413 add r3, r2 - 800740e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007412: 681b ldr r3, [r3, #0] - 8007414: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007418: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 800741c: d118 bne.n 8007450 + 80077de: 693b ldr r3, [r7, #16] + 80077e0: 015a lsls r2, r3, #5 + 80077e2: 68fb ldr r3, [r7, #12] + 80077e4: 4413 add r3, r2 + 80077e6: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80077ea: 681b ldr r3, [r3, #0] + 80077ec: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80077f0: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 80077f4: d118 bne.n 8007828 { if (i == 0U) - 800741e: 693b ldr r3, [r7, #16] - 8007420: 2b00 cmp r3, #0 - 8007422: d10a bne.n 800743a + 80077f6: 693b ldr r3, [r7, #16] + 80077f8: 2b00 cmp r3, #0 + 80077fa: d10a bne.n 8007812 { USBx_OUTEP(i)->DOEPCTL = USB_OTG_DOEPCTL_SNAK; - 8007424: 693b ldr r3, [r7, #16] - 8007426: 015a lsls r2, r3, #5 - 8007428: 68fb ldr r3, [r7, #12] - 800742a: 4413 add r3, r2 - 800742c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007430: 461a mov r2, r3 - 8007432: f04f 6300 mov.w r3, #134217728 @ 0x8000000 - 8007436: 6013 str r3, [r2, #0] - 8007438: e013 b.n 8007462 + 80077fc: 693b ldr r3, [r7, #16] + 80077fe: 015a lsls r2, r3, #5 + 8007800: 68fb ldr r3, [r7, #12] + 8007802: 4413 add r3, r2 + 8007804: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007808: 461a mov r2, r3 + 800780a: f04f 6300 mov.w r3, #134217728 @ 0x8000000 + 800780e: 6013 str r3, [r2, #0] + 8007810: e013 b.n 800783a } else { USBx_OUTEP(i)->DOEPCTL = USB_OTG_DOEPCTL_EPDIS | USB_OTG_DOEPCTL_SNAK; - 800743a: 693b ldr r3, [r7, #16] - 800743c: 015a lsls r2, r3, #5 - 800743e: 68fb ldr r3, [r7, #12] - 8007440: 4413 add r3, r2 - 8007442: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007446: 461a mov r2, r3 - 8007448: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 - 800744c: 6013 str r3, [r2, #0] - 800744e: e008 b.n 8007462 + 8007812: 693b ldr r3, [r7, #16] + 8007814: 015a lsls r2, r3, #5 + 8007816: 68fb ldr r3, [r7, #12] + 8007818: 4413 add r3, r2 + 800781a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800781e: 461a mov r2, r3 + 8007820: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 + 8007824: 6013 str r3, [r2, #0] + 8007826: e008 b.n 800783a } } else { USBx_OUTEP(i)->DOEPCTL = 0U; - 8007450: 693b ldr r3, [r7, #16] - 8007452: 015a lsls r2, r3, #5 - 8007454: 68fb ldr r3, [r7, #12] - 8007456: 4413 add r3, r2 - 8007458: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800745c: 461a mov r2, r3 - 800745e: 2300 movs r3, #0 - 8007460: 6013 str r3, [r2, #0] + 8007828: 693b ldr r3, [r7, #16] + 800782a: 015a lsls r2, r3, #5 + 800782c: 68fb ldr r3, [r7, #12] + 800782e: 4413 add r3, r2 + 8007830: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007834: 461a mov r2, r3 + 8007836: 2300 movs r3, #0 + 8007838: 6013 str r3, [r2, #0] } USBx_OUTEP(i)->DOEPTSIZ = 0U; - 8007462: 693b ldr r3, [r7, #16] - 8007464: 015a lsls r2, r3, #5 - 8007466: 68fb ldr r3, [r7, #12] - 8007468: 4413 add r3, r2 - 800746a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800746e: 461a mov r2, r3 - 8007470: 2300 movs r3, #0 - 8007472: 6113 str r3, [r2, #16] + 800783a: 693b ldr r3, [r7, #16] + 800783c: 015a lsls r2, r3, #5 + 800783e: 68fb ldr r3, [r7, #12] + 8007840: 4413 add r3, r2 + 8007842: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007846: 461a mov r2, r3 + 8007848: 2300 movs r3, #0 + 800784a: 6113 str r3, [r2, #16] USBx_OUTEP(i)->DOEPINT = 0xFB7FU; - 8007474: 693b ldr r3, [r7, #16] - 8007476: 015a lsls r2, r3, #5 - 8007478: 68fb ldr r3, [r7, #12] - 800747a: 4413 add r3, r2 - 800747c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007480: 461a mov r2, r3 - 8007482: f64f 337f movw r3, #64383 @ 0xfb7f - 8007486: 6093 str r3, [r2, #8] + 800784c: 693b ldr r3, [r7, #16] + 800784e: 015a lsls r2, r3, #5 + 8007850: 68fb ldr r3, [r7, #12] + 8007852: 4413 add r3, r2 + 8007854: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007858: 461a mov r2, r3 + 800785a: f64f 337f movw r3, #64383 @ 0xfb7f + 800785e: 6093 str r3, [r2, #8] for (i = 0U; i < cfg.dev_endpoints; i++) - 8007488: 693b ldr r3, [r7, #16] - 800748a: 3301 adds r3, #1 - 800748c: 613b str r3, [r7, #16] - 800748e: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 - 8007492: 461a mov r2, r3 - 8007494: 693b ldr r3, [r7, #16] - 8007496: 4293 cmp r3, r2 - 8007498: d3b5 bcc.n 8007406 + 8007860: 693b ldr r3, [r7, #16] + 8007862: 3301 adds r3, #1 + 8007864: 613b str r3, [r7, #16] + 8007866: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 + 800786a: 461a mov r2, r3 + 800786c: 693b ldr r3, [r7, #16] + 800786e: 4293 cmp r3, r2 + 8007870: d3b5 bcc.n 80077de } USBx_DEVICE->DIEPMSK &= ~(USB_OTG_DIEPMSK_TXFURM); - 800749a: 68fb ldr r3, [r7, #12] - 800749c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80074a0: 691b ldr r3, [r3, #16] - 80074a2: 68fa ldr r2, [r7, #12] - 80074a4: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80074a8: f423 7380 bic.w r3, r3, #256 @ 0x100 - 80074ac: 6113 str r3, [r2, #16] + 8007872: 68fb ldr r3, [r7, #12] + 8007874: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007878: 691b ldr r3, [r3, #16] + 800787a: 68fa ldr r2, [r7, #12] + 800787c: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8007880: f423 7380 bic.w r3, r3, #256 @ 0x100 + 8007884: 6113 str r3, [r2, #16] /* Disable all interrupts. */ USBx->GINTMSK = 0U; - 80074ae: 687b ldr r3, [r7, #4] - 80074b0: 2200 movs r2, #0 - 80074b2: 619a str r2, [r3, #24] + 8007886: 687b ldr r3, [r7, #4] + 8007888: 2200 movs r2, #0 + 800788a: 619a str r2, [r3, #24] /* Clear any pending interrupts */ USBx->GINTSTS = 0xBFFFFFFFU; - 80074b4: 687b ldr r3, [r7, #4] - 80074b6: f06f 4280 mvn.w r2, #1073741824 @ 0x40000000 - 80074ba: 615a str r2, [r3, #20] + 800788c: 687b ldr r3, [r7, #4] + 800788e: f06f 4280 mvn.w r2, #1073741824 @ 0x40000000 + 8007892: 615a str r2, [r3, #20] /* Enable the common interrupts */ if (cfg.dma_enable == 0U) - 80074bc: f897 3026 ldrb.w r3, [r7, #38] @ 0x26 - 80074c0: 2b00 cmp r3, #0 - 80074c2: d105 bne.n 80074d0 + 8007894: f897 3026 ldrb.w r3, [r7, #38] @ 0x26 + 8007898: 2b00 cmp r3, #0 + 800789a: d105 bne.n 80078a8 { USBx->GINTMSK |= USB_OTG_GINTMSK_RXFLVLM; - 80074c4: 687b ldr r3, [r7, #4] - 80074c6: 699b ldr r3, [r3, #24] - 80074c8: f043 0210 orr.w r2, r3, #16 - 80074cc: 687b ldr r3, [r7, #4] - 80074ce: 619a str r2, [r3, #24] + 800789c: 687b ldr r3, [r7, #4] + 800789e: 699b ldr r3, [r3, #24] + 80078a0: f043 0210 orr.w r2, r3, #16 + 80078a4: 687b ldr r3, [r7, #4] + 80078a6: 619a str r2, [r3, #24] } /* Enable interrupts matching to the Device mode ONLY */ USBx->GINTMSK |= USB_OTG_GINTMSK_USBSUSPM | USB_OTG_GINTMSK_USBRST | - 80074d0: 687b ldr r3, [r7, #4] - 80074d2: 699a ldr r2, [r3, #24] - 80074d4: 4b10 ldr r3, [pc, #64] @ (8007518 ) - 80074d6: 4313 orrs r3, r2 - 80074d8: 687a ldr r2, [r7, #4] - 80074da: 6193 str r3, [r2, #24] + 80078a8: 687b ldr r3, [r7, #4] + 80078aa: 699a ldr r2, [r3, #24] + 80078ac: 4b10 ldr r3, [pc, #64] @ (80078f0 ) + 80078ae: 4313 orrs r3, r2 + 80078b0: 687a ldr r2, [r7, #4] + 80078b2: 6193 str r3, [r2, #24] USB_OTG_GINTMSK_ENUMDNEM | USB_OTG_GINTMSK_IEPINT | USB_OTG_GINTMSK_OEPINT | USB_OTG_GINTMSK_IISOIXFRM | USB_OTG_GINTMSK_PXFRM_IISOOXFRM | USB_OTG_GINTMSK_WUIM; if (cfg.Sof_enable != 0U) - 80074dc: f897 302a ldrb.w r3, [r7, #42] @ 0x2a - 80074e0: 2b00 cmp r3, #0 - 80074e2: d005 beq.n 80074f0 + 80078b4: f897 302a ldrb.w r3, [r7, #42] @ 0x2a + 80078b8: 2b00 cmp r3, #0 + 80078ba: d005 beq.n 80078c8 { USBx->GINTMSK |= USB_OTG_GINTMSK_SOFM; - 80074e4: 687b ldr r3, [r7, #4] - 80074e6: 699b ldr r3, [r3, #24] - 80074e8: f043 0208 orr.w r2, r3, #8 - 80074ec: 687b ldr r3, [r7, #4] - 80074ee: 619a str r2, [r3, #24] + 80078bc: 687b ldr r3, [r7, #4] + 80078be: 699b ldr r3, [r3, #24] + 80078c0: f043 0208 orr.w r2, r3, #8 + 80078c4: 687b ldr r3, [r7, #4] + 80078c6: 619a str r2, [r3, #24] } if (cfg.vbus_sensing_enable == 1U) - 80074f0: f897 302e ldrb.w r3, [r7, #46] @ 0x2e - 80074f4: 2b01 cmp r3, #1 - 80074f6: d107 bne.n 8007508 + 80078c8: f897 302e ldrb.w r3, [r7, #46] @ 0x2e + 80078cc: 2b01 cmp r3, #1 + 80078ce: d107 bne.n 80078e0 { USBx->GINTMSK |= (USB_OTG_GINTMSK_SRQIM | USB_OTG_GINTMSK_OTGINT); - 80074f8: 687b ldr r3, [r7, #4] - 80074fa: 699b ldr r3, [r3, #24] - 80074fc: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007500: f043 0304 orr.w r3, r3, #4 - 8007504: 687a ldr r2, [r7, #4] - 8007506: 6193 str r3, [r2, #24] + 80078d0: 687b ldr r3, [r7, #4] + 80078d2: 699b ldr r3, [r3, #24] + 80078d4: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 80078d8: f043 0304 orr.w r3, r3, #4 + 80078dc: 687a ldr r2, [r7, #4] + 80078de: 6193 str r3, [r2, #24] } return ret; - 8007508: 7dfb ldrb r3, [r7, #23] + 80078e0: 7dfb ldrb r3, [r7, #23] } - 800750a: 4618 mov r0, r3 - 800750c: 3718 adds r7, #24 - 800750e: 46bd mov sp, r7 - 8007510: e8bd 4080 ldmia.w sp!, {r7, lr} - 8007514: b004 add sp, #16 - 8007516: 4770 bx lr - 8007518: 803c3800 .word 0x803c3800 + 80078e2: 4618 mov r0, r3 + 80078e4: 3718 adds r7, #24 + 80078e6: 46bd mov sp, r7 + 80078e8: e8bd 4080 ldmia.w sp!, {r7, lr} + 80078ec: b004 add sp, #16 + 80078ee: 4770 bx lr + 80078f0: 803c3800 .word 0x803c3800 -0800751c : +080078f4 : * This parameter can be a value from 1 to 15 15 means Flush all Tx FIFOs * @retval HAL status */ HAL_StatusTypeDef USB_FlushTxFifo(USB_OTG_GlobalTypeDef *USBx, uint32_t num) { - 800751c: b480 push {r7} - 800751e: b085 sub sp, #20 - 8007520: af00 add r7, sp, #0 - 8007522: 6078 str r0, [r7, #4] - 8007524: 6039 str r1, [r7, #0] + 80078f4: b480 push {r7} + 80078f6: b085 sub sp, #20 + 80078f8: af00 add r7, sp, #0 + 80078fa: 6078 str r0, [r7, #4] + 80078fc: 6039 str r1, [r7, #0] __IO uint32_t count = 0U; - 8007526: 2300 movs r3, #0 - 8007528: 60fb str r3, [r7, #12] + 80078fe: 2300 movs r3, #0 + 8007900: 60fb str r3, [r7, #12] /* Wait for AHB master IDLE state. */ do { count++; - 800752a: 68fb ldr r3, [r7, #12] - 800752c: 3301 adds r3, #1 - 800752e: 60fb str r3, [r7, #12] + 8007902: 68fb ldr r3, [r7, #12] + 8007904: 3301 adds r3, #1 + 8007906: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 8007530: 68fb ldr r3, [r7, #12] - 8007532: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 8007536: d901 bls.n 800753c + 8007908: 68fb ldr r3, [r7, #12] + 800790a: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 800790e: d901 bls.n 8007914 { return HAL_TIMEOUT; - 8007538: 2303 movs r3, #3 - 800753a: e01b b.n 8007574 + 8007910: 2303 movs r3, #3 + 8007912: e01b b.n 800794c } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U); - 800753c: 687b ldr r3, [r7, #4] - 800753e: 691b ldr r3, [r3, #16] - 8007540: 2b00 cmp r3, #0 - 8007542: daf2 bge.n 800752a + 8007914: 687b ldr r3, [r7, #4] + 8007916: 691b ldr r3, [r3, #16] + 8007918: 2b00 cmp r3, #0 + 800791a: daf2 bge.n 8007902 /* Flush TX Fifo */ count = 0U; - 8007544: 2300 movs r3, #0 - 8007546: 60fb str r3, [r7, #12] + 800791c: 2300 movs r3, #0 + 800791e: 60fb str r3, [r7, #12] USBx->GRSTCTL = (USB_OTG_GRSTCTL_TXFFLSH | (num << 6)); - 8007548: 683b ldr r3, [r7, #0] - 800754a: 019b lsls r3, r3, #6 - 800754c: f043 0220 orr.w r2, r3, #32 - 8007550: 687b ldr r3, [r7, #4] - 8007552: 611a str r2, [r3, #16] + 8007920: 683b ldr r3, [r7, #0] + 8007922: 019b lsls r3, r3, #6 + 8007924: f043 0220 orr.w r2, r3, #32 + 8007928: 687b ldr r3, [r7, #4] + 800792a: 611a str r2, [r3, #16] do { count++; - 8007554: 68fb ldr r3, [r7, #12] - 8007556: 3301 adds r3, #1 - 8007558: 60fb str r3, [r7, #12] + 800792c: 68fb ldr r3, [r7, #12] + 800792e: 3301 adds r3, #1 + 8007930: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 800755a: 68fb ldr r3, [r7, #12] - 800755c: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 8007560: d901 bls.n 8007566 + 8007932: 68fb ldr r3, [r7, #12] + 8007934: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8007938: d901 bls.n 800793e { return HAL_TIMEOUT; - 8007562: 2303 movs r3, #3 - 8007564: e006 b.n 8007574 + 800793a: 2303 movs r3, #3 + 800793c: e006 b.n 800794c } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_TXFFLSH) == USB_OTG_GRSTCTL_TXFFLSH); - 8007566: 687b ldr r3, [r7, #4] - 8007568: 691b ldr r3, [r3, #16] - 800756a: f003 0320 and.w r3, r3, #32 - 800756e: 2b20 cmp r3, #32 - 8007570: d0f0 beq.n 8007554 + 800793e: 687b ldr r3, [r7, #4] + 8007940: 691b ldr r3, [r3, #16] + 8007942: f003 0320 and.w r3, r3, #32 + 8007946: 2b20 cmp r3, #32 + 8007948: d0f0 beq.n 800792c return HAL_OK; - 8007572: 2300 movs r3, #0 + 800794a: 2300 movs r3, #0 } - 8007574: 4618 mov r0, r3 - 8007576: 3714 adds r7, #20 - 8007578: 46bd mov sp, r7 - 800757a: f85d 7b04 ldr.w r7, [sp], #4 - 800757e: 4770 bx lr + 800794c: 4618 mov r0, r3 + 800794e: 3714 adds r7, #20 + 8007950: 46bd mov sp, r7 + 8007952: f85d 7b04 ldr.w r7, [sp], #4 + 8007956: 4770 bx lr -08007580 : +08007958 : * @brief USB_FlushRxFifo Flush Rx FIFO * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_FlushRxFifo(USB_OTG_GlobalTypeDef *USBx) { - 8007580: b480 push {r7} - 8007582: b085 sub sp, #20 - 8007584: af00 add r7, sp, #0 - 8007586: 6078 str r0, [r7, #4] + 8007958: b480 push {r7} + 800795a: b085 sub sp, #20 + 800795c: af00 add r7, sp, #0 + 800795e: 6078 str r0, [r7, #4] __IO uint32_t count = 0U; - 8007588: 2300 movs r3, #0 - 800758a: 60fb str r3, [r7, #12] + 8007960: 2300 movs r3, #0 + 8007962: 60fb str r3, [r7, #12] /* Wait for AHB master IDLE state. */ do { count++; - 800758c: 68fb ldr r3, [r7, #12] - 800758e: 3301 adds r3, #1 - 8007590: 60fb str r3, [r7, #12] + 8007964: 68fb ldr r3, [r7, #12] + 8007966: 3301 adds r3, #1 + 8007968: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 8007592: 68fb ldr r3, [r7, #12] - 8007594: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 8007598: d901 bls.n 800759e + 800796a: 68fb ldr r3, [r7, #12] + 800796c: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8007970: d901 bls.n 8007976 { return HAL_TIMEOUT; - 800759a: 2303 movs r3, #3 - 800759c: e018 b.n 80075d0 + 8007972: 2303 movs r3, #3 + 8007974: e018 b.n 80079a8 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U); - 800759e: 687b ldr r3, [r7, #4] - 80075a0: 691b ldr r3, [r3, #16] - 80075a2: 2b00 cmp r3, #0 - 80075a4: daf2 bge.n 800758c + 8007976: 687b ldr r3, [r7, #4] + 8007978: 691b ldr r3, [r3, #16] + 800797a: 2b00 cmp r3, #0 + 800797c: daf2 bge.n 8007964 /* Flush RX Fifo */ count = 0U; - 80075a6: 2300 movs r3, #0 - 80075a8: 60fb str r3, [r7, #12] + 800797e: 2300 movs r3, #0 + 8007980: 60fb str r3, [r7, #12] USBx->GRSTCTL = USB_OTG_GRSTCTL_RXFFLSH; - 80075aa: 687b ldr r3, [r7, #4] - 80075ac: 2210 movs r2, #16 - 80075ae: 611a str r2, [r3, #16] + 8007982: 687b ldr r3, [r7, #4] + 8007984: 2210 movs r2, #16 + 8007986: 611a str r2, [r3, #16] do { count++; - 80075b0: 68fb ldr r3, [r7, #12] - 80075b2: 3301 adds r3, #1 - 80075b4: 60fb str r3, [r7, #12] + 8007988: 68fb ldr r3, [r7, #12] + 800798a: 3301 adds r3, #1 + 800798c: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 80075b6: 68fb ldr r3, [r7, #12] - 80075b8: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 80075bc: d901 bls.n 80075c2 + 800798e: 68fb ldr r3, [r7, #12] + 8007990: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8007994: d901 bls.n 800799a { return HAL_TIMEOUT; - 80075be: 2303 movs r3, #3 - 80075c0: e006 b.n 80075d0 + 8007996: 2303 movs r3, #3 + 8007998: e006 b.n 80079a8 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_RXFFLSH) == USB_OTG_GRSTCTL_RXFFLSH); - 80075c2: 687b ldr r3, [r7, #4] - 80075c4: 691b ldr r3, [r3, #16] - 80075c6: f003 0310 and.w r3, r3, #16 - 80075ca: 2b10 cmp r3, #16 - 80075cc: d0f0 beq.n 80075b0 + 800799a: 687b ldr r3, [r7, #4] + 800799c: 691b ldr r3, [r3, #16] + 800799e: f003 0310 and.w r3, r3, #16 + 80079a2: 2b10 cmp r3, #16 + 80079a4: d0f0 beq.n 8007988 return HAL_OK; - 80075ce: 2300 movs r3, #0 + 80079a6: 2300 movs r3, #0 } - 80075d0: 4618 mov r0, r3 - 80075d2: 3714 adds r7, #20 - 80075d4: 46bd mov sp, r7 - 80075d6: f85d 7b04 ldr.w r7, [sp], #4 - 80075da: 4770 bx lr + 80079a8: 4618 mov r0, r3 + 80079aa: 3714 adds r7, #20 + 80079ac: 46bd mov sp, r7 + 80079ae: f85d 7b04 ldr.w r7, [sp], #4 + 80079b2: 4770 bx lr -080075dc : +080079b4 : * @arg USB_OTG_SPEED_HIGH_IN_FULL: High speed core in Full Speed mode * @arg USB_OTG_SPEED_FULL: Full speed mode * @retval Hal status */ HAL_StatusTypeDef USB_SetDevSpeed(const USB_OTG_GlobalTypeDef *USBx, uint8_t speed) { - 80075dc: b480 push {r7} - 80075de: b085 sub sp, #20 - 80075e0: af00 add r7, sp, #0 - 80075e2: 6078 str r0, [r7, #4] - 80075e4: 460b mov r3, r1 - 80075e6: 70fb strb r3, [r7, #3] + 80079b4: b480 push {r7} + 80079b6: b085 sub sp, #20 + 80079b8: af00 add r7, sp, #0 + 80079ba: 6078 str r0, [r7, #4] + 80079bc: 460b mov r3, r1 + 80079be: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 80075e8: 687b ldr r3, [r7, #4] - 80075ea: 60fb str r3, [r7, #12] + 80079c0: 687b ldr r3, [r7, #4] + 80079c2: 60fb str r3, [r7, #12] USBx_DEVICE->DCFG |= speed; - 80075ec: 68fb ldr r3, [r7, #12] - 80075ee: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80075f2: 681a ldr r2, [r3, #0] - 80075f4: 78fb ldrb r3, [r7, #3] - 80075f6: 68f9 ldr r1, [r7, #12] - 80075f8: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80075fc: 4313 orrs r3, r2 - 80075fe: 600b str r3, [r1, #0] + 80079c4: 68fb ldr r3, [r7, #12] + 80079c6: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80079ca: 681a ldr r2, [r3, #0] + 80079cc: 78fb ldrb r3, [r7, #3] + 80079ce: 68f9 ldr r1, [r7, #12] + 80079d0: f501 6100 add.w r1, r1, #2048 @ 0x800 + 80079d4: 4313 orrs r3, r2 + 80079d6: 600b str r3, [r1, #0] return HAL_OK; - 8007600: 2300 movs r3, #0 + 80079d8: 2300 movs r3, #0 } - 8007602: 4618 mov r0, r3 - 8007604: 3714 adds r7, #20 - 8007606: 46bd mov sp, r7 - 8007608: f85d 7b04 ldr.w r7, [sp], #4 - 800760c: 4770 bx lr + 80079da: 4618 mov r0, r3 + 80079dc: 3714 adds r7, #20 + 80079de: 46bd mov sp, r7 + 80079e0: f85d 7b04 ldr.w r7, [sp], #4 + 80079e4: 4770 bx lr -0800760e : +080079e6 : * This parameter can be one of these values: * @arg USBD_HS_SPEED: High speed mode * @arg USBD_FS_SPEED: Full speed mode */ uint8_t USB_GetDevSpeed(const USB_OTG_GlobalTypeDef *USBx) { - 800760e: b480 push {r7} - 8007610: b087 sub sp, #28 - 8007612: af00 add r7, sp, #0 - 8007614: 6078 str r0, [r7, #4] + 80079e6: b480 push {r7} + 80079e8: b087 sub sp, #28 + 80079ea: af00 add r7, sp, #0 + 80079ec: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 8007616: 687b ldr r3, [r7, #4] - 8007618: 613b str r3, [r7, #16] + 80079ee: 687b ldr r3, [r7, #4] + 80079f0: 613b str r3, [r7, #16] uint8_t speed; uint32_t DevEnumSpeed = USBx_DEVICE->DSTS & USB_OTG_DSTS_ENUMSPD; - 800761a: 693b ldr r3, [r7, #16] - 800761c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007620: 689b ldr r3, [r3, #8] - 8007622: f003 0306 and.w r3, r3, #6 - 8007626: 60fb str r3, [r7, #12] + 80079f2: 693b ldr r3, [r7, #16] + 80079f4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80079f8: 689b ldr r3, [r3, #8] + 80079fa: f003 0306 and.w r3, r3, #6 + 80079fe: 60fb str r3, [r7, #12] if (DevEnumSpeed == DSTS_ENUMSPD_HS_PHY_30MHZ_OR_60MHZ) - 8007628: 68fb ldr r3, [r7, #12] - 800762a: 2b00 cmp r3, #0 - 800762c: d102 bne.n 8007634 + 8007a00: 68fb ldr r3, [r7, #12] + 8007a02: 2b00 cmp r3, #0 + 8007a04: d102 bne.n 8007a0c { speed = USBD_HS_SPEED; - 800762e: 2300 movs r3, #0 - 8007630: 75fb strb r3, [r7, #23] - 8007632: e00a b.n 800764a + 8007a06: 2300 movs r3, #0 + 8007a08: 75fb strb r3, [r7, #23] + 8007a0a: e00a b.n 8007a22 } else if ((DevEnumSpeed == DSTS_ENUMSPD_FS_PHY_30MHZ_OR_60MHZ) || - 8007634: 68fb ldr r3, [r7, #12] - 8007636: 2b02 cmp r3, #2 - 8007638: d002 beq.n 8007640 - 800763a: 68fb ldr r3, [r7, #12] - 800763c: 2b06 cmp r3, #6 - 800763e: d102 bne.n 8007646 + 8007a0c: 68fb ldr r3, [r7, #12] + 8007a0e: 2b02 cmp r3, #2 + 8007a10: d002 beq.n 8007a18 + 8007a12: 68fb ldr r3, [r7, #12] + 8007a14: 2b06 cmp r3, #6 + 8007a16: d102 bne.n 8007a1e (DevEnumSpeed == DSTS_ENUMSPD_FS_PHY_48MHZ)) { speed = USBD_FS_SPEED; - 8007640: 2302 movs r3, #2 - 8007642: 75fb strb r3, [r7, #23] - 8007644: e001 b.n 800764a + 8007a18: 2302 movs r3, #2 + 8007a1a: 75fb strb r3, [r7, #23] + 8007a1c: e001 b.n 8007a22 } else { speed = 0xFU; - 8007646: 230f movs r3, #15 - 8007648: 75fb strb r3, [r7, #23] + 8007a1e: 230f movs r3, #15 + 8007a20: 75fb strb r3, [r7, #23] } return speed; - 800764a: 7dfb ldrb r3, [r7, #23] + 8007a22: 7dfb ldrb r3, [r7, #23] } - 800764c: 4618 mov r0, r3 - 800764e: 371c adds r7, #28 - 8007650: 46bd mov sp, r7 - 8007652: f85d 7b04 ldr.w r7, [sp], #4 - 8007656: 4770 bx lr + 8007a24: 4618 mov r0, r3 + 8007a26: 371c adds r7, #28 + 8007a28: 46bd mov sp, r7 + 8007a2a: f85d 7b04 ldr.w r7, [sp], #4 + 8007a2e: 4770 bx lr -08007658 : +08007a30 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_ActivateEndpoint(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 8007658: b480 push {r7} - 800765a: b085 sub sp, #20 - 800765c: af00 add r7, sp, #0 - 800765e: 6078 str r0, [r7, #4] - 8007660: 6039 str r1, [r7, #0] + 8007a30: b480 push {r7} + 8007a32: b085 sub sp, #20 + 8007a34: af00 add r7, sp, #0 + 8007a36: 6078 str r0, [r7, #4] + 8007a38: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 8007662: 687b ldr r3, [r7, #4] - 8007664: 60fb str r3, [r7, #12] + 8007a3a: 687b ldr r3, [r7, #4] + 8007a3c: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 8007666: 683b ldr r3, [r7, #0] - 8007668: 781b ldrb r3, [r3, #0] - 800766a: 60bb str r3, [r7, #8] + 8007a3e: 683b ldr r3, [r7, #0] + 8007a40: 781b ldrb r3, [r3, #0] + 8007a42: 60bb str r3, [r7, #8] if (ep->is_in == 1U) - 800766c: 683b ldr r3, [r7, #0] - 800766e: 785b ldrb r3, [r3, #1] - 8007670: 2b01 cmp r3, #1 - 8007672: d13a bne.n 80076ea + 8007a44: 683b ldr r3, [r7, #0] + 8007a46: 785b ldrb r3, [r3, #1] + 8007a48: 2b01 cmp r3, #1 + 8007a4a: d13a bne.n 8007ac2 { USBx_DEVICE->DAINTMSK |= USB_OTG_DAINTMSK_IEPM & (uint32_t)(1UL << (ep->num & EP_ADDR_MSK)); - 8007674: 68fb ldr r3, [r7, #12] - 8007676: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800767a: 69da ldr r2, [r3, #28] - 800767c: 683b ldr r3, [r7, #0] - 800767e: 781b ldrb r3, [r3, #0] - 8007680: f003 030f and.w r3, r3, #15 - 8007684: 2101 movs r1, #1 - 8007686: fa01 f303 lsl.w r3, r1, r3 - 800768a: b29b uxth r3, r3 - 800768c: 68f9 ldr r1, [r7, #12] - 800768e: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007692: 4313 orrs r3, r2 - 8007694: 61cb str r3, [r1, #28] + 8007a4c: 68fb ldr r3, [r7, #12] + 8007a4e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007a52: 69da ldr r2, [r3, #28] + 8007a54: 683b ldr r3, [r7, #0] + 8007a56: 781b ldrb r3, [r3, #0] + 8007a58: f003 030f and.w r3, r3, #15 + 8007a5c: 2101 movs r1, #1 + 8007a5e: fa01 f303 lsl.w r3, r1, r3 + 8007a62: b29b uxth r3, r3 + 8007a64: 68f9 ldr r1, [r7, #12] + 8007a66: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007a6a: 4313 orrs r3, r2 + 8007a6c: 61cb str r3, [r1, #28] if ((USBx_INEP(epnum)->DIEPCTL & USB_OTG_DIEPCTL_USBAEP) == 0U) - 8007696: 68bb ldr r3, [r7, #8] - 8007698: 015a lsls r2, r3, #5 - 800769a: 68fb ldr r3, [r7, #12] - 800769c: 4413 add r3, r2 - 800769e: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80076a2: 681b ldr r3, [r3, #0] - 80076a4: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 80076a8: 2b00 cmp r3, #0 - 80076aa: d155 bne.n 8007758 + 8007a6e: 68bb ldr r3, [r7, #8] + 8007a70: 015a lsls r2, r3, #5 + 8007a72: 68fb ldr r3, [r7, #12] + 8007a74: 4413 add r3, r2 + 8007a76: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007a7a: 681b ldr r3, [r3, #0] + 8007a7c: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8007a80: 2b00 cmp r3, #0 + 8007a82: d155 bne.n 8007b30 { USBx_INEP(epnum)->DIEPCTL |= (ep->maxpacket & USB_OTG_DIEPCTL_MPSIZ) | - 80076ac: 68bb ldr r3, [r7, #8] - 80076ae: 015a lsls r2, r3, #5 - 80076b0: 68fb ldr r3, [r7, #12] - 80076b2: 4413 add r3, r2 - 80076b4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80076b8: 681a ldr r2, [r3, #0] - 80076ba: 683b ldr r3, [r7, #0] - 80076bc: 689b ldr r3, [r3, #8] - 80076be: f3c3 010a ubfx r1, r3, #0, #11 + 8007a84: 68bb ldr r3, [r7, #8] + 8007a86: 015a lsls r2, r3, #5 + 8007a88: 68fb ldr r3, [r7, #12] + 8007a8a: 4413 add r3, r2 + 8007a8c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007a90: 681a ldr r2, [r3, #0] + 8007a92: 683b ldr r3, [r7, #0] + 8007a94: 689b ldr r3, [r3, #8] + 8007a96: f3c3 010a ubfx r1, r3, #0, #11 ((uint32_t)ep->type << 18) | (epnum << 22) | - 80076c2: 683b ldr r3, [r7, #0] - 80076c4: 791b ldrb r3, [r3, #4] - 80076c6: 049b lsls r3, r3, #18 + 8007a9a: 683b ldr r3, [r7, #0] + 8007a9c: 791b ldrb r3, [r3, #4] + 8007a9e: 049b lsls r3, r3, #18 USBx_INEP(epnum)->DIEPCTL |= (ep->maxpacket & USB_OTG_DIEPCTL_MPSIZ) | - 80076c8: 4319 orrs r1, r3 + 8007aa0: 4319 orrs r1, r3 ((uint32_t)ep->type << 18) | (epnum << 22) | - 80076ca: 68bb ldr r3, [r7, #8] - 80076cc: 059b lsls r3, r3, #22 - 80076ce: 430b orrs r3, r1 + 8007aa2: 68bb ldr r3, [r7, #8] + 8007aa4: 059b lsls r3, r3, #22 + 8007aa6: 430b orrs r3, r1 USBx_INEP(epnum)->DIEPCTL |= (ep->maxpacket & USB_OTG_DIEPCTL_MPSIZ) | - 80076d0: 4313 orrs r3, r2 - 80076d2: 68ba ldr r2, [r7, #8] - 80076d4: 0151 lsls r1, r2, #5 - 80076d6: 68fa ldr r2, [r7, #12] - 80076d8: 440a add r2, r1 - 80076da: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80076de: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 80076e2: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 80076e6: 6013 str r3, [r2, #0] - 80076e8: e036 b.n 8007758 + 8007aa8: 4313 orrs r3, r2 + 8007aaa: 68ba ldr r2, [r7, #8] + 8007aac: 0151 lsls r1, r2, #5 + 8007aae: 68fa ldr r2, [r7, #12] + 8007ab0: 440a add r2, r1 + 8007ab2: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007ab6: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007aba: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 8007abe: 6013 str r3, [r2, #0] + 8007ac0: e036 b.n 8007b30 USB_OTG_DIEPCTL_USBAEP; } } else { USBx_DEVICE->DAINTMSK |= USB_OTG_DAINTMSK_OEPM & ((uint32_t)(1UL << (ep->num & EP_ADDR_MSK)) << 16); - 80076ea: 68fb ldr r3, [r7, #12] - 80076ec: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80076f0: 69da ldr r2, [r3, #28] - 80076f2: 683b ldr r3, [r7, #0] - 80076f4: 781b ldrb r3, [r3, #0] - 80076f6: f003 030f and.w r3, r3, #15 - 80076fa: 2101 movs r1, #1 - 80076fc: fa01 f303 lsl.w r3, r1, r3 - 8007700: 041b lsls r3, r3, #16 - 8007702: 68f9 ldr r1, [r7, #12] - 8007704: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007708: 4313 orrs r3, r2 - 800770a: 61cb str r3, [r1, #28] + 8007ac2: 68fb ldr r3, [r7, #12] + 8007ac4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007ac8: 69da ldr r2, [r3, #28] + 8007aca: 683b ldr r3, [r7, #0] + 8007acc: 781b ldrb r3, [r3, #0] + 8007ace: f003 030f and.w r3, r3, #15 + 8007ad2: 2101 movs r1, #1 + 8007ad4: fa01 f303 lsl.w r3, r1, r3 + 8007ad8: 041b lsls r3, r3, #16 + 8007ada: 68f9 ldr r1, [r7, #12] + 8007adc: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007ae0: 4313 orrs r3, r2 + 8007ae2: 61cb str r3, [r1, #28] if (((USBx_OUTEP(epnum)->DOEPCTL) & USB_OTG_DOEPCTL_USBAEP) == 0U) - 800770c: 68bb ldr r3, [r7, #8] - 800770e: 015a lsls r2, r3, #5 - 8007710: 68fb ldr r3, [r7, #12] - 8007712: 4413 add r3, r2 - 8007714: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007718: 681b ldr r3, [r3, #0] - 800771a: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 800771e: 2b00 cmp r3, #0 - 8007720: d11a bne.n 8007758 + 8007ae4: 68bb ldr r3, [r7, #8] + 8007ae6: 015a lsls r2, r3, #5 + 8007ae8: 68fb ldr r3, [r7, #12] + 8007aea: 4413 add r3, r2 + 8007aec: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007af0: 681b ldr r3, [r3, #0] + 8007af2: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8007af6: 2b00 cmp r3, #0 + 8007af8: d11a bne.n 8007b30 { USBx_OUTEP(epnum)->DOEPCTL |= (ep->maxpacket & USB_OTG_DOEPCTL_MPSIZ) | - 8007722: 68bb ldr r3, [r7, #8] - 8007724: 015a lsls r2, r3, #5 - 8007726: 68fb ldr r3, [r7, #12] - 8007728: 4413 add r3, r2 - 800772a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800772e: 681a ldr r2, [r3, #0] - 8007730: 683b ldr r3, [r7, #0] - 8007732: 689b ldr r3, [r3, #8] - 8007734: f3c3 010a ubfx r1, r3, #0, #11 + 8007afa: 68bb ldr r3, [r7, #8] + 8007afc: 015a lsls r2, r3, #5 + 8007afe: 68fb ldr r3, [r7, #12] + 8007b00: 4413 add r3, r2 + 8007b02: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007b06: 681a ldr r2, [r3, #0] + 8007b08: 683b ldr r3, [r7, #0] + 8007b0a: 689b ldr r3, [r3, #8] + 8007b0c: f3c3 010a ubfx r1, r3, #0, #11 ((uint32_t)ep->type << 18) | - 8007738: 683b ldr r3, [r7, #0] - 800773a: 791b ldrb r3, [r3, #4] - 800773c: 049b lsls r3, r3, #18 + 8007b10: 683b ldr r3, [r7, #0] + 8007b12: 791b ldrb r3, [r3, #4] + 8007b14: 049b lsls r3, r3, #18 USBx_OUTEP(epnum)->DOEPCTL |= (ep->maxpacket & USB_OTG_DOEPCTL_MPSIZ) | - 800773e: 430b orrs r3, r1 - 8007740: 4313 orrs r3, r2 - 8007742: 68ba ldr r2, [r7, #8] - 8007744: 0151 lsls r1, r2, #5 - 8007746: 68fa ldr r2, [r7, #12] - 8007748: 440a add r2, r1 - 800774a: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 800774e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007752: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 8007756: 6013 str r3, [r2, #0] + 8007b16: 430b orrs r3, r1 + 8007b18: 4313 orrs r3, r2 + 8007b1a: 68ba ldr r2, [r7, #8] + 8007b1c: 0151 lsls r1, r2, #5 + 8007b1e: 68fa ldr r2, [r7, #12] + 8007b20: 440a add r2, r1 + 8007b22: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007b26: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007b2a: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 8007b2e: 6013 str r3, [r2, #0] USB_OTG_DIEPCTL_SD0PID_SEVNFRM | USB_OTG_DOEPCTL_USBAEP; } } return HAL_OK; - 8007758: 2300 movs r3, #0 + 8007b30: 2300 movs r3, #0 } - 800775a: 4618 mov r0, r3 - 800775c: 3714 adds r7, #20 - 800775e: 46bd mov sp, r7 - 8007760: f85d 7b04 ldr.w r7, [sp], #4 - 8007764: 4770 bx lr + 8007b32: 4618 mov r0, r3 + 8007b34: 3714 adds r7, #20 + 8007b36: 46bd mov sp, r7 + 8007b38: f85d 7b04 ldr.w r7, [sp], #4 + 8007b3c: 4770 bx lr ... -08007768 : +08007b40 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_DeactivateEndpoint(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 8007768: b480 push {r7} - 800776a: b085 sub sp, #20 - 800776c: af00 add r7, sp, #0 - 800776e: 6078 str r0, [r7, #4] - 8007770: 6039 str r1, [r7, #0] + 8007b40: b480 push {r7} + 8007b42: b085 sub sp, #20 + 8007b44: af00 add r7, sp, #0 + 8007b46: 6078 str r0, [r7, #4] + 8007b48: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 8007772: 687b ldr r3, [r7, #4] - 8007774: 60fb str r3, [r7, #12] + 8007b4a: 687b ldr r3, [r7, #4] + 8007b4c: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 8007776: 683b ldr r3, [r7, #0] - 8007778: 781b ldrb r3, [r3, #0] - 800777a: 60bb str r3, [r7, #8] + 8007b4e: 683b ldr r3, [r7, #0] + 8007b50: 781b ldrb r3, [r3, #0] + 8007b52: 60bb str r3, [r7, #8] /* Read DEPCTLn register */ if (ep->is_in == 1U) - 800777c: 683b ldr r3, [r7, #0] - 800777e: 785b ldrb r3, [r3, #1] - 8007780: 2b01 cmp r3, #1 - 8007782: d161 bne.n 8007848 + 8007b54: 683b ldr r3, [r7, #0] + 8007b56: 785b ldrb r3, [r3, #1] + 8007b58: 2b01 cmp r3, #1 + 8007b5a: d161 bne.n 8007c20 { if ((USBx_INEP(epnum)->DIEPCTL & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA) - 8007784: 68bb ldr r3, [r7, #8] - 8007786: 015a lsls r2, r3, #5 - 8007788: 68fb ldr r3, [r7, #12] - 800778a: 4413 add r3, r2 - 800778c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007790: 681b ldr r3, [r3, #0] - 8007792: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007796: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 800779a: d11f bne.n 80077dc + 8007b5c: 68bb ldr r3, [r7, #8] + 8007b5e: 015a lsls r2, r3, #5 + 8007b60: 68fb ldr r3, [r7, #12] + 8007b62: 4413 add r3, r2 + 8007b64: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007b68: 681b ldr r3, [r3, #0] + 8007b6a: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007b6e: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007b72: d11f bne.n 8007bb4 { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SNAK; - 800779c: 68bb ldr r3, [r7, #8] - 800779e: 015a lsls r2, r3, #5 - 80077a0: 68fb ldr r3, [r7, #12] - 80077a2: 4413 add r3, r2 - 80077a4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80077a8: 681b ldr r3, [r3, #0] - 80077aa: 68ba ldr r2, [r7, #8] - 80077ac: 0151 lsls r1, r2, #5 - 80077ae: 68fa ldr r2, [r7, #12] - 80077b0: 440a add r2, r1 - 80077b2: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80077b6: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 80077ba: 6013 str r3, [r2, #0] + 8007b74: 68bb ldr r3, [r7, #8] + 8007b76: 015a lsls r2, r3, #5 + 8007b78: 68fb ldr r3, [r7, #12] + 8007b7a: 4413 add r3, r2 + 8007b7c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007b80: 681b ldr r3, [r3, #0] + 8007b82: 68ba ldr r2, [r7, #8] + 8007b84: 0151 lsls r1, r2, #5 + 8007b86: 68fa ldr r2, [r7, #12] + 8007b88: 440a add r2, r1 + 8007b8a: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007b8e: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 8007b92: 6013 str r3, [r2, #0] USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_EPDIS; - 80077bc: 68bb ldr r3, [r7, #8] - 80077be: 015a lsls r2, r3, #5 - 80077c0: 68fb ldr r3, [r7, #12] - 80077c2: 4413 add r3, r2 - 80077c4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80077c8: 681b ldr r3, [r3, #0] - 80077ca: 68ba ldr r2, [r7, #8] - 80077cc: 0151 lsls r1, r2, #5 - 80077ce: 68fa ldr r2, [r7, #12] - 80077d0: 440a add r2, r1 - 80077d2: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80077d6: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 80077da: 6013 str r3, [r2, #0] + 8007b94: 68bb ldr r3, [r7, #8] + 8007b96: 015a lsls r2, r3, #5 + 8007b98: 68fb ldr r3, [r7, #12] + 8007b9a: 4413 add r3, r2 + 8007b9c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007ba0: 681b ldr r3, [r3, #0] + 8007ba2: 68ba ldr r2, [r7, #8] + 8007ba4: 0151 lsls r1, r2, #5 + 8007ba6: 68fa ldr r2, [r7, #12] + 8007ba8: 440a add r2, r1 + 8007baa: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007bae: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 8007bb2: 6013 str r3, [r2, #0] } USBx_DEVICE->DEACHMSK &= ~(USB_OTG_DAINTMSK_IEPM & (uint32_t)(1UL << (ep->num & EP_ADDR_MSK))); - 80077dc: 68fb ldr r3, [r7, #12] - 80077de: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80077e2: 6bda ldr r2, [r3, #60] @ 0x3c - 80077e4: 683b ldr r3, [r7, #0] - 80077e6: 781b ldrb r3, [r3, #0] - 80077e8: f003 030f and.w r3, r3, #15 - 80077ec: 2101 movs r1, #1 - 80077ee: fa01 f303 lsl.w r3, r1, r3 - 80077f2: b29b uxth r3, r3 - 80077f4: 43db mvns r3, r3 - 80077f6: 68f9 ldr r1, [r7, #12] - 80077f8: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80077fc: 4013 ands r3, r2 - 80077fe: 63cb str r3, [r1, #60] @ 0x3c + 8007bb4: 68fb ldr r3, [r7, #12] + 8007bb6: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007bba: 6bda ldr r2, [r3, #60] @ 0x3c + 8007bbc: 683b ldr r3, [r7, #0] + 8007bbe: 781b ldrb r3, [r3, #0] + 8007bc0: f003 030f and.w r3, r3, #15 + 8007bc4: 2101 movs r1, #1 + 8007bc6: fa01 f303 lsl.w r3, r1, r3 + 8007bca: b29b uxth r3, r3 + 8007bcc: 43db mvns r3, r3 + 8007bce: 68f9 ldr r1, [r7, #12] + 8007bd0: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007bd4: 4013 ands r3, r2 + 8007bd6: 63cb str r3, [r1, #60] @ 0x3c USBx_DEVICE->DAINTMSK &= ~(USB_OTG_DAINTMSK_IEPM & (uint32_t)(1UL << (ep->num & EP_ADDR_MSK))); - 8007800: 68fb ldr r3, [r7, #12] - 8007802: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007806: 69da ldr r2, [r3, #28] - 8007808: 683b ldr r3, [r7, #0] - 800780a: 781b ldrb r3, [r3, #0] - 800780c: f003 030f and.w r3, r3, #15 - 8007810: 2101 movs r1, #1 - 8007812: fa01 f303 lsl.w r3, r1, r3 - 8007816: b29b uxth r3, r3 - 8007818: 43db mvns r3, r3 - 800781a: 68f9 ldr r1, [r7, #12] - 800781c: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007820: 4013 ands r3, r2 - 8007822: 61cb str r3, [r1, #28] + 8007bd8: 68fb ldr r3, [r7, #12] + 8007bda: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007bde: 69da ldr r2, [r3, #28] + 8007be0: 683b ldr r3, [r7, #0] + 8007be2: 781b ldrb r3, [r3, #0] + 8007be4: f003 030f and.w r3, r3, #15 + 8007be8: 2101 movs r1, #1 + 8007bea: fa01 f303 lsl.w r3, r1, r3 + 8007bee: b29b uxth r3, r3 + 8007bf0: 43db mvns r3, r3 + 8007bf2: 68f9 ldr r1, [r7, #12] + 8007bf4: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007bf8: 4013 ands r3, r2 + 8007bfa: 61cb str r3, [r1, #28] USBx_INEP(epnum)->DIEPCTL &= ~(USB_OTG_DIEPCTL_USBAEP | - 8007824: 68bb ldr r3, [r7, #8] - 8007826: 015a lsls r2, r3, #5 - 8007828: 68fb ldr r3, [r7, #12] - 800782a: 4413 add r3, r2 - 800782c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007830: 681a ldr r2, [r3, #0] - 8007832: 68bb ldr r3, [r7, #8] - 8007834: 0159 lsls r1, r3, #5 - 8007836: 68fb ldr r3, [r7, #12] - 8007838: 440b add r3, r1 - 800783a: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800783e: 4619 mov r1, r3 - 8007840: 4b35 ldr r3, [pc, #212] @ (8007918 ) - 8007842: 4013 ands r3, r2 - 8007844: 600b str r3, [r1, #0] - 8007846: e060 b.n 800790a + 8007bfc: 68bb ldr r3, [r7, #8] + 8007bfe: 015a lsls r2, r3, #5 + 8007c00: 68fb ldr r3, [r7, #12] + 8007c02: 4413 add r3, r2 + 8007c04: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007c08: 681a ldr r2, [r3, #0] + 8007c0a: 68bb ldr r3, [r7, #8] + 8007c0c: 0159 lsls r1, r3, #5 + 8007c0e: 68fb ldr r3, [r7, #12] + 8007c10: 440b add r3, r1 + 8007c12: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007c16: 4619 mov r1, r3 + 8007c18: 4b35 ldr r3, [pc, #212] @ (8007cf0 ) + 8007c1a: 4013 ands r3, r2 + 8007c1c: 600b str r3, [r1, #0] + 8007c1e: e060 b.n 8007ce2 USB_OTG_DIEPCTL_SD0PID_SEVNFRM | USB_OTG_DIEPCTL_EPTYP); } else { if ((USBx_OUTEP(epnum)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8007848: 68bb ldr r3, [r7, #8] - 800784a: 015a lsls r2, r3, #5 - 800784c: 68fb ldr r3, [r7, #12] - 800784e: 4413 add r3, r2 - 8007850: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007854: 681b ldr r3, [r3, #0] - 8007856: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 800785a: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 800785e: d11f bne.n 80078a0 + 8007c20: 68bb ldr r3, [r7, #8] + 8007c22: 015a lsls r2, r3, #5 + 8007c24: 68fb ldr r3, [r7, #12] + 8007c26: 4413 add r3, r2 + 8007c28: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007c2c: 681b ldr r3, [r3, #0] + 8007c2e: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007c32: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007c36: d11f bne.n 8007c78 { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SNAK; - 8007860: 68bb ldr r3, [r7, #8] - 8007862: 015a lsls r2, r3, #5 - 8007864: 68fb ldr r3, [r7, #12] - 8007866: 4413 add r3, r2 - 8007868: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800786c: 681b ldr r3, [r3, #0] - 800786e: 68ba ldr r2, [r7, #8] - 8007870: 0151 lsls r1, r2, #5 - 8007872: 68fa ldr r2, [r7, #12] - 8007874: 440a add r2, r1 - 8007876: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 800787a: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 800787e: 6013 str r3, [r2, #0] + 8007c38: 68bb ldr r3, [r7, #8] + 8007c3a: 015a lsls r2, r3, #5 + 8007c3c: 68fb ldr r3, [r7, #12] + 8007c3e: 4413 add r3, r2 + 8007c40: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007c44: 681b ldr r3, [r3, #0] + 8007c46: 68ba ldr r2, [r7, #8] + 8007c48: 0151 lsls r1, r2, #5 + 8007c4a: 68fa ldr r2, [r7, #12] + 8007c4c: 440a add r2, r1 + 8007c4e: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007c52: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 8007c56: 6013 str r3, [r2, #0] USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_EPDIS; - 8007880: 68bb ldr r3, [r7, #8] - 8007882: 015a lsls r2, r3, #5 - 8007884: 68fb ldr r3, [r7, #12] - 8007886: 4413 add r3, r2 - 8007888: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800788c: 681b ldr r3, [r3, #0] - 800788e: 68ba ldr r2, [r7, #8] - 8007890: 0151 lsls r1, r2, #5 - 8007892: 68fa ldr r2, [r7, #12] - 8007894: 440a add r2, r1 - 8007896: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 800789a: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 800789e: 6013 str r3, [r2, #0] + 8007c58: 68bb ldr r3, [r7, #8] + 8007c5a: 015a lsls r2, r3, #5 + 8007c5c: 68fb ldr r3, [r7, #12] + 8007c5e: 4413 add r3, r2 + 8007c60: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007c64: 681b ldr r3, [r3, #0] + 8007c66: 68ba ldr r2, [r7, #8] + 8007c68: 0151 lsls r1, r2, #5 + 8007c6a: 68fa ldr r2, [r7, #12] + 8007c6c: 440a add r2, r1 + 8007c6e: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007c72: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 8007c76: 6013 str r3, [r2, #0] } USBx_DEVICE->DEACHMSK &= ~(USB_OTG_DAINTMSK_OEPM & ((uint32_t)(1UL << (ep->num & EP_ADDR_MSK)) << 16)); - 80078a0: 68fb ldr r3, [r7, #12] - 80078a2: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80078a6: 6bda ldr r2, [r3, #60] @ 0x3c - 80078a8: 683b ldr r3, [r7, #0] - 80078aa: 781b ldrb r3, [r3, #0] - 80078ac: f003 030f and.w r3, r3, #15 - 80078b0: 2101 movs r1, #1 - 80078b2: fa01 f303 lsl.w r3, r1, r3 - 80078b6: 041b lsls r3, r3, #16 - 80078b8: 43db mvns r3, r3 - 80078ba: 68f9 ldr r1, [r7, #12] - 80078bc: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80078c0: 4013 ands r3, r2 - 80078c2: 63cb str r3, [r1, #60] @ 0x3c + 8007c78: 68fb ldr r3, [r7, #12] + 8007c7a: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007c7e: 6bda ldr r2, [r3, #60] @ 0x3c + 8007c80: 683b ldr r3, [r7, #0] + 8007c82: 781b ldrb r3, [r3, #0] + 8007c84: f003 030f and.w r3, r3, #15 + 8007c88: 2101 movs r1, #1 + 8007c8a: fa01 f303 lsl.w r3, r1, r3 + 8007c8e: 041b lsls r3, r3, #16 + 8007c90: 43db mvns r3, r3 + 8007c92: 68f9 ldr r1, [r7, #12] + 8007c94: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007c98: 4013 ands r3, r2 + 8007c9a: 63cb str r3, [r1, #60] @ 0x3c USBx_DEVICE->DAINTMSK &= ~(USB_OTG_DAINTMSK_OEPM & ((uint32_t)(1UL << (ep->num & EP_ADDR_MSK)) << 16)); - 80078c4: 68fb ldr r3, [r7, #12] - 80078c6: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80078ca: 69da ldr r2, [r3, #28] - 80078cc: 683b ldr r3, [r7, #0] - 80078ce: 781b ldrb r3, [r3, #0] - 80078d0: f003 030f and.w r3, r3, #15 - 80078d4: 2101 movs r1, #1 - 80078d6: fa01 f303 lsl.w r3, r1, r3 - 80078da: 041b lsls r3, r3, #16 - 80078dc: 43db mvns r3, r3 - 80078de: 68f9 ldr r1, [r7, #12] - 80078e0: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80078e4: 4013 ands r3, r2 - 80078e6: 61cb str r3, [r1, #28] + 8007c9c: 68fb ldr r3, [r7, #12] + 8007c9e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007ca2: 69da ldr r2, [r3, #28] + 8007ca4: 683b ldr r3, [r7, #0] + 8007ca6: 781b ldrb r3, [r3, #0] + 8007ca8: f003 030f and.w r3, r3, #15 + 8007cac: 2101 movs r1, #1 + 8007cae: fa01 f303 lsl.w r3, r1, r3 + 8007cb2: 041b lsls r3, r3, #16 + 8007cb4: 43db mvns r3, r3 + 8007cb6: 68f9 ldr r1, [r7, #12] + 8007cb8: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007cbc: 4013 ands r3, r2 + 8007cbe: 61cb str r3, [r1, #28] USBx_OUTEP(epnum)->DOEPCTL &= ~(USB_OTG_DOEPCTL_USBAEP | - 80078e8: 68bb ldr r3, [r7, #8] - 80078ea: 015a lsls r2, r3, #5 - 80078ec: 68fb ldr r3, [r7, #12] - 80078ee: 4413 add r3, r2 - 80078f0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80078f4: 681a ldr r2, [r3, #0] - 80078f6: 68bb ldr r3, [r7, #8] - 80078f8: 0159 lsls r1, r3, #5 - 80078fa: 68fb ldr r3, [r7, #12] - 80078fc: 440b add r3, r1 - 80078fe: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007902: 4619 mov r1, r3 - 8007904: 4b05 ldr r3, [pc, #20] @ (800791c ) - 8007906: 4013 ands r3, r2 - 8007908: 600b str r3, [r1, #0] + 8007cc0: 68bb ldr r3, [r7, #8] + 8007cc2: 015a lsls r2, r3, #5 + 8007cc4: 68fb ldr r3, [r7, #12] + 8007cc6: 4413 add r3, r2 + 8007cc8: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007ccc: 681a ldr r2, [r3, #0] + 8007cce: 68bb ldr r3, [r7, #8] + 8007cd0: 0159 lsls r1, r3, #5 + 8007cd2: 68fb ldr r3, [r7, #12] + 8007cd4: 440b add r3, r1 + 8007cd6: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007cda: 4619 mov r1, r3 + 8007cdc: 4b05 ldr r3, [pc, #20] @ (8007cf4 ) + 8007cde: 4013 ands r3, r2 + 8007ce0: 600b str r3, [r1, #0] USB_OTG_DOEPCTL_MPSIZ | USB_OTG_DOEPCTL_SD0PID_SEVNFRM | USB_OTG_DOEPCTL_EPTYP); } return HAL_OK; - 800790a: 2300 movs r3, #0 + 8007ce2: 2300 movs r3, #0 } - 800790c: 4618 mov r0, r3 - 800790e: 3714 adds r7, #20 - 8007910: 46bd mov sp, r7 - 8007912: f85d 7b04 ldr.w r7, [sp], #4 - 8007916: 4770 bx lr - 8007918: ec337800 .word 0xec337800 - 800791c: eff37800 .word 0xeff37800 + 8007ce4: 4618 mov r0, r3 + 8007ce6: 3714 adds r7, #20 + 8007ce8: 46bd mov sp, r7 + 8007cea: f85d 7b04 ldr.w r7, [sp], #4 + 8007cee: 4770 bx lr + 8007cf0: ec337800 .word 0xec337800 + 8007cf4: eff37800 .word 0xeff37800 -08007920 : +08007cf8 : * 0 : DMA feature not used * 1 : DMA feature used * @retval HAL status */ HAL_StatusTypeDef USB_EPStartXfer(USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep, uint8_t dma) { - 8007920: b580 push {r7, lr} - 8007922: b08a sub sp, #40 @ 0x28 - 8007924: af02 add r7, sp, #8 - 8007926: 60f8 str r0, [r7, #12] - 8007928: 60b9 str r1, [r7, #8] - 800792a: 4613 mov r3, r2 - 800792c: 71fb strb r3, [r7, #7] + 8007cf8: b580 push {r7, lr} + 8007cfa: b08a sub sp, #40 @ 0x28 + 8007cfc: af02 add r7, sp, #8 + 8007cfe: 60f8 str r0, [r7, #12] + 8007d00: 60b9 str r1, [r7, #8] + 8007d02: 4613 mov r3, r2 + 8007d04: 71fb strb r3, [r7, #7] uint32_t USBx_BASE = (uint32_t)USBx; - 800792e: 68fb ldr r3, [r7, #12] - 8007930: 61fb str r3, [r7, #28] + 8007d06: 68fb ldr r3, [r7, #12] + 8007d08: 61fb str r3, [r7, #28] uint32_t epnum = (uint32_t)ep->num; - 8007932: 68bb ldr r3, [r7, #8] - 8007934: 781b ldrb r3, [r3, #0] - 8007936: 61bb str r3, [r7, #24] + 8007d0a: 68bb ldr r3, [r7, #8] + 8007d0c: 781b ldrb r3, [r3, #0] + 8007d0e: 61bb str r3, [r7, #24] uint16_t pktcnt; /* IN endpoint */ if (ep->is_in == 1U) - 8007938: 68bb ldr r3, [r7, #8] - 800793a: 785b ldrb r3, [r3, #1] - 800793c: 2b01 cmp r3, #1 - 800793e: f040 817f bne.w 8007c40 + 8007d10: 68bb ldr r3, [r7, #8] + 8007d12: 785b ldrb r3, [r3, #1] + 8007d14: 2b01 cmp r3, #1 + 8007d16: f040 817f bne.w 8008018 { /* Zero Length Packet? */ if (ep->xfer_len == 0U) - 8007942: 68bb ldr r3, [r7, #8] - 8007944: 691b ldr r3, [r3, #16] - 8007946: 2b00 cmp r3, #0 - 8007948: d132 bne.n 80079b0 + 8007d1a: 68bb ldr r3, [r7, #8] + 8007d1c: 691b ldr r3, [r3, #16] + 8007d1e: 2b00 cmp r3, #0 + 8007d20: d132 bne.n 8007d88 { USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_PKTCNT); - 800794a: 69bb ldr r3, [r7, #24] - 800794c: 015a lsls r2, r3, #5 - 800794e: 69fb ldr r3, [r7, #28] - 8007950: 4413 add r3, r2 - 8007952: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007956: 691b ldr r3, [r3, #16] - 8007958: 69ba ldr r2, [r7, #24] - 800795a: 0151 lsls r1, r2, #5 - 800795c: 69fa ldr r2, [r7, #28] - 800795e: 440a add r2, r1 - 8007960: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007964: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 - 8007968: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 - 800796c: 6113 str r3, [r2, #16] + 8007d22: 69bb ldr r3, [r7, #24] + 8007d24: 015a lsls r2, r3, #5 + 8007d26: 69fb ldr r3, [r7, #28] + 8007d28: 4413 add r3, r2 + 8007d2a: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d2e: 691b ldr r3, [r3, #16] + 8007d30: 69ba ldr r2, [r7, #24] + 8007d32: 0151 lsls r1, r2, #5 + 8007d34: 69fa ldr r2, [r7, #28] + 8007d36: 440a add r2, r1 + 8007d38: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007d3c: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 + 8007d40: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 + 8007d44: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_PKTCNT & (1U << 19)); - 800796e: 69bb ldr r3, [r7, #24] - 8007970: 015a lsls r2, r3, #5 - 8007972: 69fb ldr r3, [r7, #28] - 8007974: 4413 add r3, r2 - 8007976: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800797a: 691b ldr r3, [r3, #16] - 800797c: 69ba ldr r2, [r7, #24] - 800797e: 0151 lsls r1, r2, #5 - 8007980: 69fa ldr r2, [r7, #28] - 8007982: 440a add r2, r1 - 8007984: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007988: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 800798c: 6113 str r3, [r2, #16] + 8007d46: 69bb ldr r3, [r7, #24] + 8007d48: 015a lsls r2, r3, #5 + 8007d4a: 69fb ldr r3, [r7, #28] + 8007d4c: 4413 add r3, r2 + 8007d4e: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d52: 691b ldr r3, [r3, #16] + 8007d54: 69ba ldr r2, [r7, #24] + 8007d56: 0151 lsls r1, r2, #5 + 8007d58: 69fa ldr r2, [r7, #28] + 8007d5a: 440a add r2, r1 + 8007d5c: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007d60: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 8007d64: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_XFRSIZ); - 800798e: 69bb ldr r3, [r7, #24] - 8007990: 015a lsls r2, r3, #5 - 8007992: 69fb ldr r3, [r7, #28] - 8007994: 4413 add r3, r2 - 8007996: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800799a: 691b ldr r3, [r3, #16] - 800799c: 69ba ldr r2, [r7, #24] - 800799e: 0151 lsls r1, r2, #5 - 80079a0: 69fa ldr r2, [r7, #28] - 80079a2: 440a add r2, r1 - 80079a4: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80079a8: 0cdb lsrs r3, r3, #19 - 80079aa: 04db lsls r3, r3, #19 - 80079ac: 6113 str r3, [r2, #16] - 80079ae: e097 b.n 8007ae0 + 8007d66: 69bb ldr r3, [r7, #24] + 8007d68: 015a lsls r2, r3, #5 + 8007d6a: 69fb ldr r3, [r7, #28] + 8007d6c: 4413 add r3, r2 + 8007d6e: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d72: 691b ldr r3, [r3, #16] + 8007d74: 69ba ldr r2, [r7, #24] + 8007d76: 0151 lsls r1, r2, #5 + 8007d78: 69fa ldr r2, [r7, #28] + 8007d7a: 440a add r2, r1 + 8007d7c: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007d80: 0cdb lsrs r3, r3, #19 + 8007d82: 04db lsls r3, r3, #19 + 8007d84: 6113 str r3, [r2, #16] + 8007d86: e097 b.n 8007eb8 /* Program the transfer size and packet count * as follows: xfersize = N * maxpacket + * short_packet pktcnt = N + (short_packet * exist ? 1 : 0) */ USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_XFRSIZ); - 80079b0: 69bb ldr r3, [r7, #24] - 80079b2: 015a lsls r2, r3, #5 - 80079b4: 69fb ldr r3, [r7, #28] - 80079b6: 4413 add r3, r2 - 80079b8: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80079bc: 691b ldr r3, [r3, #16] - 80079be: 69ba ldr r2, [r7, #24] - 80079c0: 0151 lsls r1, r2, #5 - 80079c2: 69fa ldr r2, [r7, #28] - 80079c4: 440a add r2, r1 - 80079c6: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80079ca: 0cdb lsrs r3, r3, #19 - 80079cc: 04db lsls r3, r3, #19 - 80079ce: 6113 str r3, [r2, #16] + 8007d88: 69bb ldr r3, [r7, #24] + 8007d8a: 015a lsls r2, r3, #5 + 8007d8c: 69fb ldr r3, [r7, #28] + 8007d8e: 4413 add r3, r2 + 8007d90: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d94: 691b ldr r3, [r3, #16] + 8007d96: 69ba ldr r2, [r7, #24] + 8007d98: 0151 lsls r1, r2, #5 + 8007d9a: 69fa ldr r2, [r7, #28] + 8007d9c: 440a add r2, r1 + 8007d9e: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007da2: 0cdb lsrs r3, r3, #19 + 8007da4: 04db lsls r3, r3, #19 + 8007da6: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_PKTCNT); - 80079d0: 69bb ldr r3, [r7, #24] - 80079d2: 015a lsls r2, r3, #5 - 80079d4: 69fb ldr r3, [r7, #28] - 80079d6: 4413 add r3, r2 - 80079d8: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80079dc: 691b ldr r3, [r3, #16] - 80079de: 69ba ldr r2, [r7, #24] - 80079e0: 0151 lsls r1, r2, #5 - 80079e2: 69fa ldr r2, [r7, #28] - 80079e4: 440a add r2, r1 - 80079e6: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80079ea: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 - 80079ee: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 - 80079f2: 6113 str r3, [r2, #16] + 8007da8: 69bb ldr r3, [r7, #24] + 8007daa: 015a lsls r2, r3, #5 + 8007dac: 69fb ldr r3, [r7, #28] + 8007dae: 4413 add r3, r2 + 8007db0: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007db4: 691b ldr r3, [r3, #16] + 8007db6: 69ba ldr r2, [r7, #24] + 8007db8: 0151 lsls r1, r2, #5 + 8007dba: 69fa ldr r2, [r7, #28] + 8007dbc: 440a add r2, r1 + 8007dbe: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007dc2: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 + 8007dc6: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 + 8007dca: 6113 str r3, [r2, #16] if (epnum == 0U) - 80079f4: 69bb ldr r3, [r7, #24] - 80079f6: 2b00 cmp r3, #0 - 80079f8: d11a bne.n 8007a30 + 8007dcc: 69bb ldr r3, [r7, #24] + 8007dce: 2b00 cmp r3, #0 + 8007dd0: d11a bne.n 8007e08 { if (ep->xfer_len > ep->maxpacket) - 80079fa: 68bb ldr r3, [r7, #8] - 80079fc: 691a ldr r2, [r3, #16] - 80079fe: 68bb ldr r3, [r7, #8] - 8007a00: 689b ldr r3, [r3, #8] - 8007a02: 429a cmp r2, r3 - 8007a04: d903 bls.n 8007a0e + 8007dd2: 68bb ldr r3, [r7, #8] + 8007dd4: 691a ldr r2, [r3, #16] + 8007dd6: 68bb ldr r3, [r7, #8] + 8007dd8: 689b ldr r3, [r3, #8] + 8007dda: 429a cmp r2, r3 + 8007ddc: d903 bls.n 8007de6 { ep->xfer_len = ep->maxpacket; - 8007a06: 68bb ldr r3, [r7, #8] - 8007a08: 689a ldr r2, [r3, #8] - 8007a0a: 68bb ldr r3, [r7, #8] - 8007a0c: 611a str r2, [r3, #16] + 8007dde: 68bb ldr r3, [r7, #8] + 8007de0: 689a ldr r2, [r3, #8] + 8007de2: 68bb ldr r3, [r7, #8] + 8007de4: 611a str r2, [r3, #16] } USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_PKTCNT & (1U << 19)); - 8007a0e: 69bb ldr r3, [r7, #24] - 8007a10: 015a lsls r2, r3, #5 - 8007a12: 69fb ldr r3, [r7, #28] - 8007a14: 4413 add r3, r2 - 8007a16: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007a1a: 691b ldr r3, [r3, #16] - 8007a1c: 69ba ldr r2, [r7, #24] - 8007a1e: 0151 lsls r1, r2, #5 - 8007a20: 69fa ldr r2, [r7, #28] - 8007a22: 440a add r2, r1 - 8007a24: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007a28: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8007a2c: 6113 str r3, [r2, #16] - 8007a2e: e044 b.n 8007aba + 8007de6: 69bb ldr r3, [r7, #24] + 8007de8: 015a lsls r2, r3, #5 + 8007dea: 69fb ldr r3, [r7, #28] + 8007dec: 4413 add r3, r2 + 8007dee: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007df2: 691b ldr r3, [r3, #16] + 8007df4: 69ba ldr r2, [r7, #24] + 8007df6: 0151 lsls r1, r2, #5 + 8007df8: 69fa ldr r2, [r7, #28] + 8007dfa: 440a add r2, r1 + 8007dfc: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007e00: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 8007e04: 6113 str r3, [r2, #16] + 8007e06: e044 b.n 8007e92 } else { pktcnt = (uint16_t)((ep->xfer_len + ep->maxpacket - 1U) / ep->maxpacket); - 8007a30: 68bb ldr r3, [r7, #8] - 8007a32: 691a ldr r2, [r3, #16] - 8007a34: 68bb ldr r3, [r7, #8] - 8007a36: 689b ldr r3, [r3, #8] - 8007a38: 4413 add r3, r2 - 8007a3a: 1e5a subs r2, r3, #1 - 8007a3c: 68bb ldr r3, [r7, #8] - 8007a3e: 689b ldr r3, [r3, #8] - 8007a40: fbb2 f3f3 udiv r3, r2, r3 - 8007a44: 82fb strh r3, [r7, #22] + 8007e08: 68bb ldr r3, [r7, #8] + 8007e0a: 691a ldr r2, [r3, #16] + 8007e0c: 68bb ldr r3, [r7, #8] + 8007e0e: 689b ldr r3, [r3, #8] + 8007e10: 4413 add r3, r2 + 8007e12: 1e5a subs r2, r3, #1 + 8007e14: 68bb ldr r3, [r7, #8] + 8007e16: 689b ldr r3, [r3, #8] + 8007e18: fbb2 f3f3 udiv r3, r2, r3 + 8007e1c: 82fb strh r3, [r7, #22] USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_PKTCNT & ((uint32_t)pktcnt << 19)); - 8007a46: 69bb ldr r3, [r7, #24] - 8007a48: 015a lsls r2, r3, #5 - 8007a4a: 69fb ldr r3, [r7, #28] - 8007a4c: 4413 add r3, r2 - 8007a4e: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007a52: 691a ldr r2, [r3, #16] - 8007a54: 8afb ldrh r3, [r7, #22] - 8007a56: 04d9 lsls r1, r3, #19 - 8007a58: 4ba4 ldr r3, [pc, #656] @ (8007cec ) - 8007a5a: 400b ands r3, r1 - 8007a5c: 69b9 ldr r1, [r7, #24] - 8007a5e: 0148 lsls r0, r1, #5 - 8007a60: 69f9 ldr r1, [r7, #28] - 8007a62: 4401 add r1, r0 - 8007a64: f501 6110 add.w r1, r1, #2304 @ 0x900 - 8007a68: 4313 orrs r3, r2 - 8007a6a: 610b str r3, [r1, #16] + 8007e1e: 69bb ldr r3, [r7, #24] + 8007e20: 015a lsls r2, r3, #5 + 8007e22: 69fb ldr r3, [r7, #28] + 8007e24: 4413 add r3, r2 + 8007e26: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007e2a: 691a ldr r2, [r3, #16] + 8007e2c: 8afb ldrh r3, [r7, #22] + 8007e2e: 04d9 lsls r1, r3, #19 + 8007e30: 4ba4 ldr r3, [pc, #656] @ (80080c4 ) + 8007e32: 400b ands r3, r1 + 8007e34: 69b9 ldr r1, [r7, #24] + 8007e36: 0148 lsls r0, r1, #5 + 8007e38: 69f9 ldr r1, [r7, #28] + 8007e3a: 4401 add r1, r0 + 8007e3c: f501 6110 add.w r1, r1, #2304 @ 0x900 + 8007e40: 4313 orrs r3, r2 + 8007e42: 610b str r3, [r1, #16] if (ep->type == EP_TYPE_ISOC) - 8007a6c: 68bb ldr r3, [r7, #8] - 8007a6e: 791b ldrb r3, [r3, #4] - 8007a70: 2b01 cmp r3, #1 - 8007a72: d122 bne.n 8007aba + 8007e44: 68bb ldr r3, [r7, #8] + 8007e46: 791b ldrb r3, [r3, #4] + 8007e48: 2b01 cmp r3, #1 + 8007e4a: d122 bne.n 8007e92 { USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_MULCNT); - 8007a74: 69bb ldr r3, [r7, #24] - 8007a76: 015a lsls r2, r3, #5 - 8007a78: 69fb ldr r3, [r7, #28] - 8007a7a: 4413 add r3, r2 - 8007a7c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007a80: 691b ldr r3, [r3, #16] - 8007a82: 69ba ldr r2, [r7, #24] - 8007a84: 0151 lsls r1, r2, #5 - 8007a86: 69fa ldr r2, [r7, #28] - 8007a88: 440a add r2, r1 - 8007a8a: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007a8e: f023 43c0 bic.w r3, r3, #1610612736 @ 0x60000000 - 8007a92: 6113 str r3, [r2, #16] + 8007e4c: 69bb ldr r3, [r7, #24] + 8007e4e: 015a lsls r2, r3, #5 + 8007e50: 69fb ldr r3, [r7, #28] + 8007e52: 4413 add r3, r2 + 8007e54: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007e58: 691b ldr r3, [r3, #16] + 8007e5a: 69ba ldr r2, [r7, #24] + 8007e5c: 0151 lsls r1, r2, #5 + 8007e5e: 69fa ldr r2, [r7, #28] + 8007e60: 440a add r2, r1 + 8007e62: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007e66: f023 43c0 bic.w r3, r3, #1610612736 @ 0x60000000 + 8007e6a: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_MULCNT & ((uint32_t)pktcnt << 29)); - 8007a94: 69bb ldr r3, [r7, #24] - 8007a96: 015a lsls r2, r3, #5 - 8007a98: 69fb ldr r3, [r7, #28] - 8007a9a: 4413 add r3, r2 - 8007a9c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007aa0: 691a ldr r2, [r3, #16] - 8007aa2: 8afb ldrh r3, [r7, #22] - 8007aa4: 075b lsls r3, r3, #29 - 8007aa6: f003 43c0 and.w r3, r3, #1610612736 @ 0x60000000 - 8007aaa: 69b9 ldr r1, [r7, #24] - 8007aac: 0148 lsls r0, r1, #5 - 8007aae: 69f9 ldr r1, [r7, #28] - 8007ab0: 4401 add r1, r0 - 8007ab2: f501 6110 add.w r1, r1, #2304 @ 0x900 - 8007ab6: 4313 orrs r3, r2 - 8007ab8: 610b str r3, [r1, #16] + 8007e6c: 69bb ldr r3, [r7, #24] + 8007e6e: 015a lsls r2, r3, #5 + 8007e70: 69fb ldr r3, [r7, #28] + 8007e72: 4413 add r3, r2 + 8007e74: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007e78: 691a ldr r2, [r3, #16] + 8007e7a: 8afb ldrh r3, [r7, #22] + 8007e7c: 075b lsls r3, r3, #29 + 8007e7e: f003 43c0 and.w r3, r3, #1610612736 @ 0x60000000 + 8007e82: 69b9 ldr r1, [r7, #24] + 8007e84: 0148 lsls r0, r1, #5 + 8007e86: 69f9 ldr r1, [r7, #28] + 8007e88: 4401 add r1, r0 + 8007e8a: f501 6110 add.w r1, r1, #2304 @ 0x900 + 8007e8e: 4313 orrs r3, r2 + 8007e90: 610b str r3, [r1, #16] } } USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_XFRSIZ & ep->xfer_len); - 8007aba: 69bb ldr r3, [r7, #24] - 8007abc: 015a lsls r2, r3, #5 - 8007abe: 69fb ldr r3, [r7, #28] - 8007ac0: 4413 add r3, r2 - 8007ac2: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ac6: 691a ldr r2, [r3, #16] - 8007ac8: 68bb ldr r3, [r7, #8] - 8007aca: 691b ldr r3, [r3, #16] - 8007acc: f3c3 0312 ubfx r3, r3, #0, #19 - 8007ad0: 69b9 ldr r1, [r7, #24] - 8007ad2: 0148 lsls r0, r1, #5 - 8007ad4: 69f9 ldr r1, [r7, #28] - 8007ad6: 4401 add r1, r0 - 8007ad8: f501 6110 add.w r1, r1, #2304 @ 0x900 - 8007adc: 4313 orrs r3, r2 - 8007ade: 610b str r3, [r1, #16] + 8007e92: 69bb ldr r3, [r7, #24] + 8007e94: 015a lsls r2, r3, #5 + 8007e96: 69fb ldr r3, [r7, #28] + 8007e98: 4413 add r3, r2 + 8007e9a: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007e9e: 691a ldr r2, [r3, #16] + 8007ea0: 68bb ldr r3, [r7, #8] + 8007ea2: 691b ldr r3, [r3, #16] + 8007ea4: f3c3 0312 ubfx r3, r3, #0, #19 + 8007ea8: 69b9 ldr r1, [r7, #24] + 8007eaa: 0148 lsls r0, r1, #5 + 8007eac: 69f9 ldr r1, [r7, #28] + 8007eae: 4401 add r1, r0 + 8007eb0: f501 6110 add.w r1, r1, #2304 @ 0x900 + 8007eb4: 4313 orrs r3, r2 + 8007eb6: 610b str r3, [r1, #16] } if (dma == 1U) - 8007ae0: 79fb ldrb r3, [r7, #7] - 8007ae2: 2b01 cmp r3, #1 - 8007ae4: d14b bne.n 8007b7e + 8007eb8: 79fb ldrb r3, [r7, #7] + 8007eba: 2b01 cmp r3, #1 + 8007ebc: d14b bne.n 8007f56 { if ((uint32_t)ep->dma_addr != 0U) - 8007ae6: 68bb ldr r3, [r7, #8] - 8007ae8: 69db ldr r3, [r3, #28] - 8007aea: 2b00 cmp r3, #0 - 8007aec: d009 beq.n 8007b02 + 8007ebe: 68bb ldr r3, [r7, #8] + 8007ec0: 69db ldr r3, [r3, #28] + 8007ec2: 2b00 cmp r3, #0 + 8007ec4: d009 beq.n 8007eda { USBx_INEP(epnum)->DIEPDMA = (uint32_t)(ep->dma_addr); - 8007aee: 69bb ldr r3, [r7, #24] - 8007af0: 015a lsls r2, r3, #5 - 8007af2: 69fb ldr r3, [r7, #28] - 8007af4: 4413 add r3, r2 - 8007af6: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007afa: 461a mov r2, r3 - 8007afc: 68bb ldr r3, [r7, #8] - 8007afe: 69db ldr r3, [r3, #28] - 8007b00: 6153 str r3, [r2, #20] + 8007ec6: 69bb ldr r3, [r7, #24] + 8007ec8: 015a lsls r2, r3, #5 + 8007eca: 69fb ldr r3, [r7, #28] + 8007ecc: 4413 add r3, r2 + 8007ece: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007ed2: 461a mov r2, r3 + 8007ed4: 68bb ldr r3, [r7, #8] + 8007ed6: 69db ldr r3, [r3, #28] + 8007ed8: 6153 str r3, [r2, #20] } if (ep->type == EP_TYPE_ISOC) - 8007b02: 68bb ldr r3, [r7, #8] - 8007b04: 791b ldrb r3, [r3, #4] - 8007b06: 2b01 cmp r3, #1 - 8007b08: d128 bne.n 8007b5c + 8007eda: 68bb ldr r3, [r7, #8] + 8007edc: 791b ldrb r3, [r3, #4] + 8007ede: 2b01 cmp r3, #1 + 8007ee0: d128 bne.n 8007f34 { if ((USBx_DEVICE->DSTS & (1U << 8)) == 0U) - 8007b0a: 69fb ldr r3, [r7, #28] - 8007b0c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007b10: 689b ldr r3, [r3, #8] - 8007b12: f403 7380 and.w r3, r3, #256 @ 0x100 - 8007b16: 2b00 cmp r3, #0 - 8007b18: d110 bne.n 8007b3c + 8007ee2: 69fb ldr r3, [r7, #28] + 8007ee4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007ee8: 689b ldr r3, [r3, #8] + 8007eea: f403 7380 and.w r3, r3, #256 @ 0x100 + 8007eee: 2b00 cmp r3, #0 + 8007ef0: d110 bne.n 8007f14 { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SODDFRM; - 8007b1a: 69bb ldr r3, [r7, #24] - 8007b1c: 015a lsls r2, r3, #5 - 8007b1e: 69fb ldr r3, [r7, #28] - 8007b20: 4413 add r3, r2 - 8007b22: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b26: 681b ldr r3, [r3, #0] - 8007b28: 69ba ldr r2, [r7, #24] - 8007b2a: 0151 lsls r1, r2, #5 - 8007b2c: 69fa ldr r2, [r7, #28] - 8007b2e: 440a add r2, r1 - 8007b30: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007b34: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 - 8007b38: 6013 str r3, [r2, #0] - 8007b3a: e00f b.n 8007b5c + 8007ef2: 69bb ldr r3, [r7, #24] + 8007ef4: 015a lsls r2, r3, #5 + 8007ef6: 69fb ldr r3, [r7, #28] + 8007ef8: 4413 add r3, r2 + 8007efa: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007efe: 681b ldr r3, [r3, #0] + 8007f00: 69ba ldr r2, [r7, #24] + 8007f02: 0151 lsls r1, r2, #5 + 8007f04: 69fa ldr r2, [r7, #28] + 8007f06: 440a add r2, r1 + 8007f08: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007f0c: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 + 8007f10: 6013 str r3, [r2, #0] + 8007f12: e00f b.n 8007f34 } else { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM; - 8007b3c: 69bb ldr r3, [r7, #24] - 8007b3e: 015a lsls r2, r3, #5 - 8007b40: 69fb ldr r3, [r7, #28] - 8007b42: 4413 add r3, r2 - 8007b44: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b48: 681b ldr r3, [r3, #0] - 8007b4a: 69ba ldr r2, [r7, #24] - 8007b4c: 0151 lsls r1, r2, #5 - 8007b4e: 69fa ldr r2, [r7, #28] - 8007b50: 440a add r2, r1 - 8007b52: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007b56: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007b5a: 6013 str r3, [r2, #0] + 8007f14: 69bb ldr r3, [r7, #24] + 8007f16: 015a lsls r2, r3, #5 + 8007f18: 69fb ldr r3, [r7, #28] + 8007f1a: 4413 add r3, r2 + 8007f1c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007f20: 681b ldr r3, [r3, #0] + 8007f22: 69ba ldr r2, [r7, #24] + 8007f24: 0151 lsls r1, r2, #5 + 8007f26: 69fa ldr r2, [r7, #28] + 8007f28: 440a add r2, r1 + 8007f2a: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007f2e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007f32: 6013 str r3, [r2, #0] } } /* EP enable, IN data in FIFO */ USBx_INEP(epnum)->DIEPCTL |= (USB_OTG_DIEPCTL_CNAK | USB_OTG_DIEPCTL_EPENA); - 8007b5c: 69bb ldr r3, [r7, #24] - 8007b5e: 015a lsls r2, r3, #5 - 8007b60: 69fb ldr r3, [r7, #28] - 8007b62: 4413 add r3, r2 - 8007b64: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b68: 681b ldr r3, [r3, #0] - 8007b6a: 69ba ldr r2, [r7, #24] - 8007b6c: 0151 lsls r1, r2, #5 - 8007b6e: 69fa ldr r2, [r7, #28] - 8007b70: 440a add r2, r1 - 8007b72: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007b76: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 - 8007b7a: 6013 str r3, [r2, #0] - 8007b7c: e166 b.n 8007e4c + 8007f34: 69bb ldr r3, [r7, #24] + 8007f36: 015a lsls r2, r3, #5 + 8007f38: 69fb ldr r3, [r7, #28] + 8007f3a: 4413 add r3, r2 + 8007f3c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007f40: 681b ldr r3, [r3, #0] + 8007f42: 69ba ldr r2, [r7, #24] + 8007f44: 0151 lsls r1, r2, #5 + 8007f46: 69fa ldr r2, [r7, #28] + 8007f48: 440a add r2, r1 + 8007f4a: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007f4e: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 + 8007f52: 6013 str r3, [r2, #0] + 8007f54: e166 b.n 8008224 } else { /* EP enable, IN data in FIFO */ USBx_INEP(epnum)->DIEPCTL |= (USB_OTG_DIEPCTL_CNAK | USB_OTG_DIEPCTL_EPENA); - 8007b7e: 69bb ldr r3, [r7, #24] - 8007b80: 015a lsls r2, r3, #5 - 8007b82: 69fb ldr r3, [r7, #28] - 8007b84: 4413 add r3, r2 - 8007b86: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b8a: 681b ldr r3, [r3, #0] - 8007b8c: 69ba ldr r2, [r7, #24] - 8007b8e: 0151 lsls r1, r2, #5 - 8007b90: 69fa ldr r2, [r7, #28] - 8007b92: 440a add r2, r1 - 8007b94: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007b98: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 - 8007b9c: 6013 str r3, [r2, #0] + 8007f56: 69bb ldr r3, [r7, #24] + 8007f58: 015a lsls r2, r3, #5 + 8007f5a: 69fb ldr r3, [r7, #28] + 8007f5c: 4413 add r3, r2 + 8007f5e: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007f62: 681b ldr r3, [r3, #0] + 8007f64: 69ba ldr r2, [r7, #24] + 8007f66: 0151 lsls r1, r2, #5 + 8007f68: 69fa ldr r2, [r7, #28] + 8007f6a: 440a add r2, r1 + 8007f6c: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007f70: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 + 8007f74: 6013 str r3, [r2, #0] if (ep->type != EP_TYPE_ISOC) - 8007b9e: 68bb ldr r3, [r7, #8] - 8007ba0: 791b ldrb r3, [r3, #4] - 8007ba2: 2b01 cmp r3, #1 - 8007ba4: d015 beq.n 8007bd2 + 8007f76: 68bb ldr r3, [r7, #8] + 8007f78: 791b ldrb r3, [r3, #4] + 8007f7a: 2b01 cmp r3, #1 + 8007f7c: d015 beq.n 8007faa { /* Enable the Tx FIFO Empty Interrupt for this EP */ if (ep->xfer_len > 0U) - 8007ba6: 68bb ldr r3, [r7, #8] - 8007ba8: 691b ldr r3, [r3, #16] - 8007baa: 2b00 cmp r3, #0 - 8007bac: f000 814e beq.w 8007e4c + 8007f7e: 68bb ldr r3, [r7, #8] + 8007f80: 691b ldr r3, [r3, #16] + 8007f82: 2b00 cmp r3, #0 + 8007f84: f000 814e beq.w 8008224 { USBx_DEVICE->DIEPEMPMSK |= 1UL << (ep->num & EP_ADDR_MSK); - 8007bb0: 69fb ldr r3, [r7, #28] - 8007bb2: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007bb6: 6b5a ldr r2, [r3, #52] @ 0x34 - 8007bb8: 68bb ldr r3, [r7, #8] - 8007bba: 781b ldrb r3, [r3, #0] - 8007bbc: f003 030f and.w r3, r3, #15 - 8007bc0: 2101 movs r1, #1 - 8007bc2: fa01 f303 lsl.w r3, r1, r3 - 8007bc6: 69f9 ldr r1, [r7, #28] - 8007bc8: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007bcc: 4313 orrs r3, r2 - 8007bce: 634b str r3, [r1, #52] @ 0x34 - 8007bd0: e13c b.n 8007e4c + 8007f88: 69fb ldr r3, [r7, #28] + 8007f8a: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007f8e: 6b5a ldr r2, [r3, #52] @ 0x34 + 8007f90: 68bb ldr r3, [r7, #8] + 8007f92: 781b ldrb r3, [r3, #0] + 8007f94: f003 030f and.w r3, r3, #15 + 8007f98: 2101 movs r1, #1 + 8007f9a: fa01 f303 lsl.w r3, r1, r3 + 8007f9e: 69f9 ldr r1, [r7, #28] + 8007fa0: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007fa4: 4313 orrs r3, r2 + 8007fa6: 634b str r3, [r1, #52] @ 0x34 + 8007fa8: e13c b.n 8008224 } } else { if ((USBx_DEVICE->DSTS & (1U << 8)) == 0U) - 8007bd2: 69fb ldr r3, [r7, #28] - 8007bd4: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007bd8: 689b ldr r3, [r3, #8] - 8007bda: f403 7380 and.w r3, r3, #256 @ 0x100 - 8007bde: 2b00 cmp r3, #0 - 8007be0: d110 bne.n 8007c04 + 8007faa: 69fb ldr r3, [r7, #28] + 8007fac: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007fb0: 689b ldr r3, [r3, #8] + 8007fb2: f403 7380 and.w r3, r3, #256 @ 0x100 + 8007fb6: 2b00 cmp r3, #0 + 8007fb8: d110 bne.n 8007fdc { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SODDFRM; - 8007be2: 69bb ldr r3, [r7, #24] - 8007be4: 015a lsls r2, r3, #5 - 8007be6: 69fb ldr r3, [r7, #28] - 8007be8: 4413 add r3, r2 - 8007bea: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007bee: 681b ldr r3, [r3, #0] - 8007bf0: 69ba ldr r2, [r7, #24] - 8007bf2: 0151 lsls r1, r2, #5 - 8007bf4: 69fa ldr r2, [r7, #28] - 8007bf6: 440a add r2, r1 - 8007bf8: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007bfc: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 - 8007c00: 6013 str r3, [r2, #0] - 8007c02: e00f b.n 8007c24 + 8007fba: 69bb ldr r3, [r7, #24] + 8007fbc: 015a lsls r2, r3, #5 + 8007fbe: 69fb ldr r3, [r7, #28] + 8007fc0: 4413 add r3, r2 + 8007fc2: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007fc6: 681b ldr r3, [r3, #0] + 8007fc8: 69ba ldr r2, [r7, #24] + 8007fca: 0151 lsls r1, r2, #5 + 8007fcc: 69fa ldr r2, [r7, #28] + 8007fce: 440a add r2, r1 + 8007fd0: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007fd4: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 + 8007fd8: 6013 str r3, [r2, #0] + 8007fda: e00f b.n 8007ffc } else { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM; - 8007c04: 69bb ldr r3, [r7, #24] - 8007c06: 015a lsls r2, r3, #5 - 8007c08: 69fb ldr r3, [r7, #28] - 8007c0a: 4413 add r3, r2 - 8007c0c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007c10: 681b ldr r3, [r3, #0] - 8007c12: 69ba ldr r2, [r7, #24] - 8007c14: 0151 lsls r1, r2, #5 - 8007c16: 69fa ldr r2, [r7, #28] - 8007c18: 440a add r2, r1 - 8007c1a: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007c1e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007c22: 6013 str r3, [r2, #0] + 8007fdc: 69bb ldr r3, [r7, #24] + 8007fde: 015a lsls r2, r3, #5 + 8007fe0: 69fb ldr r3, [r7, #28] + 8007fe2: 4413 add r3, r2 + 8007fe4: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007fe8: 681b ldr r3, [r3, #0] + 8007fea: 69ba ldr r2, [r7, #24] + 8007fec: 0151 lsls r1, r2, #5 + 8007fee: 69fa ldr r2, [r7, #28] + 8007ff0: 440a add r2, r1 + 8007ff2: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007ff6: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007ffa: 6013 str r3, [r2, #0] } (void)USB_WritePacket(USBx, ep->xfer_buff, ep->num, (uint16_t)ep->xfer_len, dma); - 8007c24: 68bb ldr r3, [r7, #8] - 8007c26: 68d9 ldr r1, [r3, #12] - 8007c28: 68bb ldr r3, [r7, #8] - 8007c2a: 781a ldrb r2, [r3, #0] - 8007c2c: 68bb ldr r3, [r7, #8] - 8007c2e: 691b ldr r3, [r3, #16] - 8007c30: b298 uxth r0, r3 - 8007c32: 79fb ldrb r3, [r7, #7] - 8007c34: 9300 str r3, [sp, #0] - 8007c36: 4603 mov r3, r0 - 8007c38: 68f8 ldr r0, [r7, #12] - 8007c3a: f000 f9b9 bl 8007fb0 - 8007c3e: e105 b.n 8007e4c + 8007ffc: 68bb ldr r3, [r7, #8] + 8007ffe: 68d9 ldr r1, [r3, #12] + 8008000: 68bb ldr r3, [r7, #8] + 8008002: 781a ldrb r2, [r3, #0] + 8008004: 68bb ldr r3, [r7, #8] + 8008006: 691b ldr r3, [r3, #16] + 8008008: b298 uxth r0, r3 + 800800a: 79fb ldrb r3, [r7, #7] + 800800c: 9300 str r3, [sp, #0] + 800800e: 4603 mov r3, r0 + 8008010: 68f8 ldr r0, [r7, #12] + 8008012: f000 f9b9 bl 8008388 + 8008016: e105 b.n 8008224 { /* Program the transfer size and packet count as follows: * pktcnt = N * xfersize = N * maxpacket */ USBx_OUTEP(epnum)->DOEPTSIZ &= ~(USB_OTG_DOEPTSIZ_XFRSIZ); - 8007c40: 69bb ldr r3, [r7, #24] - 8007c42: 015a lsls r2, r3, #5 - 8007c44: 69fb ldr r3, [r7, #28] - 8007c46: 4413 add r3, r2 - 8007c48: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007c4c: 691b ldr r3, [r3, #16] - 8007c4e: 69ba ldr r2, [r7, #24] - 8007c50: 0151 lsls r1, r2, #5 - 8007c52: 69fa ldr r2, [r7, #28] - 8007c54: 440a add r2, r1 - 8007c56: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007c5a: 0cdb lsrs r3, r3, #19 - 8007c5c: 04db lsls r3, r3, #19 - 8007c5e: 6113 str r3, [r2, #16] + 8008018: 69bb ldr r3, [r7, #24] + 800801a: 015a lsls r2, r3, #5 + 800801c: 69fb ldr r3, [r7, #28] + 800801e: 4413 add r3, r2 + 8008020: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008024: 691b ldr r3, [r3, #16] + 8008026: 69ba ldr r2, [r7, #24] + 8008028: 0151 lsls r1, r2, #5 + 800802a: 69fa ldr r2, [r7, #28] + 800802c: 440a add r2, r1 + 800802e: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008032: 0cdb lsrs r3, r3, #19 + 8008034: 04db lsls r3, r3, #19 + 8008036: 6113 str r3, [r2, #16] USBx_OUTEP(epnum)->DOEPTSIZ &= ~(USB_OTG_DOEPTSIZ_PKTCNT); - 8007c60: 69bb ldr r3, [r7, #24] - 8007c62: 015a lsls r2, r3, #5 - 8007c64: 69fb ldr r3, [r7, #28] - 8007c66: 4413 add r3, r2 - 8007c68: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007c6c: 691b ldr r3, [r3, #16] - 8007c6e: 69ba ldr r2, [r7, #24] - 8007c70: 0151 lsls r1, r2, #5 - 8007c72: 69fa ldr r2, [r7, #28] - 8007c74: 440a add r2, r1 - 8007c76: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007c7a: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 - 8007c7e: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 - 8007c82: 6113 str r3, [r2, #16] + 8008038: 69bb ldr r3, [r7, #24] + 800803a: 015a lsls r2, r3, #5 + 800803c: 69fb ldr r3, [r7, #28] + 800803e: 4413 add r3, r2 + 8008040: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008044: 691b ldr r3, [r3, #16] + 8008046: 69ba ldr r2, [r7, #24] + 8008048: 0151 lsls r1, r2, #5 + 800804a: 69fa ldr r2, [r7, #28] + 800804c: 440a add r2, r1 + 800804e: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008052: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 + 8008056: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 + 800805a: 6113 str r3, [r2, #16] if (epnum == 0U) - 8007c84: 69bb ldr r3, [r7, #24] - 8007c86: 2b00 cmp r3, #0 - 8007c88: d132 bne.n 8007cf0 + 800805c: 69bb ldr r3, [r7, #24] + 800805e: 2b00 cmp r3, #0 + 8008060: d132 bne.n 80080c8 { if (ep->xfer_len > 0U) - 8007c8a: 68bb ldr r3, [r7, #8] - 8007c8c: 691b ldr r3, [r3, #16] - 8007c8e: 2b00 cmp r3, #0 - 8007c90: d003 beq.n 8007c9a + 8008062: 68bb ldr r3, [r7, #8] + 8008064: 691b ldr r3, [r3, #16] + 8008066: 2b00 cmp r3, #0 + 8008068: d003 beq.n 8008072 { ep->xfer_len = ep->maxpacket; - 8007c92: 68bb ldr r3, [r7, #8] - 8007c94: 689a ldr r2, [r3, #8] - 8007c96: 68bb ldr r3, [r7, #8] - 8007c98: 611a str r2, [r3, #16] + 800806a: 68bb ldr r3, [r7, #8] + 800806c: 689a ldr r2, [r3, #8] + 800806e: 68bb ldr r3, [r7, #8] + 8008070: 611a str r2, [r3, #16] } /* Store transfer size, for EP0 this is equal to endpoint max packet size */ ep->xfer_size = ep->maxpacket; - 8007c9a: 68bb ldr r3, [r7, #8] - 8007c9c: 689a ldr r2, [r3, #8] - 8007c9e: 68bb ldr r3, [r7, #8] - 8007ca0: 621a str r2, [r3, #32] + 8008072: 68bb ldr r3, [r7, #8] + 8008074: 689a ldr r2, [r3, #8] + 8008076: 68bb ldr r3, [r7, #8] + 8008078: 621a str r2, [r3, #32] USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_XFRSIZ & ep->xfer_size); - 8007ca2: 69bb ldr r3, [r7, #24] - 8007ca4: 015a lsls r2, r3, #5 - 8007ca6: 69fb ldr r3, [r7, #28] - 8007ca8: 4413 add r3, r2 - 8007caa: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007cae: 691a ldr r2, [r3, #16] - 8007cb0: 68bb ldr r3, [r7, #8] - 8007cb2: 6a1b ldr r3, [r3, #32] - 8007cb4: f3c3 0312 ubfx r3, r3, #0, #19 - 8007cb8: 69b9 ldr r1, [r7, #24] - 8007cba: 0148 lsls r0, r1, #5 - 8007cbc: 69f9 ldr r1, [r7, #28] - 8007cbe: 4401 add r1, r0 - 8007cc0: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007cc4: 4313 orrs r3, r2 - 8007cc6: 610b str r3, [r1, #16] + 800807a: 69bb ldr r3, [r7, #24] + 800807c: 015a lsls r2, r3, #5 + 800807e: 69fb ldr r3, [r7, #28] + 8008080: 4413 add r3, r2 + 8008082: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008086: 691a ldr r2, [r3, #16] + 8008088: 68bb ldr r3, [r7, #8] + 800808a: 6a1b ldr r3, [r3, #32] + 800808c: f3c3 0312 ubfx r3, r3, #0, #19 + 8008090: 69b9 ldr r1, [r7, #24] + 8008092: 0148 lsls r0, r1, #5 + 8008094: 69f9 ldr r1, [r7, #28] + 8008096: 4401 add r1, r0 + 8008098: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 800809c: 4313 orrs r3, r2 + 800809e: 610b str r3, [r1, #16] USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_PKTCNT & (1U << 19)); - 8007cc8: 69bb ldr r3, [r7, #24] - 8007cca: 015a lsls r2, r3, #5 - 8007ccc: 69fb ldr r3, [r7, #28] - 8007cce: 4413 add r3, r2 - 8007cd0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007cd4: 691b ldr r3, [r3, #16] - 8007cd6: 69ba ldr r2, [r7, #24] - 8007cd8: 0151 lsls r1, r2, #5 - 8007cda: 69fa ldr r2, [r7, #28] - 8007cdc: 440a add r2, r1 - 8007cde: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007ce2: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8007ce6: 6113 str r3, [r2, #16] - 8007ce8: e062 b.n 8007db0 - 8007cea: bf00 nop - 8007cec: 1ff80000 .word 0x1ff80000 + 80080a0: 69bb ldr r3, [r7, #24] + 80080a2: 015a lsls r2, r3, #5 + 80080a4: 69fb ldr r3, [r7, #28] + 80080a6: 4413 add r3, r2 + 80080a8: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80080ac: 691b ldr r3, [r3, #16] + 80080ae: 69ba ldr r2, [r7, #24] + 80080b0: 0151 lsls r1, r2, #5 + 80080b2: 69fa ldr r2, [r7, #28] + 80080b4: 440a add r2, r1 + 80080b6: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 80080ba: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 80080be: 6113 str r3, [r2, #16] + 80080c0: e062 b.n 8008188 + 80080c2: bf00 nop + 80080c4: 1ff80000 .word 0x1ff80000 } else { if (ep->xfer_len == 0U) - 8007cf0: 68bb ldr r3, [r7, #8] - 8007cf2: 691b ldr r3, [r3, #16] - 8007cf4: 2b00 cmp r3, #0 - 8007cf6: d123 bne.n 8007d40 + 80080c8: 68bb ldr r3, [r7, #8] + 80080ca: 691b ldr r3, [r3, #16] + 80080cc: 2b00 cmp r3, #0 + 80080ce: d123 bne.n 8008118 { USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_XFRSIZ & ep->maxpacket); - 8007cf8: 69bb ldr r3, [r7, #24] - 8007cfa: 015a lsls r2, r3, #5 - 8007cfc: 69fb ldr r3, [r7, #28] - 8007cfe: 4413 add r3, r2 - 8007d00: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d04: 691a ldr r2, [r3, #16] - 8007d06: 68bb ldr r3, [r7, #8] - 8007d08: 689b ldr r3, [r3, #8] - 8007d0a: f3c3 0312 ubfx r3, r3, #0, #19 - 8007d0e: 69b9 ldr r1, [r7, #24] - 8007d10: 0148 lsls r0, r1, #5 - 8007d12: 69f9 ldr r1, [r7, #28] - 8007d14: 4401 add r1, r0 - 8007d16: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007d1a: 4313 orrs r3, r2 - 8007d1c: 610b str r3, [r1, #16] + 80080d0: 69bb ldr r3, [r7, #24] + 80080d2: 015a lsls r2, r3, #5 + 80080d4: 69fb ldr r3, [r7, #28] + 80080d6: 4413 add r3, r2 + 80080d8: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80080dc: 691a ldr r2, [r3, #16] + 80080de: 68bb ldr r3, [r7, #8] + 80080e0: 689b ldr r3, [r3, #8] + 80080e2: f3c3 0312 ubfx r3, r3, #0, #19 + 80080e6: 69b9 ldr r1, [r7, #24] + 80080e8: 0148 lsls r0, r1, #5 + 80080ea: 69f9 ldr r1, [r7, #28] + 80080ec: 4401 add r1, r0 + 80080ee: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 80080f2: 4313 orrs r3, r2 + 80080f4: 610b str r3, [r1, #16] USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_PKTCNT & (1U << 19)); - 8007d1e: 69bb ldr r3, [r7, #24] - 8007d20: 015a lsls r2, r3, #5 - 8007d22: 69fb ldr r3, [r7, #28] - 8007d24: 4413 add r3, r2 - 8007d26: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d2a: 691b ldr r3, [r3, #16] - 8007d2c: 69ba ldr r2, [r7, #24] - 8007d2e: 0151 lsls r1, r2, #5 - 8007d30: 69fa ldr r2, [r7, #28] - 8007d32: 440a add r2, r1 - 8007d34: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007d38: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8007d3c: 6113 str r3, [r2, #16] - 8007d3e: e037 b.n 8007db0 + 80080f6: 69bb ldr r3, [r7, #24] + 80080f8: 015a lsls r2, r3, #5 + 80080fa: 69fb ldr r3, [r7, #28] + 80080fc: 4413 add r3, r2 + 80080fe: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008102: 691b ldr r3, [r3, #16] + 8008104: 69ba ldr r2, [r7, #24] + 8008106: 0151 lsls r1, r2, #5 + 8008108: 69fa ldr r2, [r7, #28] + 800810a: 440a add r2, r1 + 800810c: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008110: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 8008114: 6113 str r3, [r2, #16] + 8008116: e037 b.n 8008188 } else { pktcnt = (uint16_t)((ep->xfer_len + ep->maxpacket - 1U) / ep->maxpacket); - 8007d40: 68bb ldr r3, [r7, #8] - 8007d42: 691a ldr r2, [r3, #16] - 8007d44: 68bb ldr r3, [r7, #8] - 8007d46: 689b ldr r3, [r3, #8] - 8007d48: 4413 add r3, r2 - 8007d4a: 1e5a subs r2, r3, #1 - 8007d4c: 68bb ldr r3, [r7, #8] - 8007d4e: 689b ldr r3, [r3, #8] - 8007d50: fbb2 f3f3 udiv r3, r2, r3 - 8007d54: 82fb strh r3, [r7, #22] + 8008118: 68bb ldr r3, [r7, #8] + 800811a: 691a ldr r2, [r3, #16] + 800811c: 68bb ldr r3, [r7, #8] + 800811e: 689b ldr r3, [r3, #8] + 8008120: 4413 add r3, r2 + 8008122: 1e5a subs r2, r3, #1 + 8008124: 68bb ldr r3, [r7, #8] + 8008126: 689b ldr r3, [r3, #8] + 8008128: fbb2 f3f3 udiv r3, r2, r3 + 800812c: 82fb strh r3, [r7, #22] ep->xfer_size = ep->maxpacket * pktcnt; - 8007d56: 68bb ldr r3, [r7, #8] - 8007d58: 689b ldr r3, [r3, #8] - 8007d5a: 8afa ldrh r2, [r7, #22] - 8007d5c: fb03 f202 mul.w r2, r3, r2 - 8007d60: 68bb ldr r3, [r7, #8] - 8007d62: 621a str r2, [r3, #32] + 800812e: 68bb ldr r3, [r7, #8] + 8008130: 689b ldr r3, [r3, #8] + 8008132: 8afa ldrh r2, [r7, #22] + 8008134: fb03 f202 mul.w r2, r3, r2 + 8008138: 68bb ldr r3, [r7, #8] + 800813a: 621a str r2, [r3, #32] USBx_OUTEP(epnum)->DOEPTSIZ |= USB_OTG_DOEPTSIZ_PKTCNT & ((uint32_t)pktcnt << 19); - 8007d64: 69bb ldr r3, [r7, #24] - 8007d66: 015a lsls r2, r3, #5 - 8007d68: 69fb ldr r3, [r7, #28] - 8007d6a: 4413 add r3, r2 - 8007d6c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d70: 691a ldr r2, [r3, #16] - 8007d72: 8afb ldrh r3, [r7, #22] - 8007d74: 04d9 lsls r1, r3, #19 - 8007d76: 4b38 ldr r3, [pc, #224] @ (8007e58 ) - 8007d78: 400b ands r3, r1 - 8007d7a: 69b9 ldr r1, [r7, #24] - 8007d7c: 0148 lsls r0, r1, #5 - 8007d7e: 69f9 ldr r1, [r7, #28] - 8007d80: 4401 add r1, r0 - 8007d82: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007d86: 4313 orrs r3, r2 - 8007d88: 610b str r3, [r1, #16] + 800813c: 69bb ldr r3, [r7, #24] + 800813e: 015a lsls r2, r3, #5 + 8008140: 69fb ldr r3, [r7, #28] + 8008142: 4413 add r3, r2 + 8008144: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008148: 691a ldr r2, [r3, #16] + 800814a: 8afb ldrh r3, [r7, #22] + 800814c: 04d9 lsls r1, r3, #19 + 800814e: 4b38 ldr r3, [pc, #224] @ (8008230 ) + 8008150: 400b ands r3, r1 + 8008152: 69b9 ldr r1, [r7, #24] + 8008154: 0148 lsls r0, r1, #5 + 8008156: 69f9 ldr r1, [r7, #28] + 8008158: 4401 add r1, r0 + 800815a: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 800815e: 4313 orrs r3, r2 + 8008160: 610b str r3, [r1, #16] USBx_OUTEP(epnum)->DOEPTSIZ |= USB_OTG_DOEPTSIZ_XFRSIZ & ep->xfer_size; - 8007d8a: 69bb ldr r3, [r7, #24] - 8007d8c: 015a lsls r2, r3, #5 - 8007d8e: 69fb ldr r3, [r7, #28] - 8007d90: 4413 add r3, r2 - 8007d92: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d96: 691a ldr r2, [r3, #16] - 8007d98: 68bb ldr r3, [r7, #8] - 8007d9a: 6a1b ldr r3, [r3, #32] - 8007d9c: f3c3 0312 ubfx r3, r3, #0, #19 - 8007da0: 69b9 ldr r1, [r7, #24] - 8007da2: 0148 lsls r0, r1, #5 - 8007da4: 69f9 ldr r1, [r7, #28] - 8007da6: 4401 add r1, r0 - 8007da8: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007dac: 4313 orrs r3, r2 - 8007dae: 610b str r3, [r1, #16] + 8008162: 69bb ldr r3, [r7, #24] + 8008164: 015a lsls r2, r3, #5 + 8008166: 69fb ldr r3, [r7, #28] + 8008168: 4413 add r3, r2 + 800816a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800816e: 691a ldr r2, [r3, #16] + 8008170: 68bb ldr r3, [r7, #8] + 8008172: 6a1b ldr r3, [r3, #32] + 8008174: f3c3 0312 ubfx r3, r3, #0, #19 + 8008178: 69b9 ldr r1, [r7, #24] + 800817a: 0148 lsls r0, r1, #5 + 800817c: 69f9 ldr r1, [r7, #28] + 800817e: 4401 add r1, r0 + 8008180: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 8008184: 4313 orrs r3, r2 + 8008186: 610b str r3, [r1, #16] } } if (dma == 1U) - 8007db0: 79fb ldrb r3, [r7, #7] - 8007db2: 2b01 cmp r3, #1 - 8007db4: d10d bne.n 8007dd2 + 8008188: 79fb ldrb r3, [r7, #7] + 800818a: 2b01 cmp r3, #1 + 800818c: d10d bne.n 80081aa { if ((uint32_t)ep->xfer_buff != 0U) - 8007db6: 68bb ldr r3, [r7, #8] - 8007db8: 68db ldr r3, [r3, #12] - 8007dba: 2b00 cmp r3, #0 - 8007dbc: d009 beq.n 8007dd2 + 800818e: 68bb ldr r3, [r7, #8] + 8008190: 68db ldr r3, [r3, #12] + 8008192: 2b00 cmp r3, #0 + 8008194: d009 beq.n 80081aa { USBx_OUTEP(epnum)->DOEPDMA = (uint32_t)(ep->xfer_buff); - 8007dbe: 68bb ldr r3, [r7, #8] - 8007dc0: 68d9 ldr r1, [r3, #12] - 8007dc2: 69bb ldr r3, [r7, #24] - 8007dc4: 015a lsls r2, r3, #5 - 8007dc6: 69fb ldr r3, [r7, #28] - 8007dc8: 4413 add r3, r2 - 8007dca: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007dce: 460a mov r2, r1 - 8007dd0: 615a str r2, [r3, #20] + 8008196: 68bb ldr r3, [r7, #8] + 8008198: 68d9 ldr r1, [r3, #12] + 800819a: 69bb ldr r3, [r7, #24] + 800819c: 015a lsls r2, r3, #5 + 800819e: 69fb ldr r3, [r7, #28] + 80081a0: 4413 add r3, r2 + 80081a2: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80081a6: 460a mov r2, r1 + 80081a8: 615a str r2, [r3, #20] } } if (ep->type == EP_TYPE_ISOC) - 8007dd2: 68bb ldr r3, [r7, #8] - 8007dd4: 791b ldrb r3, [r3, #4] - 8007dd6: 2b01 cmp r3, #1 - 8007dd8: d128 bne.n 8007e2c + 80081aa: 68bb ldr r3, [r7, #8] + 80081ac: 791b ldrb r3, [r3, #4] + 80081ae: 2b01 cmp r3, #1 + 80081b0: d128 bne.n 8008204 { if ((USBx_DEVICE->DSTS & (1U << 8)) == 0U) - 8007dda: 69fb ldr r3, [r7, #28] - 8007ddc: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007de0: 689b ldr r3, [r3, #8] - 8007de2: f403 7380 and.w r3, r3, #256 @ 0x100 - 8007de6: 2b00 cmp r3, #0 - 8007de8: d110 bne.n 8007e0c + 80081b2: 69fb ldr r3, [r7, #28] + 80081b4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80081b8: 689b ldr r3, [r3, #8] + 80081ba: f403 7380 and.w r3, r3, #256 @ 0x100 + 80081be: 2b00 cmp r3, #0 + 80081c0: d110 bne.n 80081e4 { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SODDFRM; - 8007dea: 69bb ldr r3, [r7, #24] - 8007dec: 015a lsls r2, r3, #5 - 8007dee: 69fb ldr r3, [r7, #28] - 8007df0: 4413 add r3, r2 - 8007df2: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007df6: 681b ldr r3, [r3, #0] - 8007df8: 69ba ldr r2, [r7, #24] - 8007dfa: 0151 lsls r1, r2, #5 - 8007dfc: 69fa ldr r2, [r7, #28] - 8007dfe: 440a add r2, r1 - 8007e00: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007e04: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 - 8007e08: 6013 str r3, [r2, #0] - 8007e0a: e00f b.n 8007e2c + 80081c2: 69bb ldr r3, [r7, #24] + 80081c4: 015a lsls r2, r3, #5 + 80081c6: 69fb ldr r3, [r7, #28] + 80081c8: 4413 add r3, r2 + 80081ca: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80081ce: 681b ldr r3, [r3, #0] + 80081d0: 69ba ldr r2, [r7, #24] + 80081d2: 0151 lsls r1, r2, #5 + 80081d4: 69fa ldr r2, [r7, #28] + 80081d6: 440a add r2, r1 + 80081d8: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 80081dc: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 + 80081e0: 6013 str r3, [r2, #0] + 80081e2: e00f b.n 8008204 } else { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SD0PID_SEVNFRM; - 8007e0c: 69bb ldr r3, [r7, #24] - 8007e0e: 015a lsls r2, r3, #5 - 8007e10: 69fb ldr r3, [r7, #28] - 8007e12: 4413 add r3, r2 - 8007e14: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007e18: 681b ldr r3, [r3, #0] - 8007e1a: 69ba ldr r2, [r7, #24] - 8007e1c: 0151 lsls r1, r2, #5 - 8007e1e: 69fa ldr r2, [r7, #28] - 8007e20: 440a add r2, r1 - 8007e22: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007e26: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007e2a: 6013 str r3, [r2, #0] + 80081e4: 69bb ldr r3, [r7, #24] + 80081e6: 015a lsls r2, r3, #5 + 80081e8: 69fb ldr r3, [r7, #28] + 80081ea: 4413 add r3, r2 + 80081ec: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80081f0: 681b ldr r3, [r3, #0] + 80081f2: 69ba ldr r2, [r7, #24] + 80081f4: 0151 lsls r1, r2, #5 + 80081f6: 69fa ldr r2, [r7, #28] + 80081f8: 440a add r2, r1 + 80081fa: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 80081fe: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8008202: 6013 str r3, [r2, #0] } } /* EP enable */ USBx_OUTEP(epnum)->DOEPCTL |= (USB_OTG_DOEPCTL_CNAK | USB_OTG_DOEPCTL_EPENA); - 8007e2c: 69bb ldr r3, [r7, #24] - 8007e2e: 015a lsls r2, r3, #5 - 8007e30: 69fb ldr r3, [r7, #28] - 8007e32: 4413 add r3, r2 - 8007e34: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007e38: 681b ldr r3, [r3, #0] - 8007e3a: 69ba ldr r2, [r7, #24] - 8007e3c: 0151 lsls r1, r2, #5 - 8007e3e: 69fa ldr r2, [r7, #28] - 8007e40: 440a add r2, r1 - 8007e42: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007e46: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 - 8007e4a: 6013 str r3, [r2, #0] + 8008204: 69bb ldr r3, [r7, #24] + 8008206: 015a lsls r2, r3, #5 + 8008208: 69fb ldr r3, [r7, #28] + 800820a: 4413 add r3, r2 + 800820c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008210: 681b ldr r3, [r3, #0] + 8008212: 69ba ldr r2, [r7, #24] + 8008214: 0151 lsls r1, r2, #5 + 8008216: 69fa ldr r2, [r7, #28] + 8008218: 440a add r2, r1 + 800821a: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800821e: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 + 8008222: 6013 str r3, [r2, #0] } return HAL_OK; - 8007e4c: 2300 movs r3, #0 + 8008224: 2300 movs r3, #0 } - 8007e4e: 4618 mov r0, r3 - 8007e50: 3720 adds r7, #32 - 8007e52: 46bd mov sp, r7 - 8007e54: bd80 pop {r7, pc} - 8007e56: bf00 nop - 8007e58: 1ff80000 .word 0x1ff80000 + 8008226: 4618 mov r0, r3 + 8008228: 3720 adds r7, #32 + 800822a: 46bd mov sp, r7 + 800822c: bd80 pop {r7, pc} + 800822e: bf00 nop + 8008230: 1ff80000 .word 0x1ff80000 -08007e5c : +08008234 : * @param USBx usb device instance * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_EPStopXfer(const USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep) { - 8007e5c: b480 push {r7} - 8007e5e: b087 sub sp, #28 - 8007e60: af00 add r7, sp, #0 - 8007e62: 6078 str r0, [r7, #4] - 8007e64: 6039 str r1, [r7, #0] + 8008234: b480 push {r7} + 8008236: b087 sub sp, #28 + 8008238: af00 add r7, sp, #0 + 800823a: 6078 str r0, [r7, #4] + 800823c: 6039 str r1, [r7, #0] __IO uint32_t count = 0U; - 8007e66: 2300 movs r3, #0 - 8007e68: 60fb str r3, [r7, #12] + 800823e: 2300 movs r3, #0 + 8008240: 60fb str r3, [r7, #12] HAL_StatusTypeDef ret = HAL_OK; - 8007e6a: 2300 movs r3, #0 - 8007e6c: 75fb strb r3, [r7, #23] + 8008242: 2300 movs r3, #0 + 8008244: 75fb strb r3, [r7, #23] uint32_t USBx_BASE = (uint32_t)USBx; - 8007e6e: 687b ldr r3, [r7, #4] - 8007e70: 613b str r3, [r7, #16] + 8008246: 687b ldr r3, [r7, #4] + 8008248: 613b str r3, [r7, #16] /* IN endpoint */ if (ep->is_in == 1U) - 8007e72: 683b ldr r3, [r7, #0] - 8007e74: 785b ldrb r3, [r3, #1] - 8007e76: 2b01 cmp r3, #1 - 8007e78: d14a bne.n 8007f10 + 800824a: 683b ldr r3, [r7, #0] + 800824c: 785b ldrb r3, [r3, #1] + 800824e: 2b01 cmp r3, #1 + 8008250: d14a bne.n 80082e8 { /* EP enable, IN data in FIFO */ if (((USBx_INEP(ep->num)->DIEPCTL) & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA) - 8007e7a: 683b ldr r3, [r7, #0] - 8007e7c: 781b ldrb r3, [r3, #0] - 8007e7e: 015a lsls r2, r3, #5 - 8007e80: 693b ldr r3, [r7, #16] - 8007e82: 4413 add r3, r2 - 8007e84: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007e88: 681b ldr r3, [r3, #0] - 8007e8a: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007e8e: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007e92: f040 8086 bne.w 8007fa2 + 8008252: 683b ldr r3, [r7, #0] + 8008254: 781b ldrb r3, [r3, #0] + 8008256: 015a lsls r2, r3, #5 + 8008258: 693b ldr r3, [r7, #16] + 800825a: 4413 add r3, r2 + 800825c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8008260: 681b ldr r3, [r3, #0] + 8008262: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8008266: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 800826a: f040 8086 bne.w 800837a { USBx_INEP(ep->num)->DIEPCTL |= (USB_OTG_DIEPCTL_SNAK); - 8007e96: 683b ldr r3, [r7, #0] - 8007e98: 781b ldrb r3, [r3, #0] - 8007e9a: 015a lsls r2, r3, #5 - 8007e9c: 693b ldr r3, [r7, #16] - 8007e9e: 4413 add r3, r2 - 8007ea0: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ea4: 681b ldr r3, [r3, #0] - 8007ea6: 683a ldr r2, [r7, #0] - 8007ea8: 7812 ldrb r2, [r2, #0] - 8007eaa: 0151 lsls r1, r2, #5 - 8007eac: 693a ldr r2, [r7, #16] - 8007eae: 440a add r2, r1 - 8007eb0: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007eb4: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 8007eb8: 6013 str r3, [r2, #0] + 800826e: 683b ldr r3, [r7, #0] + 8008270: 781b ldrb r3, [r3, #0] + 8008272: 015a lsls r2, r3, #5 + 8008274: 693b ldr r3, [r7, #16] + 8008276: 4413 add r3, r2 + 8008278: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800827c: 681b ldr r3, [r3, #0] + 800827e: 683a ldr r2, [r7, #0] + 8008280: 7812 ldrb r2, [r2, #0] + 8008282: 0151 lsls r1, r2, #5 + 8008284: 693a ldr r2, [r7, #16] + 8008286: 440a add r2, r1 + 8008288: f502 6210 add.w r2, r2, #2304 @ 0x900 + 800828c: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 8008290: 6013 str r3, [r2, #0] USBx_INEP(ep->num)->DIEPCTL |= (USB_OTG_DIEPCTL_EPDIS); - 8007eba: 683b ldr r3, [r7, #0] - 8007ebc: 781b ldrb r3, [r3, #0] - 8007ebe: 015a lsls r2, r3, #5 - 8007ec0: 693b ldr r3, [r7, #16] - 8007ec2: 4413 add r3, r2 - 8007ec4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ec8: 681b ldr r3, [r3, #0] - 8007eca: 683a ldr r2, [r7, #0] - 8007ecc: 7812 ldrb r2, [r2, #0] - 8007ece: 0151 lsls r1, r2, #5 - 8007ed0: 693a ldr r2, [r7, #16] - 8007ed2: 440a add r2, r1 - 8007ed4: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007ed8: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007edc: 6013 str r3, [r2, #0] + 8008292: 683b ldr r3, [r7, #0] + 8008294: 781b ldrb r3, [r3, #0] + 8008296: 015a lsls r2, r3, #5 + 8008298: 693b ldr r3, [r7, #16] + 800829a: 4413 add r3, r2 + 800829c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80082a0: 681b ldr r3, [r3, #0] + 80082a2: 683a ldr r2, [r7, #0] + 80082a4: 7812 ldrb r2, [r2, #0] + 80082a6: 0151 lsls r1, r2, #5 + 80082a8: 693a ldr r2, [r7, #16] + 80082aa: 440a add r2, r1 + 80082ac: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80082b0: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 80082b4: 6013 str r3, [r2, #0] do { count++; - 8007ede: 68fb ldr r3, [r7, #12] - 8007ee0: 3301 adds r3, #1 - 8007ee2: 60fb str r3, [r7, #12] + 80082b6: 68fb ldr r3, [r7, #12] + 80082b8: 3301 adds r3, #1 + 80082ba: 60fb str r3, [r7, #12] if (count > 10000U) - 8007ee4: 68fb ldr r3, [r7, #12] - 8007ee6: f242 7210 movw r2, #10000 @ 0x2710 - 8007eea: 4293 cmp r3, r2 - 8007eec: d902 bls.n 8007ef4 + 80082bc: 68fb ldr r3, [r7, #12] + 80082be: f242 7210 movw r2, #10000 @ 0x2710 + 80082c2: 4293 cmp r3, r2 + 80082c4: d902 bls.n 80082cc { ret = HAL_ERROR; - 8007eee: 2301 movs r3, #1 - 8007ef0: 75fb strb r3, [r7, #23] + 80082c6: 2301 movs r3, #1 + 80082c8: 75fb strb r3, [r7, #23] break; - 8007ef2: e056 b.n 8007fa2 + 80082ca: e056 b.n 800837a } } while (((USBx_INEP(ep->num)->DIEPCTL) & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA); - 8007ef4: 683b ldr r3, [r7, #0] - 8007ef6: 781b ldrb r3, [r3, #0] - 8007ef8: 015a lsls r2, r3, #5 - 8007efa: 693b ldr r3, [r7, #16] - 8007efc: 4413 add r3, r2 - 8007efe: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007f02: 681b ldr r3, [r3, #0] - 8007f04: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007f08: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007f0c: d0e7 beq.n 8007ede - 8007f0e: e048 b.n 8007fa2 + 80082cc: 683b ldr r3, [r7, #0] + 80082ce: 781b ldrb r3, [r3, #0] + 80082d0: 015a lsls r2, r3, #5 + 80082d2: 693b ldr r3, [r7, #16] + 80082d4: 4413 add r3, r2 + 80082d6: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80082da: 681b ldr r3, [r3, #0] + 80082dc: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80082e0: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 80082e4: d0e7 beq.n 80082b6 + 80082e6: e048 b.n 800837a } } else /* OUT endpoint */ { if (((USBx_OUTEP(ep->num)->DOEPCTL) & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8007f10: 683b ldr r3, [r7, #0] - 8007f12: 781b ldrb r3, [r3, #0] - 8007f14: 015a lsls r2, r3, #5 - 8007f16: 693b ldr r3, [r7, #16] - 8007f18: 4413 add r3, r2 - 8007f1a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f1e: 681b ldr r3, [r3, #0] - 8007f20: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007f24: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007f28: d13b bne.n 8007fa2 + 80082e8: 683b ldr r3, [r7, #0] + 80082ea: 781b ldrb r3, [r3, #0] + 80082ec: 015a lsls r2, r3, #5 + 80082ee: 693b ldr r3, [r7, #16] + 80082f0: 4413 add r3, r2 + 80082f2: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80082f6: 681b ldr r3, [r3, #0] + 80082f8: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80082fc: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8008300: d13b bne.n 800837a { USBx_OUTEP(ep->num)->DOEPCTL |= (USB_OTG_DOEPCTL_SNAK); - 8007f2a: 683b ldr r3, [r7, #0] - 8007f2c: 781b ldrb r3, [r3, #0] - 8007f2e: 015a lsls r2, r3, #5 - 8007f30: 693b ldr r3, [r7, #16] - 8007f32: 4413 add r3, r2 - 8007f34: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f38: 681b ldr r3, [r3, #0] - 8007f3a: 683a ldr r2, [r7, #0] - 8007f3c: 7812 ldrb r2, [r2, #0] - 8007f3e: 0151 lsls r1, r2, #5 - 8007f40: 693a ldr r2, [r7, #16] - 8007f42: 440a add r2, r1 - 8007f44: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007f48: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 8007f4c: 6013 str r3, [r2, #0] + 8008302: 683b ldr r3, [r7, #0] + 8008304: 781b ldrb r3, [r3, #0] + 8008306: 015a lsls r2, r3, #5 + 8008308: 693b ldr r3, [r7, #16] + 800830a: 4413 add r3, r2 + 800830c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008310: 681b ldr r3, [r3, #0] + 8008312: 683a ldr r2, [r7, #0] + 8008314: 7812 ldrb r2, [r2, #0] + 8008316: 0151 lsls r1, r2, #5 + 8008318: 693a ldr r2, [r7, #16] + 800831a: 440a add r2, r1 + 800831c: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008320: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 8008324: 6013 str r3, [r2, #0] USBx_OUTEP(ep->num)->DOEPCTL |= (USB_OTG_DOEPCTL_EPDIS); - 8007f4e: 683b ldr r3, [r7, #0] - 8007f50: 781b ldrb r3, [r3, #0] - 8007f52: 015a lsls r2, r3, #5 - 8007f54: 693b ldr r3, [r7, #16] - 8007f56: 4413 add r3, r2 - 8007f58: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f5c: 681b ldr r3, [r3, #0] - 8007f5e: 683a ldr r2, [r7, #0] - 8007f60: 7812 ldrb r2, [r2, #0] - 8007f62: 0151 lsls r1, r2, #5 - 8007f64: 693a ldr r2, [r7, #16] - 8007f66: 440a add r2, r1 - 8007f68: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007f6c: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007f70: 6013 str r3, [r2, #0] + 8008326: 683b ldr r3, [r7, #0] + 8008328: 781b ldrb r3, [r3, #0] + 800832a: 015a lsls r2, r3, #5 + 800832c: 693b ldr r3, [r7, #16] + 800832e: 4413 add r3, r2 + 8008330: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008334: 681b ldr r3, [r3, #0] + 8008336: 683a ldr r2, [r7, #0] + 8008338: 7812 ldrb r2, [r2, #0] + 800833a: 0151 lsls r1, r2, #5 + 800833c: 693a ldr r2, [r7, #16] + 800833e: 440a add r2, r1 + 8008340: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008344: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 8008348: 6013 str r3, [r2, #0] do { count++; - 8007f72: 68fb ldr r3, [r7, #12] - 8007f74: 3301 adds r3, #1 - 8007f76: 60fb str r3, [r7, #12] + 800834a: 68fb ldr r3, [r7, #12] + 800834c: 3301 adds r3, #1 + 800834e: 60fb str r3, [r7, #12] if (count > 10000U) - 8007f78: 68fb ldr r3, [r7, #12] - 8007f7a: f242 7210 movw r2, #10000 @ 0x2710 - 8007f7e: 4293 cmp r3, r2 - 8007f80: d902 bls.n 8007f88 + 8008350: 68fb ldr r3, [r7, #12] + 8008352: f242 7210 movw r2, #10000 @ 0x2710 + 8008356: 4293 cmp r3, r2 + 8008358: d902 bls.n 8008360 { ret = HAL_ERROR; - 8007f82: 2301 movs r3, #1 - 8007f84: 75fb strb r3, [r7, #23] + 800835a: 2301 movs r3, #1 + 800835c: 75fb strb r3, [r7, #23] break; - 8007f86: e00c b.n 8007fa2 + 800835e: e00c b.n 800837a } } while (((USBx_OUTEP(ep->num)->DOEPCTL) & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA); - 8007f88: 683b ldr r3, [r7, #0] - 8007f8a: 781b ldrb r3, [r3, #0] - 8007f8c: 015a lsls r2, r3, #5 - 8007f8e: 693b ldr r3, [r7, #16] - 8007f90: 4413 add r3, r2 - 8007f92: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f96: 681b ldr r3, [r3, #0] - 8007f98: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007f9c: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007fa0: d0e7 beq.n 8007f72 + 8008360: 683b ldr r3, [r7, #0] + 8008362: 781b ldrb r3, [r3, #0] + 8008364: 015a lsls r2, r3, #5 + 8008366: 693b ldr r3, [r7, #16] + 8008368: 4413 add r3, r2 + 800836a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800836e: 681b ldr r3, [r3, #0] + 8008370: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8008374: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8008378: d0e7 beq.n 800834a } } return ret; - 8007fa2: 7dfb ldrb r3, [r7, #23] + 800837a: 7dfb ldrb r3, [r7, #23] } - 8007fa4: 4618 mov r0, r3 - 8007fa6: 371c adds r7, #28 - 8007fa8: 46bd mov sp, r7 - 8007faa: f85d 7b04 ldr.w r7, [sp], #4 - 8007fae: 4770 bx lr + 800837c: 4618 mov r0, r3 + 800837e: 371c adds r7, #28 + 8008380: 46bd mov sp, r7 + 8008382: f85d 7b04 ldr.w r7, [sp], #4 + 8008386: 4770 bx lr -08007fb0 : +08008388 : * 1 : DMA feature used * @retval HAL status */ HAL_StatusTypeDef USB_WritePacket(const USB_OTG_GlobalTypeDef *USBx, uint8_t *src, uint8_t ch_ep_num, uint16_t len, uint8_t dma) { - 8007fb0: b480 push {r7} - 8007fb2: b089 sub sp, #36 @ 0x24 - 8007fb4: af00 add r7, sp, #0 - 8007fb6: 60f8 str r0, [r7, #12] - 8007fb8: 60b9 str r1, [r7, #8] - 8007fba: 4611 mov r1, r2 - 8007fbc: 461a mov r2, r3 - 8007fbe: 460b mov r3, r1 - 8007fc0: 71fb strb r3, [r7, #7] - 8007fc2: 4613 mov r3, r2 - 8007fc4: 80bb strh r3, [r7, #4] + 8008388: b480 push {r7} + 800838a: b089 sub sp, #36 @ 0x24 + 800838c: af00 add r7, sp, #0 + 800838e: 60f8 str r0, [r7, #12] + 8008390: 60b9 str r1, [r7, #8] + 8008392: 4611 mov r1, r2 + 8008394: 461a mov r2, r3 + 8008396: 460b mov r3, r1 + 8008398: 71fb strb r3, [r7, #7] + 800839a: 4613 mov r3, r2 + 800839c: 80bb strh r3, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 8007fc6: 68fb ldr r3, [r7, #12] - 8007fc8: 617b str r3, [r7, #20] + 800839e: 68fb ldr r3, [r7, #12] + 80083a0: 617b str r3, [r7, #20] uint8_t *pSrc = src; - 8007fca: 68bb ldr r3, [r7, #8] - 8007fcc: 61fb str r3, [r7, #28] + 80083a2: 68bb ldr r3, [r7, #8] + 80083a4: 61fb str r3, [r7, #28] uint32_t count32b; uint32_t i; if (dma == 0U) - 8007fce: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 - 8007fd2: 2b00 cmp r3, #0 - 8007fd4: d123 bne.n 800801e + 80083a6: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 + 80083aa: 2b00 cmp r3, #0 + 80083ac: d123 bne.n 80083f6 { count32b = ((uint32_t)len + 3U) / 4U; - 8007fd6: 88bb ldrh r3, [r7, #4] - 8007fd8: 3303 adds r3, #3 - 8007fda: 089b lsrs r3, r3, #2 - 8007fdc: 613b str r3, [r7, #16] + 80083ae: 88bb ldrh r3, [r7, #4] + 80083b0: 3303 adds r3, #3 + 80083b2: 089b lsrs r3, r3, #2 + 80083b4: 613b str r3, [r7, #16] for (i = 0U; i < count32b; i++) - 8007fde: 2300 movs r3, #0 - 8007fe0: 61bb str r3, [r7, #24] - 8007fe2: e018 b.n 8008016 + 80083b6: 2300 movs r3, #0 + 80083b8: 61bb str r3, [r7, #24] + 80083ba: e018 b.n 80083ee { USBx_DFIFO((uint32_t)ch_ep_num) = __UNALIGNED_UINT32_READ(pSrc); - 8007fe4: 79fb ldrb r3, [r7, #7] - 8007fe6: 031a lsls r2, r3, #12 - 8007fe8: 697b ldr r3, [r7, #20] - 8007fea: 4413 add r3, r2 - 8007fec: f503 5380 add.w r3, r3, #4096 @ 0x1000 - 8007ff0: 461a mov r2, r3 - 8007ff2: 69fb ldr r3, [r7, #28] - 8007ff4: 681b ldr r3, [r3, #0] - 8007ff6: 6013 str r3, [r2, #0] + 80083bc: 79fb ldrb r3, [r7, #7] + 80083be: 031a lsls r2, r3, #12 + 80083c0: 697b ldr r3, [r7, #20] + 80083c2: 4413 add r3, r2 + 80083c4: f503 5380 add.w r3, r3, #4096 @ 0x1000 + 80083c8: 461a mov r2, r3 + 80083ca: 69fb ldr r3, [r7, #28] + 80083cc: 681b ldr r3, [r3, #0] + 80083ce: 6013 str r3, [r2, #0] pSrc++; - 8007ff8: 69fb ldr r3, [r7, #28] - 8007ffa: 3301 adds r3, #1 - 8007ffc: 61fb str r3, [r7, #28] + 80083d0: 69fb ldr r3, [r7, #28] + 80083d2: 3301 adds r3, #1 + 80083d4: 61fb str r3, [r7, #28] pSrc++; - 8007ffe: 69fb ldr r3, [r7, #28] - 8008000: 3301 adds r3, #1 - 8008002: 61fb str r3, [r7, #28] + 80083d6: 69fb ldr r3, [r7, #28] + 80083d8: 3301 adds r3, #1 + 80083da: 61fb str r3, [r7, #28] pSrc++; - 8008004: 69fb ldr r3, [r7, #28] - 8008006: 3301 adds r3, #1 - 8008008: 61fb str r3, [r7, #28] + 80083dc: 69fb ldr r3, [r7, #28] + 80083de: 3301 adds r3, #1 + 80083e0: 61fb str r3, [r7, #28] pSrc++; - 800800a: 69fb ldr r3, [r7, #28] - 800800c: 3301 adds r3, #1 - 800800e: 61fb str r3, [r7, #28] + 80083e2: 69fb ldr r3, [r7, #28] + 80083e4: 3301 adds r3, #1 + 80083e6: 61fb str r3, [r7, #28] for (i = 0U; i < count32b; i++) - 8008010: 69bb ldr r3, [r7, #24] - 8008012: 3301 adds r3, #1 - 8008014: 61bb str r3, [r7, #24] - 8008016: 69ba ldr r2, [r7, #24] - 8008018: 693b ldr r3, [r7, #16] - 800801a: 429a cmp r2, r3 - 800801c: d3e2 bcc.n 8007fe4 + 80083e8: 69bb ldr r3, [r7, #24] + 80083ea: 3301 adds r3, #1 + 80083ec: 61bb str r3, [r7, #24] + 80083ee: 69ba ldr r2, [r7, #24] + 80083f0: 693b ldr r3, [r7, #16] + 80083f2: 429a cmp r2, r3 + 80083f4: d3e2 bcc.n 80083bc } } return HAL_OK; - 800801e: 2300 movs r3, #0 + 80083f6: 2300 movs r3, #0 } - 8008020: 4618 mov r0, r3 - 8008022: 3724 adds r7, #36 @ 0x24 - 8008024: 46bd mov sp, r7 - 8008026: f85d 7b04 ldr.w r7, [sp], #4 - 800802a: 4770 bx lr + 80083f8: 4618 mov r0, r3 + 80083fa: 3724 adds r7, #36 @ 0x24 + 80083fc: 46bd mov sp, r7 + 80083fe: f85d 7b04 ldr.w r7, [sp], #4 + 8008402: 4770 bx lr -0800802c : +08008404 : * @param dest source pointer * @param len Number of bytes to read * @retval pointer to destination buffer */ void *USB_ReadPacket(const USB_OTG_GlobalTypeDef *USBx, uint8_t *dest, uint16_t len) { - 800802c: b480 push {r7} - 800802e: b08b sub sp, #44 @ 0x2c - 8008030: af00 add r7, sp, #0 - 8008032: 60f8 str r0, [r7, #12] - 8008034: 60b9 str r1, [r7, #8] - 8008036: 4613 mov r3, r2 - 8008038: 80fb strh r3, [r7, #6] + 8008404: b480 push {r7} + 8008406: b08b sub sp, #44 @ 0x2c + 8008408: af00 add r7, sp, #0 + 800840a: 60f8 str r0, [r7, #12] + 800840c: 60b9 str r1, [r7, #8] + 800840e: 4613 mov r3, r2 + 8008410: 80fb strh r3, [r7, #6] uint32_t USBx_BASE = (uint32_t)USBx; - 800803a: 68fb ldr r3, [r7, #12] - 800803c: 61bb str r3, [r7, #24] + 8008412: 68fb ldr r3, [r7, #12] + 8008414: 61bb str r3, [r7, #24] uint8_t *pDest = dest; - 800803e: 68bb ldr r3, [r7, #8] - 8008040: 627b str r3, [r7, #36] @ 0x24 + 8008416: 68bb ldr r3, [r7, #8] + 8008418: 627b str r3, [r7, #36] @ 0x24 uint32_t pData; uint32_t i; uint32_t count32b = (uint32_t)len >> 2U; - 8008042: 88fb ldrh r3, [r7, #6] - 8008044: 089b lsrs r3, r3, #2 - 8008046: b29b uxth r3, r3 - 8008048: 617b str r3, [r7, #20] + 800841a: 88fb ldrh r3, [r7, #6] + 800841c: 089b lsrs r3, r3, #2 + 800841e: b29b uxth r3, r3 + 8008420: 617b str r3, [r7, #20] uint16_t remaining_bytes = len % 4U; - 800804a: 88fb ldrh r3, [r7, #6] - 800804c: f003 0303 and.w r3, r3, #3 - 8008050: 83fb strh r3, [r7, #30] + 8008422: 88fb ldrh r3, [r7, #6] + 8008424: f003 0303 and.w r3, r3, #3 + 8008428: 83fb strh r3, [r7, #30] for (i = 0U; i < count32b; i++) - 8008052: 2300 movs r3, #0 - 8008054: 623b str r3, [r7, #32] - 8008056: e014 b.n 8008082 + 800842a: 2300 movs r3, #0 + 800842c: 623b str r3, [r7, #32] + 800842e: e014 b.n 800845a { __UNALIGNED_UINT32_WRITE(pDest, USBx_DFIFO(0U)); - 8008058: 69bb ldr r3, [r7, #24] - 800805a: f503 5380 add.w r3, r3, #4096 @ 0x1000 - 800805e: 681a ldr r2, [r3, #0] - 8008060: 6a7b ldr r3, [r7, #36] @ 0x24 - 8008062: 601a str r2, [r3, #0] + 8008430: 69bb ldr r3, [r7, #24] + 8008432: f503 5380 add.w r3, r3, #4096 @ 0x1000 + 8008436: 681a ldr r2, [r3, #0] + 8008438: 6a7b ldr r3, [r7, #36] @ 0x24 + 800843a: 601a str r2, [r3, #0] pDest++; - 8008064: 6a7b ldr r3, [r7, #36] @ 0x24 - 8008066: 3301 adds r3, #1 - 8008068: 627b str r3, [r7, #36] @ 0x24 + 800843c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800843e: 3301 adds r3, #1 + 8008440: 627b str r3, [r7, #36] @ 0x24 pDest++; - 800806a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800806c: 3301 adds r3, #1 - 800806e: 627b str r3, [r7, #36] @ 0x24 + 8008442: 6a7b ldr r3, [r7, #36] @ 0x24 + 8008444: 3301 adds r3, #1 + 8008446: 627b str r3, [r7, #36] @ 0x24 pDest++; - 8008070: 6a7b ldr r3, [r7, #36] @ 0x24 - 8008072: 3301 adds r3, #1 - 8008074: 627b str r3, [r7, #36] @ 0x24 + 8008448: 6a7b ldr r3, [r7, #36] @ 0x24 + 800844a: 3301 adds r3, #1 + 800844c: 627b str r3, [r7, #36] @ 0x24 pDest++; - 8008076: 6a7b ldr r3, [r7, #36] @ 0x24 - 8008078: 3301 adds r3, #1 - 800807a: 627b str r3, [r7, #36] @ 0x24 + 800844e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8008450: 3301 adds r3, #1 + 8008452: 627b str r3, [r7, #36] @ 0x24 for (i = 0U; i < count32b; i++) - 800807c: 6a3b ldr r3, [r7, #32] - 800807e: 3301 adds r3, #1 - 8008080: 623b str r3, [r7, #32] - 8008082: 6a3a ldr r2, [r7, #32] - 8008084: 697b ldr r3, [r7, #20] - 8008086: 429a cmp r2, r3 - 8008088: d3e6 bcc.n 8008058 + 8008454: 6a3b ldr r3, [r7, #32] + 8008456: 3301 adds r3, #1 + 8008458: 623b str r3, [r7, #32] + 800845a: 6a3a ldr r2, [r7, #32] + 800845c: 697b ldr r3, [r7, #20] + 800845e: 429a cmp r2, r3 + 8008460: d3e6 bcc.n 8008430 } /* When Number of data is not word aligned, read the remaining byte */ if (remaining_bytes != 0U) - 800808a: 8bfb ldrh r3, [r7, #30] - 800808c: 2b00 cmp r3, #0 - 800808e: d01e beq.n 80080ce + 8008462: 8bfb ldrh r3, [r7, #30] + 8008464: 2b00 cmp r3, #0 + 8008466: d01e beq.n 80084a6 { i = 0U; - 8008090: 2300 movs r3, #0 - 8008092: 623b str r3, [r7, #32] + 8008468: 2300 movs r3, #0 + 800846a: 623b str r3, [r7, #32] __UNALIGNED_UINT32_WRITE(&pData, USBx_DFIFO(0U)); - 8008094: 69bb ldr r3, [r7, #24] - 8008096: f503 5380 add.w r3, r3, #4096 @ 0x1000 - 800809a: 461a mov r2, r3 - 800809c: f107 0310 add.w r3, r7, #16 - 80080a0: 6812 ldr r2, [r2, #0] - 80080a2: 601a str r2, [r3, #0] + 800846c: 69bb ldr r3, [r7, #24] + 800846e: f503 5380 add.w r3, r3, #4096 @ 0x1000 + 8008472: 461a mov r2, r3 + 8008474: f107 0310 add.w r3, r7, #16 + 8008478: 6812 ldr r2, [r2, #0] + 800847a: 601a str r2, [r3, #0] do { *(uint8_t *)pDest = (uint8_t)(pData >> (8U * (uint8_t)(i))); - 80080a4: 693a ldr r2, [r7, #16] - 80080a6: 6a3b ldr r3, [r7, #32] - 80080a8: b2db uxtb r3, r3 - 80080aa: 00db lsls r3, r3, #3 - 80080ac: fa22 f303 lsr.w r3, r2, r3 - 80080b0: b2da uxtb r2, r3 - 80080b2: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080b4: 701a strb r2, [r3, #0] + 800847c: 693a ldr r2, [r7, #16] + 800847e: 6a3b ldr r3, [r7, #32] + 8008480: b2db uxtb r3, r3 + 8008482: 00db lsls r3, r3, #3 + 8008484: fa22 f303 lsr.w r3, r2, r3 + 8008488: b2da uxtb r2, r3 + 800848a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800848c: 701a strb r2, [r3, #0] i++; - 80080b6: 6a3b ldr r3, [r7, #32] - 80080b8: 3301 adds r3, #1 - 80080ba: 623b str r3, [r7, #32] + 800848e: 6a3b ldr r3, [r7, #32] + 8008490: 3301 adds r3, #1 + 8008492: 623b str r3, [r7, #32] pDest++; - 80080bc: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080be: 3301 adds r3, #1 - 80080c0: 627b str r3, [r7, #36] @ 0x24 + 8008494: 6a7b ldr r3, [r7, #36] @ 0x24 + 8008496: 3301 adds r3, #1 + 8008498: 627b str r3, [r7, #36] @ 0x24 remaining_bytes--; - 80080c2: 8bfb ldrh r3, [r7, #30] - 80080c4: 3b01 subs r3, #1 - 80080c6: 83fb strh r3, [r7, #30] + 800849a: 8bfb ldrh r3, [r7, #30] + 800849c: 3b01 subs r3, #1 + 800849e: 83fb strh r3, [r7, #30] } while (remaining_bytes != 0U); - 80080c8: 8bfb ldrh r3, [r7, #30] - 80080ca: 2b00 cmp r3, #0 - 80080cc: d1ea bne.n 80080a4 + 80084a0: 8bfb ldrh r3, [r7, #30] + 80084a2: 2b00 cmp r3, #0 + 80084a4: d1ea bne.n 800847c } return ((void *)pDest); - 80080ce: 6a7b ldr r3, [r7, #36] @ 0x24 + 80084a6: 6a7b ldr r3, [r7, #36] @ 0x24 } - 80080d0: 4618 mov r0, r3 - 80080d2: 372c adds r7, #44 @ 0x2c - 80080d4: 46bd mov sp, r7 - 80080d6: f85d 7b04 ldr.w r7, [sp], #4 - 80080da: 4770 bx lr + 80084a8: 4618 mov r0, r3 + 80084aa: 372c adds r7, #44 @ 0x2c + 80084ac: 46bd mov sp, r7 + 80084ae: f85d 7b04 ldr.w r7, [sp], #4 + 80084b2: 4770 bx lr -080080dc : +080084b4 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_EPSetStall(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 80080dc: b480 push {r7} - 80080de: b085 sub sp, #20 - 80080e0: af00 add r7, sp, #0 - 80080e2: 6078 str r0, [r7, #4] - 80080e4: 6039 str r1, [r7, #0] + 80084b4: b480 push {r7} + 80084b6: b085 sub sp, #20 + 80084b8: af00 add r7, sp, #0 + 80084ba: 6078 str r0, [r7, #4] + 80084bc: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 80080e6: 687b ldr r3, [r7, #4] - 80080e8: 60fb str r3, [r7, #12] + 80084be: 687b ldr r3, [r7, #4] + 80084c0: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 80080ea: 683b ldr r3, [r7, #0] - 80080ec: 781b ldrb r3, [r3, #0] - 80080ee: 60bb str r3, [r7, #8] + 80084c2: 683b ldr r3, [r7, #0] + 80084c4: 781b ldrb r3, [r3, #0] + 80084c6: 60bb str r3, [r7, #8] if (ep->is_in == 1U) - 80080f0: 683b ldr r3, [r7, #0] - 80080f2: 785b ldrb r3, [r3, #1] - 80080f4: 2b01 cmp r3, #1 - 80080f6: d12c bne.n 8008152 + 80084c8: 683b ldr r3, [r7, #0] + 80084ca: 785b ldrb r3, [r3, #1] + 80084cc: 2b01 cmp r3, #1 + 80084ce: d12c bne.n 800852a { if (((USBx_INEP(epnum)->DIEPCTL & USB_OTG_DIEPCTL_EPENA) == 0U) && (epnum != 0U)) - 80080f8: 68bb ldr r3, [r7, #8] - 80080fa: 015a lsls r2, r3, #5 - 80080fc: 68fb ldr r3, [r7, #12] - 80080fe: 4413 add r3, r2 - 8008100: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008104: 681b ldr r3, [r3, #0] - 8008106: 2b00 cmp r3, #0 - 8008108: db12 blt.n 8008130 - 800810a: 68bb ldr r3, [r7, #8] - 800810c: 2b00 cmp r3, #0 - 800810e: d00f beq.n 8008130 + 80084d0: 68bb ldr r3, [r7, #8] + 80084d2: 015a lsls r2, r3, #5 + 80084d4: 68fb ldr r3, [r7, #12] + 80084d6: 4413 add r3, r2 + 80084d8: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80084dc: 681b ldr r3, [r3, #0] + 80084de: 2b00 cmp r3, #0 + 80084e0: db12 blt.n 8008508 + 80084e2: 68bb ldr r3, [r7, #8] + 80084e4: 2b00 cmp r3, #0 + 80084e6: d00f beq.n 8008508 { USBx_INEP(epnum)->DIEPCTL &= ~(USB_OTG_DIEPCTL_EPDIS); - 8008110: 68bb ldr r3, [r7, #8] - 8008112: 015a lsls r2, r3, #5 - 8008114: 68fb ldr r3, [r7, #12] - 8008116: 4413 add r3, r2 - 8008118: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800811c: 681b ldr r3, [r3, #0] - 800811e: 68ba ldr r2, [r7, #8] - 8008120: 0151 lsls r1, r2, #5 - 8008122: 68fa ldr r2, [r7, #12] - 8008124: 440a add r2, r1 - 8008126: f502 6210 add.w r2, r2, #2304 @ 0x900 - 800812a: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 - 800812e: 6013 str r3, [r2, #0] + 80084e8: 68bb ldr r3, [r7, #8] + 80084ea: 015a lsls r2, r3, #5 + 80084ec: 68fb ldr r3, [r7, #12] + 80084ee: 4413 add r3, r2 + 80084f0: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80084f4: 681b ldr r3, [r3, #0] + 80084f6: 68ba ldr r2, [r7, #8] + 80084f8: 0151 lsls r1, r2, #5 + 80084fa: 68fa ldr r2, [r7, #12] + 80084fc: 440a add r2, r1 + 80084fe: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8008502: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 + 8008506: 6013 str r3, [r2, #0] } USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_STALL; - 8008130: 68bb ldr r3, [r7, #8] - 8008132: 015a lsls r2, r3, #5 - 8008134: 68fb ldr r3, [r7, #12] - 8008136: 4413 add r3, r2 - 8008138: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800813c: 681b ldr r3, [r3, #0] - 800813e: 68ba ldr r2, [r7, #8] - 8008140: 0151 lsls r1, r2, #5 - 8008142: 68fa ldr r2, [r7, #12] - 8008144: 440a add r2, r1 - 8008146: f502 6210 add.w r2, r2, #2304 @ 0x900 - 800814a: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 - 800814e: 6013 str r3, [r2, #0] - 8008150: e02b b.n 80081aa + 8008508: 68bb ldr r3, [r7, #8] + 800850a: 015a lsls r2, r3, #5 + 800850c: 68fb ldr r3, [r7, #12] + 800850e: 4413 add r3, r2 + 8008510: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8008514: 681b ldr r3, [r3, #0] + 8008516: 68ba ldr r2, [r7, #8] + 8008518: 0151 lsls r1, r2, #5 + 800851a: 68fa ldr r2, [r7, #12] + 800851c: 440a add r2, r1 + 800851e: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8008522: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 + 8008526: 6013 str r3, [r2, #0] + 8008528: e02b b.n 8008582 } else { if (((USBx_OUTEP(epnum)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == 0U) && (epnum != 0U)) - 8008152: 68bb ldr r3, [r7, #8] - 8008154: 015a lsls r2, r3, #5 - 8008156: 68fb ldr r3, [r7, #12] - 8008158: 4413 add r3, r2 - 800815a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800815e: 681b ldr r3, [r3, #0] - 8008160: 2b00 cmp r3, #0 - 8008162: db12 blt.n 800818a - 8008164: 68bb ldr r3, [r7, #8] - 8008166: 2b00 cmp r3, #0 - 8008168: d00f beq.n 800818a + 800852a: 68bb ldr r3, [r7, #8] + 800852c: 015a lsls r2, r3, #5 + 800852e: 68fb ldr r3, [r7, #12] + 8008530: 4413 add r3, r2 + 8008532: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008536: 681b ldr r3, [r3, #0] + 8008538: 2b00 cmp r3, #0 + 800853a: db12 blt.n 8008562 + 800853c: 68bb ldr r3, [r7, #8] + 800853e: 2b00 cmp r3, #0 + 8008540: d00f beq.n 8008562 { USBx_OUTEP(epnum)->DOEPCTL &= ~(USB_OTG_DOEPCTL_EPDIS); - 800816a: 68bb ldr r3, [r7, #8] - 800816c: 015a lsls r2, r3, #5 - 800816e: 68fb ldr r3, [r7, #12] - 8008170: 4413 add r3, r2 - 8008172: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008176: 681b ldr r3, [r3, #0] - 8008178: 68ba ldr r2, [r7, #8] - 800817a: 0151 lsls r1, r2, #5 - 800817c: 68fa ldr r2, [r7, #12] - 800817e: 440a add r2, r1 - 8008180: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008184: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 - 8008188: 6013 str r3, [r2, #0] + 8008542: 68bb ldr r3, [r7, #8] + 8008544: 015a lsls r2, r3, #5 + 8008546: 68fb ldr r3, [r7, #12] + 8008548: 4413 add r3, r2 + 800854a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800854e: 681b ldr r3, [r3, #0] + 8008550: 68ba ldr r2, [r7, #8] + 8008552: 0151 lsls r1, r2, #5 + 8008554: 68fa ldr r2, [r7, #12] + 8008556: 440a add r2, r1 + 8008558: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800855c: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 + 8008560: 6013 str r3, [r2, #0] } USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_STALL; - 800818a: 68bb ldr r3, [r7, #8] - 800818c: 015a lsls r2, r3, #5 - 800818e: 68fb ldr r3, [r7, #12] - 8008190: 4413 add r3, r2 - 8008192: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008196: 681b ldr r3, [r3, #0] - 8008198: 68ba ldr r2, [r7, #8] - 800819a: 0151 lsls r1, r2, #5 - 800819c: 68fa ldr r2, [r7, #12] - 800819e: 440a add r2, r1 - 80081a0: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80081a4: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 - 80081a8: 6013 str r3, [r2, #0] + 8008562: 68bb ldr r3, [r7, #8] + 8008564: 015a lsls r2, r3, #5 + 8008566: 68fb ldr r3, [r7, #12] + 8008568: 4413 add r3, r2 + 800856a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800856e: 681b ldr r3, [r3, #0] + 8008570: 68ba ldr r2, [r7, #8] + 8008572: 0151 lsls r1, r2, #5 + 8008574: 68fa ldr r2, [r7, #12] + 8008576: 440a add r2, r1 + 8008578: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800857c: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 + 8008580: 6013 str r3, [r2, #0] } return HAL_OK; - 80081aa: 2300 movs r3, #0 + 8008582: 2300 movs r3, #0 } - 80081ac: 4618 mov r0, r3 - 80081ae: 3714 adds r7, #20 - 80081b0: 46bd mov sp, r7 - 80081b2: f85d 7b04 ldr.w r7, [sp], #4 - 80081b6: 4770 bx lr + 8008584: 4618 mov r0, r3 + 8008586: 3714 adds r7, #20 + 8008588: 46bd mov sp, r7 + 800858a: f85d 7b04 ldr.w r7, [sp], #4 + 800858e: 4770 bx lr -080081b8 : +08008590 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_EPClearStall(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 80081b8: b480 push {r7} - 80081ba: b085 sub sp, #20 - 80081bc: af00 add r7, sp, #0 - 80081be: 6078 str r0, [r7, #4] - 80081c0: 6039 str r1, [r7, #0] + 8008590: b480 push {r7} + 8008592: b085 sub sp, #20 + 8008594: af00 add r7, sp, #0 + 8008596: 6078 str r0, [r7, #4] + 8008598: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 80081c2: 687b ldr r3, [r7, #4] - 80081c4: 60fb str r3, [r7, #12] + 800859a: 687b ldr r3, [r7, #4] + 800859c: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 80081c6: 683b ldr r3, [r7, #0] - 80081c8: 781b ldrb r3, [r3, #0] - 80081ca: 60bb str r3, [r7, #8] + 800859e: 683b ldr r3, [r7, #0] + 80085a0: 781b ldrb r3, [r3, #0] + 80085a2: 60bb str r3, [r7, #8] if (ep->is_in == 1U) - 80081cc: 683b ldr r3, [r7, #0] - 80081ce: 785b ldrb r3, [r3, #1] - 80081d0: 2b01 cmp r3, #1 - 80081d2: d128 bne.n 8008226 + 80085a4: 683b ldr r3, [r7, #0] + 80085a6: 785b ldrb r3, [r3, #1] + 80085a8: 2b01 cmp r3, #1 + 80085aa: d128 bne.n 80085fe { USBx_INEP(epnum)->DIEPCTL &= ~USB_OTG_DIEPCTL_STALL; - 80081d4: 68bb ldr r3, [r7, #8] - 80081d6: 015a lsls r2, r3, #5 - 80081d8: 68fb ldr r3, [r7, #12] - 80081da: 4413 add r3, r2 - 80081dc: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80081e0: 681b ldr r3, [r3, #0] - 80081e2: 68ba ldr r2, [r7, #8] - 80081e4: 0151 lsls r1, r2, #5 - 80081e6: 68fa ldr r2, [r7, #12] - 80081e8: 440a add r2, r1 - 80081ea: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80081ee: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 80081f2: 6013 str r3, [r2, #0] + 80085ac: 68bb ldr r3, [r7, #8] + 80085ae: 015a lsls r2, r3, #5 + 80085b0: 68fb ldr r3, [r7, #12] + 80085b2: 4413 add r3, r2 + 80085b4: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80085b8: 681b ldr r3, [r3, #0] + 80085ba: 68ba ldr r2, [r7, #8] + 80085bc: 0151 lsls r1, r2, #5 + 80085be: 68fa ldr r2, [r7, #12] + 80085c0: 440a add r2, r1 + 80085c2: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80085c6: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 80085ca: 6013 str r3, [r2, #0] if ((ep->type == EP_TYPE_INTR) || (ep->type == EP_TYPE_BULK)) - 80081f4: 683b ldr r3, [r7, #0] - 80081f6: 791b ldrb r3, [r3, #4] - 80081f8: 2b03 cmp r3, #3 - 80081fa: d003 beq.n 8008204 - 80081fc: 683b ldr r3, [r7, #0] - 80081fe: 791b ldrb r3, [r3, #4] - 8008200: 2b02 cmp r3, #2 - 8008202: d138 bne.n 8008276 + 80085cc: 683b ldr r3, [r7, #0] + 80085ce: 791b ldrb r3, [r3, #4] + 80085d0: 2b03 cmp r3, #3 + 80085d2: d003 beq.n 80085dc + 80085d4: 683b ldr r3, [r7, #0] + 80085d6: 791b ldrb r3, [r3, #4] + 80085d8: 2b02 cmp r3, #2 + 80085da: d138 bne.n 800864e { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM; /* DATA0 */ - 8008204: 68bb ldr r3, [r7, #8] - 8008206: 015a lsls r2, r3, #5 - 8008208: 68fb ldr r3, [r7, #12] - 800820a: 4413 add r3, r2 - 800820c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008210: 681b ldr r3, [r3, #0] - 8008212: 68ba ldr r2, [r7, #8] - 8008214: 0151 lsls r1, r2, #5 - 8008216: 68fa ldr r2, [r7, #12] - 8008218: 440a add r2, r1 - 800821a: f502 6210 add.w r2, r2, #2304 @ 0x900 - 800821e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8008222: 6013 str r3, [r2, #0] - 8008224: e027 b.n 8008276 + 80085dc: 68bb ldr r3, [r7, #8] + 80085de: 015a lsls r2, r3, #5 + 80085e0: 68fb ldr r3, [r7, #12] + 80085e2: 4413 add r3, r2 + 80085e4: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80085e8: 681b ldr r3, [r3, #0] + 80085ea: 68ba ldr r2, [r7, #8] + 80085ec: 0151 lsls r1, r2, #5 + 80085ee: 68fa ldr r2, [r7, #12] + 80085f0: 440a add r2, r1 + 80085f2: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80085f6: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80085fa: 6013 str r3, [r2, #0] + 80085fc: e027 b.n 800864e } } else { USBx_OUTEP(epnum)->DOEPCTL &= ~USB_OTG_DOEPCTL_STALL; - 8008226: 68bb ldr r3, [r7, #8] - 8008228: 015a lsls r2, r3, #5 - 800822a: 68fb ldr r3, [r7, #12] - 800822c: 4413 add r3, r2 - 800822e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008232: 681b ldr r3, [r3, #0] - 8008234: 68ba ldr r2, [r7, #8] - 8008236: 0151 lsls r1, r2, #5 - 8008238: 68fa ldr r2, [r7, #12] - 800823a: 440a add r2, r1 - 800823c: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008240: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 8008244: 6013 str r3, [r2, #0] + 80085fe: 68bb ldr r3, [r7, #8] + 8008600: 015a lsls r2, r3, #5 + 8008602: 68fb ldr r3, [r7, #12] + 8008604: 4413 add r3, r2 + 8008606: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800860a: 681b ldr r3, [r3, #0] + 800860c: 68ba ldr r2, [r7, #8] + 800860e: 0151 lsls r1, r2, #5 + 8008610: 68fa ldr r2, [r7, #12] + 8008612: 440a add r2, r1 + 8008614: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008618: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 800861c: 6013 str r3, [r2, #0] if ((ep->type == EP_TYPE_INTR) || (ep->type == EP_TYPE_BULK)) - 8008246: 683b ldr r3, [r7, #0] - 8008248: 791b ldrb r3, [r3, #4] - 800824a: 2b03 cmp r3, #3 - 800824c: d003 beq.n 8008256 - 800824e: 683b ldr r3, [r7, #0] - 8008250: 791b ldrb r3, [r3, #4] - 8008252: 2b02 cmp r3, #2 - 8008254: d10f bne.n 8008276 + 800861e: 683b ldr r3, [r7, #0] + 8008620: 791b ldrb r3, [r3, #4] + 8008622: 2b03 cmp r3, #3 + 8008624: d003 beq.n 800862e + 8008626: 683b ldr r3, [r7, #0] + 8008628: 791b ldrb r3, [r3, #4] + 800862a: 2b02 cmp r3, #2 + 800862c: d10f bne.n 800864e { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SD0PID_SEVNFRM; /* DATA0 */ - 8008256: 68bb ldr r3, [r7, #8] - 8008258: 015a lsls r2, r3, #5 - 800825a: 68fb ldr r3, [r7, #12] - 800825c: 4413 add r3, r2 - 800825e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008262: 681b ldr r3, [r3, #0] - 8008264: 68ba ldr r2, [r7, #8] - 8008266: 0151 lsls r1, r2, #5 - 8008268: 68fa ldr r2, [r7, #12] - 800826a: 440a add r2, r1 - 800826c: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008270: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8008274: 6013 str r3, [r2, #0] + 800862e: 68bb ldr r3, [r7, #8] + 8008630: 015a lsls r2, r3, #5 + 8008632: 68fb ldr r3, [r7, #12] + 8008634: 4413 add r3, r2 + 8008636: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800863a: 681b ldr r3, [r3, #0] + 800863c: 68ba ldr r2, [r7, #8] + 800863e: 0151 lsls r1, r2, #5 + 8008640: 68fa ldr r2, [r7, #12] + 8008642: 440a add r2, r1 + 8008644: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008648: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 800864c: 6013 str r3, [r2, #0] } } return HAL_OK; - 8008276: 2300 movs r3, #0 + 800864e: 2300 movs r3, #0 } - 8008278: 4618 mov r0, r3 - 800827a: 3714 adds r7, #20 - 800827c: 46bd mov sp, r7 - 800827e: f85d 7b04 ldr.w r7, [sp], #4 - 8008282: 4770 bx lr + 8008650: 4618 mov r0, r3 + 8008652: 3714 adds r7, #20 + 8008654: 46bd mov sp, r7 + 8008656: f85d 7b04 ldr.w r7, [sp], #4 + 800865a: 4770 bx lr -08008284 : +0800865c : * @param address new device address to be assigned * This parameter can be a value from 0 to 255 * @retval HAL status */ HAL_StatusTypeDef USB_SetDevAddress(const USB_OTG_GlobalTypeDef *USBx, uint8_t address) { - 8008284: b480 push {r7} - 8008286: b085 sub sp, #20 - 8008288: af00 add r7, sp, #0 - 800828a: 6078 str r0, [r7, #4] - 800828c: 460b mov r3, r1 - 800828e: 70fb strb r3, [r7, #3] + 800865c: b480 push {r7} + 800865e: b085 sub sp, #20 + 8008660: af00 add r7, sp, #0 + 8008662: 6078 str r0, [r7, #4] + 8008664: 460b mov r3, r1 + 8008666: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 8008290: 687b ldr r3, [r7, #4] - 8008292: 60fb str r3, [r7, #12] + 8008668: 687b ldr r3, [r7, #4] + 800866a: 60fb str r3, [r7, #12] USBx_DEVICE->DCFG &= ~(USB_OTG_DCFG_DAD); - 8008294: 68fb ldr r3, [r7, #12] - 8008296: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800829a: 681b ldr r3, [r3, #0] - 800829c: 68fa ldr r2, [r7, #12] - 800829e: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80082a2: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 - 80082a6: 6013 str r3, [r2, #0] + 800866c: 68fb ldr r3, [r7, #12] + 800866e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008672: 681b ldr r3, [r3, #0] + 8008674: 68fa ldr r2, [r7, #12] + 8008676: f502 6200 add.w r2, r2, #2048 @ 0x800 + 800867a: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 + 800867e: 6013 str r3, [r2, #0] USBx_DEVICE->DCFG |= ((uint32_t)address << 4) & USB_OTG_DCFG_DAD; - 80082a8: 68fb ldr r3, [r7, #12] - 80082aa: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80082ae: 681a ldr r2, [r3, #0] - 80082b0: 78fb ldrb r3, [r7, #3] - 80082b2: 011b lsls r3, r3, #4 - 80082b4: f403 63fe and.w r3, r3, #2032 @ 0x7f0 - 80082b8: 68f9 ldr r1, [r7, #12] - 80082ba: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80082be: 4313 orrs r3, r2 - 80082c0: 600b str r3, [r1, #0] + 8008680: 68fb ldr r3, [r7, #12] + 8008682: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008686: 681a ldr r2, [r3, #0] + 8008688: 78fb ldrb r3, [r7, #3] + 800868a: 011b lsls r3, r3, #4 + 800868c: f403 63fe and.w r3, r3, #2032 @ 0x7f0 + 8008690: 68f9 ldr r1, [r7, #12] + 8008692: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8008696: 4313 orrs r3, r2 + 8008698: 600b str r3, [r1, #0] return HAL_OK; - 80082c2: 2300 movs r3, #0 + 800869a: 2300 movs r3, #0 } - 80082c4: 4618 mov r0, r3 - 80082c6: 3714 adds r7, #20 - 80082c8: 46bd mov sp, r7 - 80082ca: f85d 7b04 ldr.w r7, [sp], #4 - 80082ce: 4770 bx lr + 800869c: 4618 mov r0, r3 + 800869e: 3714 adds r7, #20 + 80086a0: 46bd mov sp, r7 + 80086a2: f85d 7b04 ldr.w r7, [sp], #4 + 80086a6: 4770 bx lr -080082d0 : +080086a8 : * @brief USB_DevConnect : Connect the USB device by enabling Rpu * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_DevConnect(const USB_OTG_GlobalTypeDef *USBx) { - 80082d0: b480 push {r7} - 80082d2: b085 sub sp, #20 - 80082d4: af00 add r7, sp, #0 - 80082d6: 6078 str r0, [r7, #4] + 80086a8: b480 push {r7} + 80086aa: b085 sub sp, #20 + 80086ac: af00 add r7, sp, #0 + 80086ae: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 80082d8: 687b ldr r3, [r7, #4] - 80082da: 60fb str r3, [r7, #12] + 80086b0: 687b ldr r3, [r7, #4] + 80086b2: 60fb str r3, [r7, #12] /* In case phy is stopped, ensure to ungate and restore the phy CLK */ USBx_PCGCCTL &= ~(USB_OTG_PCGCCTL_STOPCLK | USB_OTG_PCGCCTL_GATECLK); - 80082dc: 68fb ldr r3, [r7, #12] - 80082de: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 80082e2: 681b ldr r3, [r3, #0] - 80082e4: 68fa ldr r2, [r7, #12] - 80082e6: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 80082ea: f023 0303 bic.w r3, r3, #3 - 80082ee: 6013 str r3, [r2, #0] + 80086b4: 68fb ldr r3, [r7, #12] + 80086b6: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 80086ba: 681b ldr r3, [r3, #0] + 80086bc: 68fa ldr r2, [r7, #12] + 80086be: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 80086c2: f023 0303 bic.w r3, r3, #3 + 80086c6: 6013 str r3, [r2, #0] USBx_DEVICE->DCTL &= ~USB_OTG_DCTL_SDIS; - 80082f0: 68fb ldr r3, [r7, #12] - 80082f2: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80082f6: 685b ldr r3, [r3, #4] - 80082f8: 68fa ldr r2, [r7, #12] - 80082fa: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80082fe: f023 0302 bic.w r3, r3, #2 - 8008302: 6053 str r3, [r2, #4] + 80086c8: 68fb ldr r3, [r7, #12] + 80086ca: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80086ce: 685b ldr r3, [r3, #4] + 80086d0: 68fa ldr r2, [r7, #12] + 80086d2: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80086d6: f023 0302 bic.w r3, r3, #2 + 80086da: 6053 str r3, [r2, #4] return HAL_OK; - 8008304: 2300 movs r3, #0 + 80086dc: 2300 movs r3, #0 } - 8008306: 4618 mov r0, r3 - 8008308: 3714 adds r7, #20 - 800830a: 46bd mov sp, r7 - 800830c: f85d 7b04 ldr.w r7, [sp], #4 - 8008310: 4770 bx lr + 80086de: 4618 mov r0, r3 + 80086e0: 3714 adds r7, #20 + 80086e2: 46bd mov sp, r7 + 80086e4: f85d 7b04 ldr.w r7, [sp], #4 + 80086e8: 4770 bx lr -08008312 : +080086ea : * @brief USB_DevDisconnect : Disconnect the USB device by disabling Rpu * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_DevDisconnect(const USB_OTG_GlobalTypeDef *USBx) { - 8008312: b480 push {r7} - 8008314: b085 sub sp, #20 - 8008316: af00 add r7, sp, #0 - 8008318: 6078 str r0, [r7, #4] + 80086ea: b480 push {r7} + 80086ec: b085 sub sp, #20 + 80086ee: af00 add r7, sp, #0 + 80086f0: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 800831a: 687b ldr r3, [r7, #4] - 800831c: 60fb str r3, [r7, #12] + 80086f2: 687b ldr r3, [r7, #4] + 80086f4: 60fb str r3, [r7, #12] /* In case phy is stopped, ensure to ungate and restore the phy CLK */ USBx_PCGCCTL &= ~(USB_OTG_PCGCCTL_STOPCLK | USB_OTG_PCGCCTL_GATECLK); - 800831e: 68fb ldr r3, [r7, #12] - 8008320: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 8008324: 681b ldr r3, [r3, #0] - 8008326: 68fa ldr r2, [r7, #12] - 8008328: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800832c: f023 0303 bic.w r3, r3, #3 - 8008330: 6013 str r3, [r2, #0] + 80086f6: 68fb ldr r3, [r7, #12] + 80086f8: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 80086fc: 681b ldr r3, [r3, #0] + 80086fe: 68fa ldr r2, [r7, #12] + 8008700: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 8008704: f023 0303 bic.w r3, r3, #3 + 8008708: 6013 str r3, [r2, #0] USBx_DEVICE->DCTL |= USB_OTG_DCTL_SDIS; - 8008332: 68fb ldr r3, [r7, #12] - 8008334: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008338: 685b ldr r3, [r3, #4] - 800833a: 68fa ldr r2, [r7, #12] - 800833c: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8008340: f043 0302 orr.w r3, r3, #2 - 8008344: 6053 str r3, [r2, #4] + 800870a: 68fb ldr r3, [r7, #12] + 800870c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008710: 685b ldr r3, [r3, #4] + 8008712: 68fa ldr r2, [r7, #12] + 8008714: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8008718: f043 0302 orr.w r3, r3, #2 + 800871c: 6053 str r3, [r2, #4] return HAL_OK; - 8008346: 2300 movs r3, #0 + 800871e: 2300 movs r3, #0 } - 8008348: 4618 mov r0, r3 - 800834a: 3714 adds r7, #20 - 800834c: 46bd mov sp, r7 - 800834e: f85d 7b04 ldr.w r7, [sp], #4 - 8008352: 4770 bx lr + 8008720: 4618 mov r0, r3 + 8008722: 3714 adds r7, #20 + 8008724: 46bd mov sp, r7 + 8008726: f85d 7b04 ldr.w r7, [sp], #4 + 800872a: 4770 bx lr -08008354 : +0800872c : * @brief USB_ReadInterrupts: return the global USB interrupt status * @param USBx Selected device * @retval USB Global Interrupt status */ uint32_t USB_ReadInterrupts(USB_OTG_GlobalTypeDef const *USBx) { - 8008354: b480 push {r7} - 8008356: b085 sub sp, #20 - 8008358: af00 add r7, sp, #0 - 800835a: 6078 str r0, [r7, #4] + 800872c: b480 push {r7} + 800872e: b085 sub sp, #20 + 8008730: af00 add r7, sp, #0 + 8008732: 6078 str r0, [r7, #4] uint32_t tmpreg; tmpreg = USBx->GINTSTS; - 800835c: 687b ldr r3, [r7, #4] - 800835e: 695b ldr r3, [r3, #20] - 8008360: 60fb str r3, [r7, #12] + 8008734: 687b ldr r3, [r7, #4] + 8008736: 695b ldr r3, [r3, #20] + 8008738: 60fb str r3, [r7, #12] tmpreg &= USBx->GINTMSK; - 8008362: 687b ldr r3, [r7, #4] - 8008364: 699b ldr r3, [r3, #24] - 8008366: 68fa ldr r2, [r7, #12] - 8008368: 4013 ands r3, r2 - 800836a: 60fb str r3, [r7, #12] + 800873a: 687b ldr r3, [r7, #4] + 800873c: 699b ldr r3, [r3, #24] + 800873e: 68fa ldr r2, [r7, #12] + 8008740: 4013 ands r3, r2 + 8008742: 60fb str r3, [r7, #12] return tmpreg; - 800836c: 68fb ldr r3, [r7, #12] + 8008744: 68fb ldr r3, [r7, #12] } - 800836e: 4618 mov r0, r3 - 8008370: 3714 adds r7, #20 - 8008372: 46bd mov sp, r7 - 8008374: f85d 7b04 ldr.w r7, [sp], #4 - 8008378: 4770 bx lr + 8008746: 4618 mov r0, r3 + 8008748: 3714 adds r7, #20 + 800874a: 46bd mov sp, r7 + 800874c: f85d 7b04 ldr.w r7, [sp], #4 + 8008750: 4770 bx lr -0800837a : +08008752 : * @brief USB_ReadDevAllOutEpInterrupt: return the USB device OUT endpoints interrupt status * @param USBx Selected device * @retval USB Device OUT EP interrupt status */ uint32_t USB_ReadDevAllOutEpInterrupt(const USB_OTG_GlobalTypeDef *USBx) { - 800837a: b480 push {r7} - 800837c: b085 sub sp, #20 - 800837e: af00 add r7, sp, #0 - 8008380: 6078 str r0, [r7, #4] + 8008752: b480 push {r7} + 8008754: b085 sub sp, #20 + 8008756: af00 add r7, sp, #0 + 8008758: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 8008382: 687b ldr r3, [r7, #4] - 8008384: 60fb str r3, [r7, #12] + 800875a: 687b ldr r3, [r7, #4] + 800875c: 60fb str r3, [r7, #12] uint32_t tmpreg; tmpreg = USBx_DEVICE->DAINT; - 8008386: 68fb ldr r3, [r7, #12] - 8008388: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800838c: 699b ldr r3, [r3, #24] - 800838e: 60bb str r3, [r7, #8] + 800875e: 68fb ldr r3, [r7, #12] + 8008760: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008764: 699b ldr r3, [r3, #24] + 8008766: 60bb str r3, [r7, #8] tmpreg &= USBx_DEVICE->DAINTMSK; - 8008390: 68fb ldr r3, [r7, #12] - 8008392: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008396: 69db ldr r3, [r3, #28] - 8008398: 68ba ldr r2, [r7, #8] - 800839a: 4013 ands r3, r2 - 800839c: 60bb str r3, [r7, #8] + 8008768: 68fb ldr r3, [r7, #12] + 800876a: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800876e: 69db ldr r3, [r3, #28] + 8008770: 68ba ldr r2, [r7, #8] + 8008772: 4013 ands r3, r2 + 8008774: 60bb str r3, [r7, #8] return ((tmpreg & 0xffff0000U) >> 16); - 800839e: 68bb ldr r3, [r7, #8] - 80083a0: 0c1b lsrs r3, r3, #16 + 8008776: 68bb ldr r3, [r7, #8] + 8008778: 0c1b lsrs r3, r3, #16 } - 80083a2: 4618 mov r0, r3 - 80083a4: 3714 adds r7, #20 - 80083a6: 46bd mov sp, r7 - 80083a8: f85d 7b04 ldr.w r7, [sp], #4 - 80083ac: 4770 bx lr + 800877a: 4618 mov r0, r3 + 800877c: 3714 adds r7, #20 + 800877e: 46bd mov sp, r7 + 8008780: f85d 7b04 ldr.w r7, [sp], #4 + 8008784: 4770 bx lr -080083ae : +08008786 : * @brief USB_ReadDevAllInEpInterrupt: return the USB device IN endpoints interrupt status * @param USBx Selected device * @retval USB Device IN EP interrupt status */ uint32_t USB_ReadDevAllInEpInterrupt(const USB_OTG_GlobalTypeDef *USBx) { - 80083ae: b480 push {r7} - 80083b0: b085 sub sp, #20 - 80083b2: af00 add r7, sp, #0 - 80083b4: 6078 str r0, [r7, #4] + 8008786: b480 push {r7} + 8008788: b085 sub sp, #20 + 800878a: af00 add r7, sp, #0 + 800878c: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 80083b6: 687b ldr r3, [r7, #4] - 80083b8: 60fb str r3, [r7, #12] + 800878e: 687b ldr r3, [r7, #4] + 8008790: 60fb str r3, [r7, #12] uint32_t tmpreg; tmpreg = USBx_DEVICE->DAINT; - 80083ba: 68fb ldr r3, [r7, #12] - 80083bc: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80083c0: 699b ldr r3, [r3, #24] - 80083c2: 60bb str r3, [r7, #8] + 8008792: 68fb ldr r3, [r7, #12] + 8008794: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008798: 699b ldr r3, [r3, #24] + 800879a: 60bb str r3, [r7, #8] tmpreg &= USBx_DEVICE->DAINTMSK; - 80083c4: 68fb ldr r3, [r7, #12] - 80083c6: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80083ca: 69db ldr r3, [r3, #28] - 80083cc: 68ba ldr r2, [r7, #8] - 80083ce: 4013 ands r3, r2 - 80083d0: 60bb str r3, [r7, #8] + 800879c: 68fb ldr r3, [r7, #12] + 800879e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80087a2: 69db ldr r3, [r3, #28] + 80087a4: 68ba ldr r2, [r7, #8] + 80087a6: 4013 ands r3, r2 + 80087a8: 60bb str r3, [r7, #8] return ((tmpreg & 0xFFFFU)); - 80083d2: 68bb ldr r3, [r7, #8] - 80083d4: b29b uxth r3, r3 + 80087aa: 68bb ldr r3, [r7, #8] + 80087ac: b29b uxth r3, r3 } - 80083d6: 4618 mov r0, r3 - 80083d8: 3714 adds r7, #20 - 80083da: 46bd mov sp, r7 - 80083dc: f85d 7b04 ldr.w r7, [sp], #4 - 80083e0: 4770 bx lr + 80087ae: 4618 mov r0, r3 + 80087b0: 3714 adds r7, #20 + 80087b2: 46bd mov sp, r7 + 80087b4: f85d 7b04 ldr.w r7, [sp], #4 + 80087b8: 4770 bx lr -080083e2 : +080087ba : * @param epnum endpoint number * This parameter can be a value from 0 to 15 * @retval Device OUT EP Interrupt register */ uint32_t USB_ReadDevOutEPInterrupt(const USB_OTG_GlobalTypeDef *USBx, uint8_t epnum) { - 80083e2: b480 push {r7} - 80083e4: b085 sub sp, #20 - 80083e6: af00 add r7, sp, #0 - 80083e8: 6078 str r0, [r7, #4] - 80083ea: 460b mov r3, r1 - 80083ec: 70fb strb r3, [r7, #3] + 80087ba: b480 push {r7} + 80087bc: b085 sub sp, #20 + 80087be: af00 add r7, sp, #0 + 80087c0: 6078 str r0, [r7, #4] + 80087c2: 460b mov r3, r1 + 80087c4: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 80083ee: 687b ldr r3, [r7, #4] - 80083f0: 60fb str r3, [r7, #12] + 80087c6: 687b ldr r3, [r7, #4] + 80087c8: 60fb str r3, [r7, #12] uint32_t tmpreg; tmpreg = USBx_OUTEP((uint32_t)epnum)->DOEPINT; - 80083f2: 78fb ldrb r3, [r7, #3] - 80083f4: 015a lsls r2, r3, #5 - 80083f6: 68fb ldr r3, [r7, #12] - 80083f8: 4413 add r3, r2 - 80083fa: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80083fe: 689b ldr r3, [r3, #8] - 8008400: 60bb str r3, [r7, #8] + 80087ca: 78fb ldrb r3, [r7, #3] + 80087cc: 015a lsls r2, r3, #5 + 80087ce: 68fb ldr r3, [r7, #12] + 80087d0: 4413 add r3, r2 + 80087d2: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80087d6: 689b ldr r3, [r3, #8] + 80087d8: 60bb str r3, [r7, #8] tmpreg &= USBx_DEVICE->DOEPMSK; - 8008402: 68fb ldr r3, [r7, #12] - 8008404: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008408: 695b ldr r3, [r3, #20] - 800840a: 68ba ldr r2, [r7, #8] - 800840c: 4013 ands r3, r2 - 800840e: 60bb str r3, [r7, #8] + 80087da: 68fb ldr r3, [r7, #12] + 80087dc: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80087e0: 695b ldr r3, [r3, #20] + 80087e2: 68ba ldr r2, [r7, #8] + 80087e4: 4013 ands r3, r2 + 80087e6: 60bb str r3, [r7, #8] return tmpreg; - 8008410: 68bb ldr r3, [r7, #8] + 80087e8: 68bb ldr r3, [r7, #8] } - 8008412: 4618 mov r0, r3 - 8008414: 3714 adds r7, #20 - 8008416: 46bd mov sp, r7 - 8008418: f85d 7b04 ldr.w r7, [sp], #4 - 800841c: 4770 bx lr + 80087ea: 4618 mov r0, r3 + 80087ec: 3714 adds r7, #20 + 80087ee: 46bd mov sp, r7 + 80087f0: f85d 7b04 ldr.w r7, [sp], #4 + 80087f4: 4770 bx lr -0800841e : +080087f6 : * @param epnum endpoint number * This parameter can be a value from 0 to 15 * @retval Device IN EP Interrupt register */ uint32_t USB_ReadDevInEPInterrupt(const USB_OTG_GlobalTypeDef *USBx, uint8_t epnum) { - 800841e: b480 push {r7} - 8008420: b087 sub sp, #28 - 8008422: af00 add r7, sp, #0 - 8008424: 6078 str r0, [r7, #4] - 8008426: 460b mov r3, r1 - 8008428: 70fb strb r3, [r7, #3] + 80087f6: b480 push {r7} + 80087f8: b087 sub sp, #28 + 80087fa: af00 add r7, sp, #0 + 80087fc: 6078 str r0, [r7, #4] + 80087fe: 460b mov r3, r1 + 8008800: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 800842a: 687b ldr r3, [r7, #4] - 800842c: 617b str r3, [r7, #20] + 8008802: 687b ldr r3, [r7, #4] + 8008804: 617b str r3, [r7, #20] uint32_t tmpreg; uint32_t msk; uint32_t emp; msk = USBx_DEVICE->DIEPMSK; - 800842e: 697b ldr r3, [r7, #20] - 8008430: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008434: 691b ldr r3, [r3, #16] - 8008436: 613b str r3, [r7, #16] + 8008806: 697b ldr r3, [r7, #20] + 8008808: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800880c: 691b ldr r3, [r3, #16] + 800880e: 613b str r3, [r7, #16] emp = USBx_DEVICE->DIEPEMPMSK; - 8008438: 697b ldr r3, [r7, #20] - 800843a: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800843e: 6b5b ldr r3, [r3, #52] @ 0x34 - 8008440: 60fb str r3, [r7, #12] + 8008810: 697b ldr r3, [r7, #20] + 8008812: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008816: 6b5b ldr r3, [r3, #52] @ 0x34 + 8008818: 60fb str r3, [r7, #12] msk |= ((emp >> (epnum & EP_ADDR_MSK)) & 0x1U) << 7; - 8008442: 78fb ldrb r3, [r7, #3] - 8008444: f003 030f and.w r3, r3, #15 - 8008448: 68fa ldr r2, [r7, #12] - 800844a: fa22 f303 lsr.w r3, r2, r3 - 800844e: 01db lsls r3, r3, #7 - 8008450: b2db uxtb r3, r3 - 8008452: 693a ldr r2, [r7, #16] - 8008454: 4313 orrs r3, r2 - 8008456: 613b str r3, [r7, #16] + 800881a: 78fb ldrb r3, [r7, #3] + 800881c: f003 030f and.w r3, r3, #15 + 8008820: 68fa ldr r2, [r7, #12] + 8008822: fa22 f303 lsr.w r3, r2, r3 + 8008826: 01db lsls r3, r3, #7 + 8008828: b2db uxtb r3, r3 + 800882a: 693a ldr r2, [r7, #16] + 800882c: 4313 orrs r3, r2 + 800882e: 613b str r3, [r7, #16] tmpreg = USBx_INEP((uint32_t)epnum)->DIEPINT & msk; - 8008458: 78fb ldrb r3, [r7, #3] - 800845a: 015a lsls r2, r3, #5 - 800845c: 697b ldr r3, [r7, #20] - 800845e: 4413 add r3, r2 - 8008460: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008464: 689b ldr r3, [r3, #8] - 8008466: 693a ldr r2, [r7, #16] - 8008468: 4013 ands r3, r2 - 800846a: 60bb str r3, [r7, #8] + 8008830: 78fb ldrb r3, [r7, #3] + 8008832: 015a lsls r2, r3, #5 + 8008834: 697b ldr r3, [r7, #20] + 8008836: 4413 add r3, r2 + 8008838: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800883c: 689b ldr r3, [r3, #8] + 800883e: 693a ldr r2, [r7, #16] + 8008840: 4013 ands r3, r2 + 8008842: 60bb str r3, [r7, #8] return tmpreg; - 800846c: 68bb ldr r3, [r7, #8] + 8008844: 68bb ldr r3, [r7, #8] } - 800846e: 4618 mov r0, r3 - 8008470: 371c adds r7, #28 - 8008472: 46bd mov sp, r7 - 8008474: f85d 7b04 ldr.w r7, [sp], #4 - 8008478: 4770 bx lr + 8008846: 4618 mov r0, r3 + 8008848: 371c adds r7, #28 + 800884a: 46bd mov sp, r7 + 800884c: f85d 7b04 ldr.w r7, [sp], #4 + 8008850: 4770 bx lr -0800847a : +08008852 : * This parameter can be one of these values: * 1 : Host * 0 : Device */ uint32_t USB_GetMode(const USB_OTG_GlobalTypeDef *USBx) { - 800847a: b480 push {r7} - 800847c: b083 sub sp, #12 - 800847e: af00 add r7, sp, #0 - 8008480: 6078 str r0, [r7, #4] + 8008852: b480 push {r7} + 8008854: b083 sub sp, #12 + 8008856: af00 add r7, sp, #0 + 8008858: 6078 str r0, [r7, #4] return ((USBx->GINTSTS) & 0x1U); - 8008482: 687b ldr r3, [r7, #4] - 8008484: 695b ldr r3, [r3, #20] - 8008486: f003 0301 and.w r3, r3, #1 + 800885a: 687b ldr r3, [r7, #4] + 800885c: 695b ldr r3, [r3, #20] + 800885e: f003 0301 and.w r3, r3, #1 } - 800848a: 4618 mov r0, r3 - 800848c: 370c adds r7, #12 - 800848e: 46bd mov sp, r7 - 8008490: f85d 7b04 ldr.w r7, [sp], #4 - 8008494: 4770 bx lr + 8008862: 4618 mov r0, r3 + 8008864: 370c adds r7, #12 + 8008866: 46bd mov sp, r7 + 8008868: f85d 7b04 ldr.w r7, [sp], #4 + 800886c: 4770 bx lr -08008496 : +0800886e : * @brief Activate EP0 for Setup transactions * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_ActivateSetup(const USB_OTG_GlobalTypeDef *USBx) { - 8008496: b480 push {r7} - 8008498: b085 sub sp, #20 - 800849a: af00 add r7, sp, #0 - 800849c: 6078 str r0, [r7, #4] + 800886e: b480 push {r7} + 8008870: b085 sub sp, #20 + 8008872: af00 add r7, sp, #0 + 8008874: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 800849e: 687b ldr r3, [r7, #4] - 80084a0: 60fb str r3, [r7, #12] + 8008876: 687b ldr r3, [r7, #4] + 8008878: 60fb str r3, [r7, #12] /* Set the MPS of the IN EP0 to 64 bytes */ USBx_INEP(0U)->DIEPCTL &= ~USB_OTG_DIEPCTL_MPSIZ; - 80084a2: 68fb ldr r3, [r7, #12] - 80084a4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80084a8: 681b ldr r3, [r3, #0] - 80084aa: 68fa ldr r2, [r7, #12] - 80084ac: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80084b0: f423 63ff bic.w r3, r3, #2040 @ 0x7f8 - 80084b4: f023 0307 bic.w r3, r3, #7 - 80084b8: 6013 str r3, [r2, #0] + 800887a: 68fb ldr r3, [r7, #12] + 800887c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8008880: 681b ldr r3, [r3, #0] + 8008882: 68fa ldr r2, [r7, #12] + 8008884: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8008888: f423 63ff bic.w r3, r3, #2040 @ 0x7f8 + 800888c: f023 0307 bic.w r3, r3, #7 + 8008890: 6013 str r3, [r2, #0] USBx_DEVICE->DCTL |= USB_OTG_DCTL_CGINAK; - 80084ba: 68fb ldr r3, [r7, #12] - 80084bc: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80084c0: 685b ldr r3, [r3, #4] - 80084c2: 68fa ldr r2, [r7, #12] - 80084c4: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80084c8: f443 7380 orr.w r3, r3, #256 @ 0x100 - 80084cc: 6053 str r3, [r2, #4] + 8008892: 68fb ldr r3, [r7, #12] + 8008894: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008898: 685b ldr r3, [r3, #4] + 800889a: 68fa ldr r2, [r7, #12] + 800889c: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80088a0: f443 7380 orr.w r3, r3, #256 @ 0x100 + 80088a4: 6053 str r3, [r2, #4] return HAL_OK; - 80084ce: 2300 movs r3, #0 + 80088a6: 2300 movs r3, #0 } - 80084d0: 4618 mov r0, r3 - 80084d2: 3714 adds r7, #20 - 80084d4: 46bd mov sp, r7 - 80084d6: f85d 7b04 ldr.w r7, [sp], #4 - 80084da: 4770 bx lr + 80088a8: 4618 mov r0, r3 + 80088aa: 3714 adds r7, #20 + 80088ac: 46bd mov sp, r7 + 80088ae: f85d 7b04 ldr.w r7, [sp], #4 + 80088b2: 4770 bx lr -080084dc : +080088b4 : * 1 : DMA feature used * @param psetup pointer to setup packet * @retval HAL status */ HAL_StatusTypeDef USB_EP0_OutStart(const USB_OTG_GlobalTypeDef *USBx, uint8_t dma, const uint8_t *psetup) { - 80084dc: b480 push {r7} - 80084de: b087 sub sp, #28 - 80084e0: af00 add r7, sp, #0 - 80084e2: 60f8 str r0, [r7, #12] - 80084e4: 460b mov r3, r1 - 80084e6: 607a str r2, [r7, #4] - 80084e8: 72fb strb r3, [r7, #11] + 80088b4: b480 push {r7} + 80088b6: b087 sub sp, #28 + 80088b8: af00 add r7, sp, #0 + 80088ba: 60f8 str r0, [r7, #12] + 80088bc: 460b mov r3, r1 + 80088be: 607a str r2, [r7, #4] + 80088c0: 72fb strb r3, [r7, #11] uint32_t USBx_BASE = (uint32_t)USBx; - 80084ea: 68fb ldr r3, [r7, #12] - 80084ec: 617b str r3, [r7, #20] + 80088c2: 68fb ldr r3, [r7, #12] + 80088c4: 617b str r3, [r7, #20] uint32_t gSNPSiD = *(__IO const uint32_t *)(&USBx->CID + 0x1U); - 80084ee: 68fb ldr r3, [r7, #12] - 80084f0: 333c adds r3, #60 @ 0x3c - 80084f2: 3304 adds r3, #4 - 80084f4: 681b ldr r3, [r3, #0] - 80084f6: 613b str r3, [r7, #16] + 80088c6: 68fb ldr r3, [r7, #12] + 80088c8: 333c adds r3, #60 @ 0x3c + 80088ca: 3304 adds r3, #4 + 80088cc: 681b ldr r3, [r3, #0] + 80088ce: 613b str r3, [r7, #16] if (gSNPSiD > USB_OTG_CORE_ID_300A) - 80084f8: 693b ldr r3, [r7, #16] - 80084fa: 4a26 ldr r2, [pc, #152] @ (8008594 ) - 80084fc: 4293 cmp r3, r2 - 80084fe: d90a bls.n 8008516 + 80088d0: 693b ldr r3, [r7, #16] + 80088d2: 4a26 ldr r2, [pc, #152] @ (800896c ) + 80088d4: 4293 cmp r3, r2 + 80088d6: d90a bls.n 80088ee { if ((USBx_OUTEP(0U)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8008500: 697b ldr r3, [r7, #20] - 8008502: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008506: 681b ldr r3, [r3, #0] - 8008508: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 800850c: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8008510: d101 bne.n 8008516 + 80088d8: 697b ldr r3, [r7, #20] + 80088da: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80088de: 681b ldr r3, [r3, #0] + 80088e0: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80088e4: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 80088e8: d101 bne.n 80088ee { return HAL_OK; - 8008512: 2300 movs r3, #0 - 8008514: e037 b.n 8008586 + 80088ea: 2300 movs r3, #0 + 80088ec: e037 b.n 800895e } } USBx_OUTEP(0U)->DOEPTSIZ = 0U; - 8008516: 697b ldr r3, [r7, #20] - 8008518: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800851c: 461a mov r2, r3 - 800851e: 2300 movs r3, #0 - 8008520: 6113 str r3, [r2, #16] + 80088ee: 697b ldr r3, [r7, #20] + 80088f0: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80088f4: 461a mov r2, r3 + 80088f6: 2300 movs r3, #0 + 80088f8: 6113 str r3, [r2, #16] USBx_OUTEP(0U)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_PKTCNT & (1U << 19)); - 8008522: 697b ldr r3, [r7, #20] - 8008524: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008528: 691b ldr r3, [r3, #16] - 800852a: 697a ldr r2, [r7, #20] - 800852c: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008530: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8008534: 6113 str r3, [r2, #16] + 80088fa: 697b ldr r3, [r7, #20] + 80088fc: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008900: 691b ldr r3, [r3, #16] + 8008902: 697a ldr r2, [r7, #20] + 8008904: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008908: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 800890c: 6113 str r3, [r2, #16] USBx_OUTEP(0U)->DOEPTSIZ |= (3U * 8U); - 8008536: 697b ldr r3, [r7, #20] - 8008538: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800853c: 691b ldr r3, [r3, #16] - 800853e: 697a ldr r2, [r7, #20] - 8008540: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008544: f043 0318 orr.w r3, r3, #24 - 8008548: 6113 str r3, [r2, #16] + 800890e: 697b ldr r3, [r7, #20] + 8008910: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008914: 691b ldr r3, [r3, #16] + 8008916: 697a ldr r2, [r7, #20] + 8008918: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800891c: f043 0318 orr.w r3, r3, #24 + 8008920: 6113 str r3, [r2, #16] USBx_OUTEP(0U)->DOEPTSIZ |= USB_OTG_DOEPTSIZ_STUPCNT; - 800854a: 697b ldr r3, [r7, #20] - 800854c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008550: 691b ldr r3, [r3, #16] - 8008552: 697a ldr r2, [r7, #20] - 8008554: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008558: f043 43c0 orr.w r3, r3, #1610612736 @ 0x60000000 - 800855c: 6113 str r3, [r2, #16] + 8008922: 697b ldr r3, [r7, #20] + 8008924: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008928: 691b ldr r3, [r3, #16] + 800892a: 697a ldr r2, [r7, #20] + 800892c: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008930: f043 43c0 orr.w r3, r3, #1610612736 @ 0x60000000 + 8008934: 6113 str r3, [r2, #16] if (dma == 1U) - 800855e: 7afb ldrb r3, [r7, #11] - 8008560: 2b01 cmp r3, #1 - 8008562: d10f bne.n 8008584 + 8008936: 7afb ldrb r3, [r7, #11] + 8008938: 2b01 cmp r3, #1 + 800893a: d10f bne.n 800895c { USBx_OUTEP(0U)->DOEPDMA = (uint32_t)psetup; - 8008564: 697b ldr r3, [r7, #20] - 8008566: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800856a: 461a mov r2, r3 - 800856c: 687b ldr r3, [r7, #4] - 800856e: 6153 str r3, [r2, #20] + 800893c: 697b ldr r3, [r7, #20] + 800893e: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008942: 461a mov r2, r3 + 8008944: 687b ldr r3, [r7, #4] + 8008946: 6153 str r3, [r2, #20] /* EP enable */ USBx_OUTEP(0U)->DOEPCTL |= USB_OTG_DOEPCTL_EPENA | USB_OTG_DOEPCTL_USBAEP; - 8008570: 697b ldr r3, [r7, #20] - 8008572: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008576: 681b ldr r3, [r3, #0] - 8008578: 697a ldr r2, [r7, #20] - 800857a: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 800857e: f043 2380 orr.w r3, r3, #2147516416 @ 0x80008000 - 8008582: 6013 str r3, [r2, #0] + 8008948: 697b ldr r3, [r7, #20] + 800894a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800894e: 681b ldr r3, [r3, #0] + 8008950: 697a ldr r2, [r7, #20] + 8008952: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008956: f043 2380 orr.w r3, r3, #2147516416 @ 0x80008000 + 800895a: 6013 str r3, [r2, #0] } return HAL_OK; - 8008584: 2300 movs r3, #0 + 800895c: 2300 movs r3, #0 } - 8008586: 4618 mov r0, r3 - 8008588: 371c adds r7, #28 - 800858a: 46bd mov sp, r7 - 800858c: f85d 7b04 ldr.w r7, [sp], #4 - 8008590: 4770 bx lr - 8008592: bf00 nop - 8008594: 4f54300a .word 0x4f54300a + 800895e: 4618 mov r0, r3 + 8008960: 371c adds r7, #28 + 8008962: 46bd mov sp, r7 + 8008964: f85d 7b04 ldr.w r7, [sp], #4 + 8008968: 4770 bx lr + 800896a: bf00 nop + 800896c: 4f54300a .word 0x4f54300a -08008598 : +08008970 : * @brief Reset the USB Core (needed after USB clock settings change) * @param USBx Selected device * @retval HAL status */ static HAL_StatusTypeDef USB_CoreReset(USB_OTG_GlobalTypeDef *USBx) { - 8008598: b480 push {r7} - 800859a: b085 sub sp, #20 - 800859c: af00 add r7, sp, #0 - 800859e: 6078 str r0, [r7, #4] + 8008970: b480 push {r7} + 8008972: b085 sub sp, #20 + 8008974: af00 add r7, sp, #0 + 8008976: 6078 str r0, [r7, #4] __IO uint32_t count = 0U; - 80085a0: 2300 movs r3, #0 - 80085a2: 60fb str r3, [r7, #12] + 8008978: 2300 movs r3, #0 + 800897a: 60fb str r3, [r7, #12] /* Wait for AHB master IDLE state. */ do { count++; - 80085a4: 68fb ldr r3, [r7, #12] - 80085a6: 3301 adds r3, #1 - 80085a8: 60fb str r3, [r7, #12] + 800897c: 68fb ldr r3, [r7, #12] + 800897e: 3301 adds r3, #1 + 8008980: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 80085aa: 68fb ldr r3, [r7, #12] - 80085ac: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 80085b0: d901 bls.n 80085b6 + 8008982: 68fb ldr r3, [r7, #12] + 8008984: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8008988: d901 bls.n 800898e { return HAL_TIMEOUT; - 80085b2: 2303 movs r3, #3 - 80085b4: e022 b.n 80085fc + 800898a: 2303 movs r3, #3 + 800898c: e022 b.n 80089d4 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U); - 80085b6: 687b ldr r3, [r7, #4] - 80085b8: 691b ldr r3, [r3, #16] - 80085ba: 2b00 cmp r3, #0 - 80085bc: daf2 bge.n 80085a4 + 800898e: 687b ldr r3, [r7, #4] + 8008990: 691b ldr r3, [r3, #16] + 8008992: 2b00 cmp r3, #0 + 8008994: daf2 bge.n 800897c count = 10U; - 80085be: 230a movs r3, #10 - 80085c0: 60fb str r3, [r7, #12] + 8008996: 230a movs r3, #10 + 8008998: 60fb str r3, [r7, #12] /* few cycles before setting core reset */ while (count > 0U) - 80085c2: e002 b.n 80085ca + 800899a: e002 b.n 80089a2 { count--; - 80085c4: 68fb ldr r3, [r7, #12] - 80085c6: 3b01 subs r3, #1 - 80085c8: 60fb str r3, [r7, #12] + 800899c: 68fb ldr r3, [r7, #12] + 800899e: 3b01 subs r3, #1 + 80089a0: 60fb str r3, [r7, #12] while (count > 0U) - 80085ca: 68fb ldr r3, [r7, #12] - 80085cc: 2b00 cmp r3, #0 - 80085ce: d1f9 bne.n 80085c4 + 80089a2: 68fb ldr r3, [r7, #12] + 80089a4: 2b00 cmp r3, #0 + 80089a6: d1f9 bne.n 800899c } /* Core Soft Reset */ USBx->GRSTCTL |= USB_OTG_GRSTCTL_CSRST; - 80085d0: 687b ldr r3, [r7, #4] - 80085d2: 691b ldr r3, [r3, #16] - 80085d4: f043 0201 orr.w r2, r3, #1 - 80085d8: 687b ldr r3, [r7, #4] - 80085da: 611a str r2, [r3, #16] + 80089a8: 687b ldr r3, [r7, #4] + 80089aa: 691b ldr r3, [r3, #16] + 80089ac: f043 0201 orr.w r2, r3, #1 + 80089b0: 687b ldr r3, [r7, #4] + 80089b2: 611a str r2, [r3, #16] do { count++; - 80085dc: 68fb ldr r3, [r7, #12] - 80085de: 3301 adds r3, #1 - 80085e0: 60fb str r3, [r7, #12] + 80089b4: 68fb ldr r3, [r7, #12] + 80089b6: 3301 adds r3, #1 + 80089b8: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 80085e2: 68fb ldr r3, [r7, #12] - 80085e4: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 80085e8: d901 bls.n 80085ee + 80089ba: 68fb ldr r3, [r7, #12] + 80089bc: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 80089c0: d901 bls.n 80089c6 { return HAL_TIMEOUT; - 80085ea: 2303 movs r3, #3 - 80085ec: e006 b.n 80085fc + 80089c2: 2303 movs r3, #3 + 80089c4: e006 b.n 80089d4 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_CSRST) == USB_OTG_GRSTCTL_CSRST); - 80085ee: 687b ldr r3, [r7, #4] - 80085f0: 691b ldr r3, [r3, #16] - 80085f2: f003 0301 and.w r3, r3, #1 - 80085f6: 2b01 cmp r3, #1 - 80085f8: d0f0 beq.n 80085dc + 80089c6: 687b ldr r3, [r7, #4] + 80089c8: 691b ldr r3, [r3, #16] + 80089ca: f003 0301 and.w r3, r3, #1 + 80089ce: 2b01 cmp r3, #1 + 80089d0: d0f0 beq.n 80089b4 return HAL_OK; - 80085fa: 2300 movs r3, #0 + 80089d2: 2300 movs r3, #0 } - 80085fc: 4618 mov r0, r3 - 80085fe: 3714 adds r7, #20 - 8008600: 46bd mov sp, r7 - 8008602: f85d 7b04 ldr.w r7, [sp], #4 - 8008606: 4770 bx lr + 80089d4: 4618 mov r0, r3 + 80089d6: 3714 adds r7, #20 + 80089d8: 46bd mov sp, r7 + 80089da: f85d 7b04 ldr.w r7, [sp], #4 + 80089de: 4770 bx lr -08008608 : +080089e0 : * @param pdev: device instance * @param cfgidx: Configuration index * @retval status */ static uint8_t USBD_HID_Init(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 8008608: b580 push {r7, lr} - 800860a: b084 sub sp, #16 - 800860c: af00 add r7, sp, #0 - 800860e: 6078 str r0, [r7, #4] - 8008610: 460b mov r3, r1 - 8008612: 70fb strb r3, [r7, #3] + 80089e0: b580 push {r7, lr} + 80089e2: b084 sub sp, #16 + 80089e4: af00 add r7, sp, #0 + 80089e6: 6078 str r0, [r7, #4] + 80089e8: 460b mov r3, r1 + 80089ea: 70fb strb r3, [r7, #3] UNUSED(cfgidx); USBD_HID_HandleTypeDef *hhid; hhid = (USBD_HID_HandleTypeDef *)USBD_malloc(sizeof(USBD_HID_HandleTypeDef)); - 8008614: 2010 movs r0, #16 - 8008616: f002 f9e3 bl 800a9e0 - 800861a: 60f8 str r0, [r7, #12] + 80089ec: 2010 movs r0, #16 + 80089ee: f002 f9e3 bl 800adb8 + 80089f2: 60f8 str r0, [r7, #12] if (hhid == NULL) - 800861c: 68fb ldr r3, [r7, #12] - 800861e: 2b00 cmp r3, #0 - 8008620: d109 bne.n 8008636 + 80089f4: 68fb ldr r3, [r7, #12] + 80089f6: 2b00 cmp r3, #0 + 80089f8: d109 bne.n 8008a0e { pdev->pClassDataCmsit[pdev->classId] = NULL; - 8008622: 687b ldr r3, [r7, #4] - 8008624: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008628: 687b ldr r3, [r7, #4] - 800862a: 32b0 adds r2, #176 @ 0xb0 - 800862c: 2100 movs r1, #0 - 800862e: f843 1022 str.w r1, [r3, r2, lsl #2] + 80089fa: 687b ldr r3, [r7, #4] + 80089fc: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008a00: 687b ldr r3, [r7, #4] + 8008a02: 32b0 adds r2, #176 @ 0xb0 + 8008a04: 2100 movs r1, #0 + 8008a06: f843 1022 str.w r1, [r3, r2, lsl #2] return (uint8_t)USBD_EMEM; - 8008632: 2302 movs r3, #2 - 8008634: e048 b.n 80086c8 + 8008a0a: 2302 movs r3, #2 + 8008a0c: e048 b.n 8008aa0 } pdev->pClassDataCmsit[pdev->classId] = (void *)hhid; - 8008636: 687b ldr r3, [r7, #4] - 8008638: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800863c: 687b ldr r3, [r7, #4] - 800863e: 32b0 adds r2, #176 @ 0xb0 - 8008640: 68f9 ldr r1, [r7, #12] - 8008642: f843 1022 str.w r1, [r3, r2, lsl #2] + 8008a0e: 687b ldr r3, [r7, #4] + 8008a10: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008a14: 687b ldr r3, [r7, #4] + 8008a16: 32b0 adds r2, #176 @ 0xb0 + 8008a18: 68f9 ldr r1, [r7, #12] + 8008a1a: f843 1022 str.w r1, [r3, r2, lsl #2] pdev->pClassData = pdev->pClassDataCmsit[pdev->classId]; - 8008646: 687b ldr r3, [r7, #4] - 8008648: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800864c: 687b ldr r3, [r7, #4] - 800864e: 32b0 adds r2, #176 @ 0xb0 - 8008650: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 8008654: 687b ldr r3, [r7, #4] - 8008656: f8c3 22bc str.w r2, [r3, #700] @ 0x2bc + 8008a1e: 687b ldr r3, [r7, #4] + 8008a20: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008a24: 687b ldr r3, [r7, #4] + 8008a26: 32b0 adds r2, #176 @ 0xb0 + 8008a28: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 8008a2c: 687b ldr r3, [r7, #4] + 8008a2e: f8c3 22bc str.w r2, [r3, #700] @ 0x2bc #ifdef USE_USBD_COMPOSITE /* Get the Endpoints addresses allocated for this class instance */ HIDInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR, (uint8_t)pdev->classId); #endif /* USE_USBD_COMPOSITE */ if (pdev->dev_speed == USBD_SPEED_HIGH) - 800865a: 687b ldr r3, [r7, #4] - 800865c: 7c1b ldrb r3, [r3, #16] - 800865e: 2b00 cmp r3, #0 - 8008660: d10d bne.n 800867e + 8008a32: 687b ldr r3, [r7, #4] + 8008a34: 7c1b ldrb r3, [r3, #16] + 8008a36: 2b00 cmp r3, #0 + 8008a38: d10d bne.n 8008a56 { pdev->ep_in[HIDInEpAdd & 0xFU].bInterval = HID_HS_BINTERVAL; - 8008662: 4b1b ldr r3, [pc, #108] @ (80086d0 ) - 8008664: 781b ldrb r3, [r3, #0] - 8008666: f003 020f and.w r2, r3, #15 - 800866a: 6879 ldr r1, [r7, #4] - 800866c: 4613 mov r3, r2 - 800866e: 009b lsls r3, r3, #2 - 8008670: 4413 add r3, r2 - 8008672: 009b lsls r3, r3, #2 - 8008674: 440b add r3, r1 - 8008676: 331c adds r3, #28 - 8008678: 2207 movs r2, #7 - 800867a: 601a str r2, [r3, #0] - 800867c: e00c b.n 8008698 + 8008a3a: 4b1b ldr r3, [pc, #108] @ (8008aa8 ) + 8008a3c: 781b ldrb r3, [r3, #0] + 8008a3e: f003 020f and.w r2, r3, #15 + 8008a42: 6879 ldr r1, [r7, #4] + 8008a44: 4613 mov r3, r2 + 8008a46: 009b lsls r3, r3, #2 + 8008a48: 4413 add r3, r2 + 8008a4a: 009b lsls r3, r3, #2 + 8008a4c: 440b add r3, r1 + 8008a4e: 331c adds r3, #28 + 8008a50: 2207 movs r2, #7 + 8008a52: 601a str r2, [r3, #0] + 8008a54: e00c b.n 8008a70 } else /* LOW and FULL-speed endpoints */ { pdev->ep_in[HIDInEpAdd & 0xFU].bInterval = HID_FS_BINTERVAL; - 800867e: 4b14 ldr r3, [pc, #80] @ (80086d0 ) - 8008680: 781b ldrb r3, [r3, #0] - 8008682: f003 020f and.w r2, r3, #15 - 8008686: 6879 ldr r1, [r7, #4] - 8008688: 4613 mov r3, r2 - 800868a: 009b lsls r3, r3, #2 - 800868c: 4413 add r3, r2 - 800868e: 009b lsls r3, r3, #2 - 8008690: 440b add r3, r1 - 8008692: 331c adds r3, #28 - 8008694: 220a movs r2, #10 - 8008696: 601a str r2, [r3, #0] + 8008a56: 4b14 ldr r3, [pc, #80] @ (8008aa8 ) + 8008a58: 781b ldrb r3, [r3, #0] + 8008a5a: f003 020f and.w r2, r3, #15 + 8008a5e: 6879 ldr r1, [r7, #4] + 8008a60: 4613 mov r3, r2 + 8008a62: 009b lsls r3, r3, #2 + 8008a64: 4413 add r3, r2 + 8008a66: 009b lsls r3, r3, #2 + 8008a68: 440b add r3, r1 + 8008a6a: 331c adds r3, #28 + 8008a6c: 220a movs r2, #10 + 8008a6e: 601a str r2, [r3, #0] } /* Open EP IN */ (void)USBD_LL_OpenEP(pdev, HIDInEpAdd, USBD_EP_TYPE_INTR, HID_EPIN_SIZE); - 8008698: 4b0d ldr r3, [pc, #52] @ (80086d0 ) - 800869a: 7819 ldrb r1, [r3, #0] - 800869c: 230e movs r3, #14 - 800869e: 2203 movs r2, #3 - 80086a0: 6878 ldr r0, [r7, #4] - 80086a2: f002 f83e bl 800a722 + 8008a70: 4b0d ldr r3, [pc, #52] @ (8008aa8 ) + 8008a72: 7819 ldrb r1, [r3, #0] + 8008a74: 230e movs r3, #14 + 8008a76: 2203 movs r2, #3 + 8008a78: 6878 ldr r0, [r7, #4] + 8008a7a: f002 f83e bl 800aafa pdev->ep_in[HIDInEpAdd & 0xFU].is_used = 1U; - 80086a6: 4b0a ldr r3, [pc, #40] @ (80086d0 ) - 80086a8: 781b ldrb r3, [r3, #0] - 80086aa: f003 020f and.w r2, r3, #15 - 80086ae: 6879 ldr r1, [r7, #4] - 80086b0: 4613 mov r3, r2 - 80086b2: 009b lsls r3, r3, #2 - 80086b4: 4413 add r3, r2 - 80086b6: 009b lsls r3, r3, #2 - 80086b8: 440b add r3, r1 - 80086ba: 3323 adds r3, #35 @ 0x23 - 80086bc: 2201 movs r2, #1 - 80086be: 701a strb r2, [r3, #0] + 8008a7e: 4b0a ldr r3, [pc, #40] @ (8008aa8 ) + 8008a80: 781b ldrb r3, [r3, #0] + 8008a82: f003 020f and.w r2, r3, #15 + 8008a86: 6879 ldr r1, [r7, #4] + 8008a88: 4613 mov r3, r2 + 8008a8a: 009b lsls r3, r3, #2 + 8008a8c: 4413 add r3, r2 + 8008a8e: 009b lsls r3, r3, #2 + 8008a90: 440b add r3, r1 + 8008a92: 3323 adds r3, #35 @ 0x23 + 8008a94: 2201 movs r2, #1 + 8008a96: 701a strb r2, [r3, #0] hhid->state = USBD_HID_IDLE; - 80086c0: 68fb ldr r3, [r7, #12] - 80086c2: 2200 movs r2, #0 - 80086c4: 731a strb r2, [r3, #12] + 8008a98: 68fb ldr r3, [r7, #12] + 8008a9a: 2200 movs r2, #0 + 8008a9c: 731a strb r2, [r3, #12] return (uint8_t)USBD_OK; - 80086c6: 2300 movs r3, #0 + 8008a9e: 2300 movs r3, #0 } - 80086c8: 4618 mov r0, r3 - 80086ca: 3710 adds r7, #16 - 80086cc: 46bd mov sp, r7 - 80086ce: bd80 pop {r7, pc} - 80086d0: 2000013d .word 0x2000013d + 8008aa0: 4618 mov r0, r3 + 8008aa2: 3710 adds r7, #16 + 8008aa4: 46bd mov sp, r7 + 8008aa6: bd80 pop {r7, pc} + 8008aa8: 2000013d .word 0x2000013d -080086d4 : +08008aac : * @param pdev: device instance * @param cfgidx: Configuration index * @retval status */ static uint8_t USBD_HID_DeInit(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 80086d4: b580 push {r7, lr} - 80086d6: b082 sub sp, #8 - 80086d8: af00 add r7, sp, #0 - 80086da: 6078 str r0, [r7, #4] - 80086dc: 460b mov r3, r1 - 80086de: 70fb strb r3, [r7, #3] + 8008aac: b580 push {r7, lr} + 8008aae: b082 sub sp, #8 + 8008ab0: af00 add r7, sp, #0 + 8008ab2: 6078 str r0, [r7, #4] + 8008ab4: 460b mov r3, r1 + 8008ab6: 70fb strb r3, [r7, #3] /* Get the Endpoints addresses allocated for this class instance */ HIDInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR, (uint8_t)pdev->classId); #endif /* USE_USBD_COMPOSITE */ /* Close HID EPs */ (void)USBD_LL_CloseEP(pdev, HIDInEpAdd); - 80086e0: 4b1f ldr r3, [pc, #124] @ (8008760 ) - 80086e2: 781b ldrb r3, [r3, #0] - 80086e4: 4619 mov r1, r3 - 80086e6: 6878 ldr r0, [r7, #4] - 80086e8: f002 f841 bl 800a76e + 8008ab8: 4b1f ldr r3, [pc, #124] @ (8008b38 ) + 8008aba: 781b ldrb r3, [r3, #0] + 8008abc: 4619 mov r1, r3 + 8008abe: 6878 ldr r0, [r7, #4] + 8008ac0: f002 f841 bl 800ab46 pdev->ep_in[HIDInEpAdd & 0xFU].is_used = 0U; - 80086ec: 4b1c ldr r3, [pc, #112] @ (8008760 ) - 80086ee: 781b ldrb r3, [r3, #0] - 80086f0: f003 020f and.w r2, r3, #15 - 80086f4: 6879 ldr r1, [r7, #4] - 80086f6: 4613 mov r3, r2 - 80086f8: 009b lsls r3, r3, #2 - 80086fa: 4413 add r3, r2 - 80086fc: 009b lsls r3, r3, #2 - 80086fe: 440b add r3, r1 - 8008700: 3323 adds r3, #35 @ 0x23 - 8008702: 2200 movs r2, #0 - 8008704: 701a strb r2, [r3, #0] + 8008ac4: 4b1c ldr r3, [pc, #112] @ (8008b38 ) + 8008ac6: 781b ldrb r3, [r3, #0] + 8008ac8: f003 020f and.w r2, r3, #15 + 8008acc: 6879 ldr r1, [r7, #4] + 8008ace: 4613 mov r3, r2 + 8008ad0: 009b lsls r3, r3, #2 + 8008ad2: 4413 add r3, r2 + 8008ad4: 009b lsls r3, r3, #2 + 8008ad6: 440b add r3, r1 + 8008ad8: 3323 adds r3, #35 @ 0x23 + 8008ada: 2200 movs r2, #0 + 8008adc: 701a strb r2, [r3, #0] pdev->ep_in[HIDInEpAdd & 0xFU].bInterval = 0U; - 8008706: 4b16 ldr r3, [pc, #88] @ (8008760 ) - 8008708: 781b ldrb r3, [r3, #0] - 800870a: f003 020f and.w r2, r3, #15 - 800870e: 6879 ldr r1, [r7, #4] - 8008710: 4613 mov r3, r2 - 8008712: 009b lsls r3, r3, #2 - 8008714: 4413 add r3, r2 - 8008716: 009b lsls r3, r3, #2 - 8008718: 440b add r3, r1 - 800871a: 331c adds r3, #28 - 800871c: 2200 movs r2, #0 - 800871e: 601a str r2, [r3, #0] + 8008ade: 4b16 ldr r3, [pc, #88] @ (8008b38 ) + 8008ae0: 781b ldrb r3, [r3, #0] + 8008ae2: f003 020f and.w r2, r3, #15 + 8008ae6: 6879 ldr r1, [r7, #4] + 8008ae8: 4613 mov r3, r2 + 8008aea: 009b lsls r3, r3, #2 + 8008aec: 4413 add r3, r2 + 8008aee: 009b lsls r3, r3, #2 + 8008af0: 440b add r3, r1 + 8008af2: 331c adds r3, #28 + 8008af4: 2200 movs r2, #0 + 8008af6: 601a str r2, [r3, #0] /* Free allocated memory */ if (pdev->pClassDataCmsit[pdev->classId] != NULL) - 8008720: 687b ldr r3, [r7, #4] - 8008722: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008726: 687b ldr r3, [r7, #4] - 8008728: 32b0 adds r2, #176 @ 0xb0 - 800872a: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800872e: 2b00 cmp r3, #0 - 8008730: d011 beq.n 8008756 + 8008af8: 687b ldr r3, [r7, #4] + 8008afa: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008afe: 687b ldr r3, [r7, #4] + 8008b00: 32b0 adds r2, #176 @ 0xb0 + 8008b02: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008b06: 2b00 cmp r3, #0 + 8008b08: d011 beq.n 8008b2e { (void)USBD_free(pdev->pClassDataCmsit[pdev->classId]); - 8008732: 687b ldr r3, [r7, #4] - 8008734: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008738: 687b ldr r3, [r7, #4] - 800873a: 32b0 adds r2, #176 @ 0xb0 - 800873c: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008740: 4618 mov r0, r3 - 8008742: f002 f95b bl 800a9fc + 8008b0a: 687b ldr r3, [r7, #4] + 8008b0c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008b10: 687b ldr r3, [r7, #4] + 8008b12: 32b0 adds r2, #176 @ 0xb0 + 8008b14: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008b18: 4618 mov r0, r3 + 8008b1a: f002 f95b bl 800add4 pdev->pClassDataCmsit[pdev->classId] = NULL; - 8008746: 687b ldr r3, [r7, #4] - 8008748: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800874c: 687b ldr r3, [r7, #4] - 800874e: 32b0 adds r2, #176 @ 0xb0 - 8008750: 2100 movs r1, #0 - 8008752: f843 1022 str.w r1, [r3, r2, lsl #2] + 8008b1e: 687b ldr r3, [r7, #4] + 8008b20: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008b24: 687b ldr r3, [r7, #4] + 8008b26: 32b0 adds r2, #176 @ 0xb0 + 8008b28: 2100 movs r1, #0 + 8008b2a: f843 1022 str.w r1, [r3, r2, lsl #2] } return (uint8_t)USBD_OK; - 8008756: 2300 movs r3, #0 + 8008b2e: 2300 movs r3, #0 } - 8008758: 4618 mov r0, r3 - 800875a: 3708 adds r7, #8 - 800875c: 46bd mov sp, r7 - 800875e: bd80 pop {r7, pc} - 8008760: 2000013d .word 0x2000013d + 8008b30: 4618 mov r0, r3 + 8008b32: 3708 adds r7, #8 + 8008b34: 46bd mov sp, r7 + 8008b36: bd80 pop {r7, pc} + 8008b38: 2000013d .word 0x2000013d -08008764 : +08008b3c : * @param pdev: instance * @param req: usb requests * @retval status */ static uint8_t USBD_HID_Setup(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8008764: b580 push {r7, lr} - 8008766: b086 sub sp, #24 - 8008768: af00 add r7, sp, #0 - 800876a: 6078 str r0, [r7, #4] - 800876c: 6039 str r1, [r7, #0] + 8008b3c: b580 push {r7, lr} + 8008b3e: b086 sub sp, #24 + 8008b40: af00 add r7, sp, #0 + 8008b42: 6078 str r0, [r7, #4] + 8008b44: 6039 str r1, [r7, #0] USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; - 800876e: 687b ldr r3, [r7, #4] - 8008770: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008774: 687b ldr r3, [r7, #4] - 8008776: 32b0 adds r2, #176 @ 0xb0 - 8008778: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800877c: 60fb str r3, [r7, #12] + 8008b46: 687b ldr r3, [r7, #4] + 8008b48: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008b4c: 687b ldr r3, [r7, #4] + 8008b4e: 32b0 adds r2, #176 @ 0xb0 + 8008b50: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008b54: 60fb str r3, [r7, #12] USBD_StatusTypeDef ret = USBD_OK; - 800877e: 2300 movs r3, #0 - 8008780: 75fb strb r3, [r7, #23] + 8008b56: 2300 movs r3, #0 + 8008b58: 75fb strb r3, [r7, #23] uint16_t len; uint8_t *pbuf; uint16_t status_info = 0U; - 8008782: 2300 movs r3, #0 - 8008784: 817b strh r3, [r7, #10] + 8008b5a: 2300 movs r3, #0 + 8008b5c: 817b strh r3, [r7, #10] if (hhid == NULL) - 8008786: 68fb ldr r3, [r7, #12] - 8008788: 2b00 cmp r3, #0 - 800878a: d101 bne.n 8008790 + 8008b5e: 68fb ldr r3, [r7, #12] + 8008b60: 2b00 cmp r3, #0 + 8008b62: d101 bne.n 8008b68 { return (uint8_t)USBD_FAIL; - 800878c: 2303 movs r3, #3 - 800878e: e0e8 b.n 8008962 + 8008b64: 2303 movs r3, #3 + 8008b66: e0e8 b.n 8008d3a } switch (req->bmRequest & USB_REQ_TYPE_MASK) - 8008790: 683b ldr r3, [r7, #0] - 8008792: 781b ldrb r3, [r3, #0] - 8008794: f003 0360 and.w r3, r3, #96 @ 0x60 - 8008798: 2b00 cmp r3, #0 - 800879a: d046 beq.n 800882a - 800879c: 2b20 cmp r3, #32 - 800879e: f040 80d8 bne.w 8008952 + 8008b68: 683b ldr r3, [r7, #0] + 8008b6a: 781b ldrb r3, [r3, #0] + 8008b6c: f003 0360 and.w r3, r3, #96 @ 0x60 + 8008b70: 2b00 cmp r3, #0 + 8008b72: d046 beq.n 8008c02 + 8008b74: 2b20 cmp r3, #32 + 8008b76: f040 80d8 bne.w 8008d2a { case USB_REQ_TYPE_CLASS : switch (req->bRequest) - 80087a2: 683b ldr r3, [r7, #0] - 80087a4: 785b ldrb r3, [r3, #1] - 80087a6: 3b02 subs r3, #2 - 80087a8: 2b09 cmp r3, #9 - 80087aa: d836 bhi.n 800881a - 80087ac: a201 add r2, pc, #4 @ (adr r2, 80087b4 ) - 80087ae: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80087b2: bf00 nop - 80087b4: 0800880b .word 0x0800880b - 80087b8: 080087eb .word 0x080087eb - 80087bc: 0800881b .word 0x0800881b - 80087c0: 0800881b .word 0x0800881b - 80087c4: 0800881b .word 0x0800881b - 80087c8: 0800881b .word 0x0800881b - 80087cc: 0800881b .word 0x0800881b - 80087d0: 0800881b .word 0x0800881b - 80087d4: 080087f9 .word 0x080087f9 - 80087d8: 080087dd .word 0x080087dd + 8008b7a: 683b ldr r3, [r7, #0] + 8008b7c: 785b ldrb r3, [r3, #1] + 8008b7e: 3b02 subs r3, #2 + 8008b80: 2b09 cmp r3, #9 + 8008b82: d836 bhi.n 8008bf2 + 8008b84: a201 add r2, pc, #4 @ (adr r2, 8008b8c ) + 8008b86: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8008b8a: bf00 nop + 8008b8c: 08008be3 .word 0x08008be3 + 8008b90: 08008bc3 .word 0x08008bc3 + 8008b94: 08008bf3 .word 0x08008bf3 + 8008b98: 08008bf3 .word 0x08008bf3 + 8008b9c: 08008bf3 .word 0x08008bf3 + 8008ba0: 08008bf3 .word 0x08008bf3 + 8008ba4: 08008bf3 .word 0x08008bf3 + 8008ba8: 08008bf3 .word 0x08008bf3 + 8008bac: 08008bd1 .word 0x08008bd1 + 8008bb0: 08008bb5 .word 0x08008bb5 { case USBD_HID_REQ_SET_PROTOCOL: hhid->Protocol = (uint8_t)(req->wValue); - 80087dc: 683b ldr r3, [r7, #0] - 80087de: 885b ldrh r3, [r3, #2] - 80087e0: b2db uxtb r3, r3 - 80087e2: 461a mov r2, r3 - 80087e4: 68fb ldr r3, [r7, #12] - 80087e6: 601a str r2, [r3, #0] + 8008bb4: 683b ldr r3, [r7, #0] + 8008bb6: 885b ldrh r3, [r3, #2] + 8008bb8: b2db uxtb r3, r3 + 8008bba: 461a mov r2, r3 + 8008bbc: 68fb ldr r3, [r7, #12] + 8008bbe: 601a str r2, [r3, #0] break; - 80087e8: e01e b.n 8008828 + 8008bc0: e01e b.n 8008c00 case USBD_HID_REQ_GET_PROTOCOL: (void)USBD_CtlSendData(pdev, (uint8_t *)&hhid->Protocol, 1U); - 80087ea: 68fb ldr r3, [r7, #12] - 80087ec: 2201 movs r2, #1 - 80087ee: 4619 mov r1, r3 - 80087f0: 6878 ldr r0, [r7, #4] - 80087f2: f001 fc25 bl 800a040 + 8008bc2: 68fb ldr r3, [r7, #12] + 8008bc4: 2201 movs r2, #1 + 8008bc6: 4619 mov r1, r3 + 8008bc8: 6878 ldr r0, [r7, #4] + 8008bca: f001 fc25 bl 800a418 break; - 80087f6: e017 b.n 8008828 + 8008bce: e017 b.n 8008c00 case USBD_HID_REQ_SET_IDLE: hhid->IdleState = (uint8_t)(req->wValue >> 8); - 80087f8: 683b ldr r3, [r7, #0] - 80087fa: 885b ldrh r3, [r3, #2] - 80087fc: 0a1b lsrs r3, r3, #8 - 80087fe: b29b uxth r3, r3 - 8008800: b2db uxtb r3, r3 - 8008802: 461a mov r2, r3 - 8008804: 68fb ldr r3, [r7, #12] - 8008806: 605a str r2, [r3, #4] + 8008bd0: 683b ldr r3, [r7, #0] + 8008bd2: 885b ldrh r3, [r3, #2] + 8008bd4: 0a1b lsrs r3, r3, #8 + 8008bd6: b29b uxth r3, r3 + 8008bd8: b2db uxtb r3, r3 + 8008bda: 461a mov r2, r3 + 8008bdc: 68fb ldr r3, [r7, #12] + 8008bde: 605a str r2, [r3, #4] break; - 8008808: e00e b.n 8008828 + 8008be0: e00e b.n 8008c00 case USBD_HID_REQ_GET_IDLE: (void)USBD_CtlSendData(pdev, (uint8_t *)&hhid->IdleState, 1U); - 800880a: 68fb ldr r3, [r7, #12] - 800880c: 3304 adds r3, #4 - 800880e: 2201 movs r2, #1 - 8008810: 4619 mov r1, r3 - 8008812: 6878 ldr r0, [r7, #4] - 8008814: f001 fc14 bl 800a040 + 8008be2: 68fb ldr r3, [r7, #12] + 8008be4: 3304 adds r3, #4 + 8008be6: 2201 movs r2, #1 + 8008be8: 4619 mov r1, r3 + 8008bea: 6878 ldr r0, [r7, #4] + 8008bec: f001 fc14 bl 800a418 break; - 8008818: e006 b.n 8008828 + 8008bf0: e006 b.n 8008c00 default: USBD_CtlError(pdev, req); - 800881a: 6839 ldr r1, [r7, #0] - 800881c: 6878 ldr r0, [r7, #4] - 800881e: f001 fb92 bl 8009f46 + 8008bf2: 6839 ldr r1, [r7, #0] + 8008bf4: 6878 ldr r0, [r7, #4] + 8008bf6: f001 fb92 bl 800a31e ret = USBD_FAIL; - 8008822: 2303 movs r3, #3 - 8008824: 75fb strb r3, [r7, #23] + 8008bfa: 2303 movs r3, #3 + 8008bfc: 75fb strb r3, [r7, #23] break; - 8008826: bf00 nop + 8008bfe: bf00 nop } break; - 8008828: e09a b.n 8008960 + 8008c00: e09a b.n 8008d38 case USB_REQ_TYPE_STANDARD: switch (req->bRequest) - 800882a: 683b ldr r3, [r7, #0] - 800882c: 785b ldrb r3, [r3, #1] - 800882e: 2b0b cmp r3, #11 - 8008830: f200 8086 bhi.w 8008940 - 8008834: a201 add r2, pc, #4 @ (adr r2, 800883c ) - 8008836: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800883a: bf00 nop - 800883c: 0800886d .word 0x0800886d - 8008840: 0800894f .word 0x0800894f - 8008844: 08008941 .word 0x08008941 - 8008848: 08008941 .word 0x08008941 - 800884c: 08008941 .word 0x08008941 - 8008850: 08008941 .word 0x08008941 - 8008854: 08008897 .word 0x08008897 - 8008858: 08008941 .word 0x08008941 - 800885c: 08008941 .word 0x08008941 - 8008860: 08008941 .word 0x08008941 - 8008864: 080088ef .word 0x080088ef - 8008868: 08008919 .word 0x08008919 + 8008c02: 683b ldr r3, [r7, #0] + 8008c04: 785b ldrb r3, [r3, #1] + 8008c06: 2b0b cmp r3, #11 + 8008c08: f200 8086 bhi.w 8008d18 + 8008c0c: a201 add r2, pc, #4 @ (adr r2, 8008c14 ) + 8008c0e: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8008c12: bf00 nop + 8008c14: 08008c45 .word 0x08008c45 + 8008c18: 08008d27 .word 0x08008d27 + 8008c1c: 08008d19 .word 0x08008d19 + 8008c20: 08008d19 .word 0x08008d19 + 8008c24: 08008d19 .word 0x08008d19 + 8008c28: 08008d19 .word 0x08008d19 + 8008c2c: 08008c6f .word 0x08008c6f + 8008c30: 08008d19 .word 0x08008d19 + 8008c34: 08008d19 .word 0x08008d19 + 8008c38: 08008d19 .word 0x08008d19 + 8008c3c: 08008cc7 .word 0x08008cc7 + 8008c40: 08008cf1 .word 0x08008cf1 { case USB_REQ_GET_STATUS: if (pdev->dev_state == USBD_STATE_CONFIGURED) - 800886c: 687b ldr r3, [r7, #4] - 800886e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008872: b2db uxtb r3, r3 - 8008874: 2b03 cmp r3, #3 - 8008876: d107 bne.n 8008888 + 8008c44: 687b ldr r3, [r7, #4] + 8008c46: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008c4a: b2db uxtb r3, r3 + 8008c4c: 2b03 cmp r3, #3 + 8008c4e: d107 bne.n 8008c60 { (void)USBD_CtlSendData(pdev, (uint8_t *)&status_info, 2U); - 8008878: f107 030a add.w r3, r7, #10 - 800887c: 2202 movs r2, #2 - 800887e: 4619 mov r1, r3 - 8008880: 6878 ldr r0, [r7, #4] - 8008882: f001 fbdd bl 800a040 + 8008c50: f107 030a add.w r3, r7, #10 + 8008c54: 2202 movs r2, #2 + 8008c56: 4619 mov r1, r3 + 8008c58: 6878 ldr r0, [r7, #4] + 8008c5a: f001 fbdd bl 800a418 else { USBD_CtlError(pdev, req); ret = USBD_FAIL; } break; - 8008886: e063 b.n 8008950 + 8008c5e: e063 b.n 8008d28 USBD_CtlError(pdev, req); - 8008888: 6839 ldr r1, [r7, #0] - 800888a: 6878 ldr r0, [r7, #4] - 800888c: f001 fb5b bl 8009f46 + 8008c60: 6839 ldr r1, [r7, #0] + 8008c62: 6878 ldr r0, [r7, #4] + 8008c64: f001 fb5b bl 800a31e ret = USBD_FAIL; - 8008890: 2303 movs r3, #3 - 8008892: 75fb strb r3, [r7, #23] + 8008c68: 2303 movs r3, #3 + 8008c6a: 75fb strb r3, [r7, #23] break; - 8008894: e05c b.n 8008950 + 8008c6c: e05c b.n 8008d28 case USB_REQ_GET_DESCRIPTOR: if ((req->wValue >> 8) == HID_REPORT_DESC) - 8008896: 683b ldr r3, [r7, #0] - 8008898: 885b ldrh r3, [r3, #2] - 800889a: 0a1b lsrs r3, r3, #8 - 800889c: b29b uxth r3, r3 - 800889e: 2b22 cmp r3, #34 @ 0x22 - 80088a0: d108 bne.n 80088b4 + 8008c6e: 683b ldr r3, [r7, #0] + 8008c70: 885b ldrh r3, [r3, #2] + 8008c72: 0a1b lsrs r3, r3, #8 + 8008c74: b29b uxth r3, r3 + 8008c76: 2b22 cmp r3, #34 @ 0x22 + 8008c78: d108 bne.n 8008c8c { len = MIN(HID_MOUSE_REPORT_DESC_SIZE, req->wLength); - 80088a2: 683b ldr r3, [r7, #0] - 80088a4: 88db ldrh r3, [r3, #6] - 80088a6: 2b2d cmp r3, #45 @ 0x2d - 80088a8: bf28 it cs - 80088aa: 232d movcs r3, #45 @ 0x2d - 80088ac: 82bb strh r3, [r7, #20] + 8008c7a: 683b ldr r3, [r7, #0] + 8008c7c: 88db ldrh r3, [r3, #6] + 8008c7e: 2b2d cmp r3, #45 @ 0x2d + 8008c80: bf28 it cs + 8008c82: 232d movcs r3, #45 @ 0x2d + 8008c84: 82bb strh r3, [r7, #20] pbuf = HID_MOUSE_ReportDesc; - 80088ae: 4b2f ldr r3, [pc, #188] @ (800896c ) - 80088b0: 613b str r3, [r7, #16] - 80088b2: e015 b.n 80088e0 + 8008c86: 4b2f ldr r3, [pc, #188] @ (8008d44 ) + 8008c88: 613b str r3, [r7, #16] + 8008c8a: e015 b.n 8008cb8 } else if ((req->wValue >> 8) == HID_DESCRIPTOR_TYPE) - 80088b4: 683b ldr r3, [r7, #0] - 80088b6: 885b ldrh r3, [r3, #2] - 80088b8: 0a1b lsrs r3, r3, #8 - 80088ba: b29b uxth r3, r3 - 80088bc: 2b21 cmp r3, #33 @ 0x21 - 80088be: d108 bne.n 80088d2 + 8008c8c: 683b ldr r3, [r7, #0] + 8008c8e: 885b ldrh r3, [r3, #2] + 8008c90: 0a1b lsrs r3, r3, #8 + 8008c92: b29b uxth r3, r3 + 8008c94: 2b21 cmp r3, #33 @ 0x21 + 8008c96: d108 bne.n 8008caa { pbuf = USBD_HID_Desc; - 80088c0: 4b2b ldr r3, [pc, #172] @ (8008970 ) - 80088c2: 613b str r3, [r7, #16] + 8008c98: 4b2b ldr r3, [pc, #172] @ (8008d48 ) + 8008c9a: 613b str r3, [r7, #16] len = MIN(USB_HID_DESC_SIZ, req->wLength); - 80088c4: 683b ldr r3, [r7, #0] - 80088c6: 88db ldrh r3, [r3, #6] - 80088c8: 2b09 cmp r3, #9 - 80088ca: bf28 it cs - 80088cc: 2309 movcs r3, #9 - 80088ce: 82bb strh r3, [r7, #20] - 80088d0: e006 b.n 80088e0 + 8008c9c: 683b ldr r3, [r7, #0] + 8008c9e: 88db ldrh r3, [r3, #6] + 8008ca0: 2b09 cmp r3, #9 + 8008ca2: bf28 it cs + 8008ca4: 2309 movcs r3, #9 + 8008ca6: 82bb strh r3, [r7, #20] + 8008ca8: e006 b.n 8008cb8 } else { USBD_CtlError(pdev, req); - 80088d2: 6839 ldr r1, [r7, #0] - 80088d4: 6878 ldr r0, [r7, #4] - 80088d6: f001 fb36 bl 8009f46 + 8008caa: 6839 ldr r1, [r7, #0] + 8008cac: 6878 ldr r0, [r7, #4] + 8008cae: f001 fb36 bl 800a31e ret = USBD_FAIL; - 80088da: 2303 movs r3, #3 - 80088dc: 75fb strb r3, [r7, #23] + 8008cb2: 2303 movs r3, #3 + 8008cb4: 75fb strb r3, [r7, #23] break; - 80088de: e037 b.n 8008950 + 8008cb6: e037 b.n 8008d28 } (void)USBD_CtlSendData(pdev, pbuf, len); - 80088e0: 8abb ldrh r3, [r7, #20] - 80088e2: 461a mov r2, r3 - 80088e4: 6939 ldr r1, [r7, #16] - 80088e6: 6878 ldr r0, [r7, #4] - 80088e8: f001 fbaa bl 800a040 + 8008cb8: 8abb ldrh r3, [r7, #20] + 8008cba: 461a mov r2, r3 + 8008cbc: 6939 ldr r1, [r7, #16] + 8008cbe: 6878 ldr r0, [r7, #4] + 8008cc0: f001 fbaa bl 800a418 break; - 80088ec: e030 b.n 8008950 + 8008cc4: e030 b.n 8008d28 case USB_REQ_GET_INTERFACE : if (pdev->dev_state == USBD_STATE_CONFIGURED) - 80088ee: 687b ldr r3, [r7, #4] - 80088f0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80088f4: b2db uxtb r3, r3 - 80088f6: 2b03 cmp r3, #3 - 80088f8: d107 bne.n 800890a + 8008cc6: 687b ldr r3, [r7, #4] + 8008cc8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008ccc: b2db uxtb r3, r3 + 8008cce: 2b03 cmp r3, #3 + 8008cd0: d107 bne.n 8008ce2 { (void)USBD_CtlSendData(pdev, (uint8_t *)&hhid->AltSetting, 1U); - 80088fa: 68fb ldr r3, [r7, #12] - 80088fc: 3308 adds r3, #8 - 80088fe: 2201 movs r2, #1 - 8008900: 4619 mov r1, r3 - 8008902: 6878 ldr r0, [r7, #4] - 8008904: f001 fb9c bl 800a040 + 8008cd2: 68fb ldr r3, [r7, #12] + 8008cd4: 3308 adds r3, #8 + 8008cd6: 2201 movs r2, #1 + 8008cd8: 4619 mov r1, r3 + 8008cda: 6878 ldr r0, [r7, #4] + 8008cdc: f001 fb9c bl 800a418 else { USBD_CtlError(pdev, req); ret = USBD_FAIL; } break; - 8008908: e022 b.n 8008950 + 8008ce0: e022 b.n 8008d28 USBD_CtlError(pdev, req); - 800890a: 6839 ldr r1, [r7, #0] - 800890c: 6878 ldr r0, [r7, #4] - 800890e: f001 fb1a bl 8009f46 + 8008ce2: 6839 ldr r1, [r7, #0] + 8008ce4: 6878 ldr r0, [r7, #4] + 8008ce6: f001 fb1a bl 800a31e ret = USBD_FAIL; - 8008912: 2303 movs r3, #3 - 8008914: 75fb strb r3, [r7, #23] + 8008cea: 2303 movs r3, #3 + 8008cec: 75fb strb r3, [r7, #23] break; - 8008916: e01b b.n 8008950 + 8008cee: e01b b.n 8008d28 case USB_REQ_SET_INTERFACE: if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008918: 687b ldr r3, [r7, #4] - 800891a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800891e: b2db uxtb r3, r3 - 8008920: 2b03 cmp r3, #3 - 8008922: d106 bne.n 8008932 + 8008cf0: 687b ldr r3, [r7, #4] + 8008cf2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008cf6: b2db uxtb r3, r3 + 8008cf8: 2b03 cmp r3, #3 + 8008cfa: d106 bne.n 8008d0a { hhid->AltSetting = (uint8_t)(req->wValue); - 8008924: 683b ldr r3, [r7, #0] - 8008926: 885b ldrh r3, [r3, #2] - 8008928: b2db uxtb r3, r3 - 800892a: 461a mov r2, r3 - 800892c: 68fb ldr r3, [r7, #12] - 800892e: 609a str r2, [r3, #8] + 8008cfc: 683b ldr r3, [r7, #0] + 8008cfe: 885b ldrh r3, [r3, #2] + 8008d00: b2db uxtb r3, r3 + 8008d02: 461a mov r2, r3 + 8008d04: 68fb ldr r3, [r7, #12] + 8008d06: 609a str r2, [r3, #8] else { USBD_CtlError(pdev, req); ret = USBD_FAIL; } break; - 8008930: e00e b.n 8008950 + 8008d08: e00e b.n 8008d28 USBD_CtlError(pdev, req); - 8008932: 6839 ldr r1, [r7, #0] - 8008934: 6878 ldr r0, [r7, #4] - 8008936: f001 fb06 bl 8009f46 + 8008d0a: 6839 ldr r1, [r7, #0] + 8008d0c: 6878 ldr r0, [r7, #4] + 8008d0e: f001 fb06 bl 800a31e ret = USBD_FAIL; - 800893a: 2303 movs r3, #3 - 800893c: 75fb strb r3, [r7, #23] + 8008d12: 2303 movs r3, #3 + 8008d14: 75fb strb r3, [r7, #23] break; - 800893e: e007 b.n 8008950 + 8008d16: e007 b.n 8008d28 case USB_REQ_CLEAR_FEATURE: break; default: USBD_CtlError(pdev, req); - 8008940: 6839 ldr r1, [r7, #0] - 8008942: 6878 ldr r0, [r7, #4] - 8008944: f001 faff bl 8009f46 + 8008d18: 6839 ldr r1, [r7, #0] + 8008d1a: 6878 ldr r0, [r7, #4] + 8008d1c: f001 faff bl 800a31e ret = USBD_FAIL; - 8008948: 2303 movs r3, #3 - 800894a: 75fb strb r3, [r7, #23] + 8008d20: 2303 movs r3, #3 + 8008d22: 75fb strb r3, [r7, #23] break; - 800894c: e000 b.n 8008950 + 8008d24: e000 b.n 8008d28 break; - 800894e: bf00 nop + 8008d26: bf00 nop } break; - 8008950: e006 b.n 8008960 + 8008d28: e006 b.n 8008d38 default: USBD_CtlError(pdev, req); - 8008952: 6839 ldr r1, [r7, #0] - 8008954: 6878 ldr r0, [r7, #4] - 8008956: f001 faf6 bl 8009f46 + 8008d2a: 6839 ldr r1, [r7, #0] + 8008d2c: 6878 ldr r0, [r7, #4] + 8008d2e: f001 faf6 bl 800a31e ret = USBD_FAIL; - 800895a: 2303 movs r3, #3 - 800895c: 75fb strb r3, [r7, #23] + 8008d32: 2303 movs r3, #3 + 8008d34: 75fb strb r3, [r7, #23] break; - 800895e: bf00 nop + 8008d36: bf00 nop } return (uint8_t)ret; - 8008960: 7dfb ldrb r3, [r7, #23] + 8008d38: 7dfb ldrb r3, [r7, #23] } - 8008962: 4618 mov r0, r3 - 8008964: 3718 adds r7, #24 - 8008966: 46bd mov sp, r7 - 8008968: bd80 pop {r7, pc} - 800896a: bf00 nop - 800896c: 20000110 .word 0x20000110 - 8008970: 200000f8 .word 0x200000f8 + 8008d3a: 4618 mov r0, r3 + 8008d3c: 3718 adds r7, #24 + 8008d3e: 46bd mov sp, r7 + 8008d40: bd80 pop {r7, pc} + 8008d42: bf00 nop + 8008d44: 20000110 .word 0x20000110 + 8008d48: 200000f8 .word 0x200000f8 -08008974 : +08008d4c : uint8_t USBD_HID_SendReport(USBD_HandleTypeDef *pdev, uint8_t *report, uint16_t len, uint8_t ClassId) { USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[ClassId]; #else uint8_t USBD_HID_SendReport(USBD_HandleTypeDef *pdev, uint8_t *report, uint16_t len) { - 8008974: b580 push {r7, lr} - 8008976: b086 sub sp, #24 - 8008978: af00 add r7, sp, #0 - 800897a: 60f8 str r0, [r7, #12] - 800897c: 60b9 str r1, [r7, #8] - 800897e: 4613 mov r3, r2 - 8008980: 80fb strh r3, [r7, #6] + 8008d4c: b580 push {r7, lr} + 8008d4e: b086 sub sp, #24 + 8008d50: af00 add r7, sp, #0 + 8008d52: 60f8 str r0, [r7, #12] + 8008d54: 60b9 str r1, [r7, #8] + 8008d56: 4613 mov r3, r2 + 8008d58: 80fb strh r3, [r7, #6] USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; - 8008982: 68fb ldr r3, [r7, #12] - 8008984: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008988: 68fb ldr r3, [r7, #12] - 800898a: 32b0 adds r2, #176 @ 0xb0 - 800898c: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008990: 617b str r3, [r7, #20] + 8008d5a: 68fb ldr r3, [r7, #12] + 8008d5c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008d60: 68fb ldr r3, [r7, #12] + 8008d62: 32b0 adds r2, #176 @ 0xb0 + 8008d64: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008d68: 617b str r3, [r7, #20] #endif /* USE_USBD_COMPOSITE */ if (hhid == NULL) - 8008992: 697b ldr r3, [r7, #20] - 8008994: 2b00 cmp r3, #0 - 8008996: d101 bne.n 800899c + 8008d6a: 697b ldr r3, [r7, #20] + 8008d6c: 2b00 cmp r3, #0 + 8008d6e: d101 bne.n 8008d74 { return (uint8_t)USBD_FAIL; - 8008998: 2303 movs r3, #3 - 800899a: e014 b.n 80089c6 + 8008d70: 2303 movs r3, #3 + 8008d72: e014 b.n 8008d9e #ifdef USE_USBD_COMPOSITE /* Get the Endpoints addresses allocated for this class instance */ HIDInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR, ClassId); #endif /* USE_USBD_COMPOSITE */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 800899c: 68fb ldr r3, [r7, #12] - 800899e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80089a2: b2db uxtb r3, r3 - 80089a4: 2b03 cmp r3, #3 - 80089a6: d10d bne.n 80089c4 + 8008d74: 68fb ldr r3, [r7, #12] + 8008d76: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008d7a: b2db uxtb r3, r3 + 8008d7c: 2b03 cmp r3, #3 + 8008d7e: d10d bne.n 8008d9c { if (hhid->state == USBD_HID_IDLE) - 80089a8: 697b ldr r3, [r7, #20] - 80089aa: 7b1b ldrb r3, [r3, #12] - 80089ac: 2b00 cmp r3, #0 - 80089ae: d109 bne.n 80089c4 + 8008d80: 697b ldr r3, [r7, #20] + 8008d82: 7b1b ldrb r3, [r3, #12] + 8008d84: 2b00 cmp r3, #0 + 8008d86: d109 bne.n 8008d9c { hhid->state = USBD_HID_BUSY; - 80089b0: 697b ldr r3, [r7, #20] - 80089b2: 2201 movs r2, #1 - 80089b4: 731a strb r2, [r3, #12] + 8008d88: 697b ldr r3, [r7, #20] + 8008d8a: 2201 movs r2, #1 + 8008d8c: 731a strb r2, [r3, #12] (void)USBD_LL_Transmit(pdev, HIDInEpAdd, report, len); - 80089b6: 4b06 ldr r3, [pc, #24] @ (80089d0 ) - 80089b8: 7819 ldrb r1, [r3, #0] - 80089ba: 88fb ldrh r3, [r7, #6] - 80089bc: 68ba ldr r2, [r7, #8] - 80089be: 68f8 ldr r0, [r7, #12] - 80089c0: f001 ff7d bl 800a8be + 8008d8e: 4b06 ldr r3, [pc, #24] @ (8008da8 ) + 8008d90: 7819 ldrb r1, [r3, #0] + 8008d92: 88fb ldrh r3, [r7, #6] + 8008d94: 68ba ldr r2, [r7, #8] + 8008d96: 68f8 ldr r0, [r7, #12] + 8008d98: f001 ff7d bl 800ac96 } } return (uint8_t)USBD_OK; - 80089c4: 2300 movs r3, #0 + 8008d9c: 2300 movs r3, #0 } - 80089c6: 4618 mov r0, r3 - 80089c8: 3718 adds r7, #24 - 80089ca: 46bd mov sp, r7 - 80089cc: bd80 pop {r7, pc} - 80089ce: bf00 nop - 80089d0: 2000013d .word 0x2000013d + 8008d9e: 4618 mov r0, r3 + 8008da0: 3718 adds r7, #24 + 8008da2: 46bd mov sp, r7 + 8008da4: bd80 pop {r7, pc} + 8008da6: bf00 nop + 8008da8: 2000013d .word 0x2000013d -080089d4 : +08008dac : * @param speed : current device speed * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetFSCfgDesc(uint16_t *length) { - 80089d4: b580 push {r7, lr} - 80089d6: b084 sub sp, #16 - 80089d8: af00 add r7, sp, #0 - 80089da: 6078 str r0, [r7, #4] + 8008dac: b580 push {r7, lr} + 8008dae: b084 sub sp, #16 + 8008db0: af00 add r7, sp, #0 + 8008db2: 6078 str r0, [r7, #4] USBD_EpDescTypeDef *pEpDesc = USBD_GetEpDesc(USBD_HID_CfgDesc, HID_EPIN_ADDR); - 80089dc: 2181 movs r1, #129 @ 0x81 - 80089de: 4809 ldr r0, [pc, #36] @ (8008a04 ) - 80089e0: f000 fc4e bl 8009280 - 80089e4: 60f8 str r0, [r7, #12] + 8008db4: 2181 movs r1, #129 @ 0x81 + 8008db6: 4809 ldr r0, [pc, #36] @ (8008ddc ) + 8008db8: f000 fc4e bl 8009658 + 8008dbc: 60f8 str r0, [r7, #12] if (pEpDesc != NULL) - 80089e6: 68fb ldr r3, [r7, #12] - 80089e8: 2b00 cmp r3, #0 - 80089ea: d002 beq.n 80089f2 + 8008dbe: 68fb ldr r3, [r7, #12] + 8008dc0: 2b00 cmp r3, #0 + 8008dc2: d002 beq.n 8008dca { pEpDesc->bInterval = HID_FS_BINTERVAL; - 80089ec: 68fb ldr r3, [r7, #12] - 80089ee: 220a movs r2, #10 - 80089f0: 719a strb r2, [r3, #6] + 8008dc4: 68fb ldr r3, [r7, #12] + 8008dc6: 220a movs r2, #10 + 8008dc8: 719a strb r2, [r3, #6] } *length = (uint16_t)sizeof(USBD_HID_CfgDesc); - 80089f2: 687b ldr r3, [r7, #4] - 80089f4: 2222 movs r2, #34 @ 0x22 - 80089f6: 801a strh r2, [r3, #0] + 8008dca: 687b ldr r3, [r7, #4] + 8008dcc: 2222 movs r2, #34 @ 0x22 + 8008dce: 801a strh r2, [r3, #0] return USBD_HID_CfgDesc; - 80089f8: 4b02 ldr r3, [pc, #8] @ (8008a04 ) + 8008dd0: 4b02 ldr r3, [pc, #8] @ (8008ddc ) } - 80089fa: 4618 mov r0, r3 - 80089fc: 3710 adds r7, #16 - 80089fe: 46bd mov sp, r7 - 8008a00: bd80 pop {r7, pc} - 8008a02: bf00 nop - 8008a04: 200000d4 .word 0x200000d4 + 8008dd2: 4618 mov r0, r3 + 8008dd4: 3710 adds r7, #16 + 8008dd6: 46bd mov sp, r7 + 8008dd8: bd80 pop {r7, pc} + 8008dda: bf00 nop + 8008ddc: 200000d4 .word 0x200000d4 -08008a08 : +08008de0 : * @param speed : current device speed * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetHSCfgDesc(uint16_t *length) { - 8008a08: b580 push {r7, lr} - 8008a0a: b084 sub sp, #16 - 8008a0c: af00 add r7, sp, #0 - 8008a0e: 6078 str r0, [r7, #4] + 8008de0: b580 push {r7, lr} + 8008de2: b084 sub sp, #16 + 8008de4: af00 add r7, sp, #0 + 8008de6: 6078 str r0, [r7, #4] USBD_EpDescTypeDef *pEpDesc = USBD_GetEpDesc(USBD_HID_CfgDesc, HID_EPIN_ADDR); - 8008a10: 2181 movs r1, #129 @ 0x81 - 8008a12: 4809 ldr r0, [pc, #36] @ (8008a38 ) - 8008a14: f000 fc34 bl 8009280 - 8008a18: 60f8 str r0, [r7, #12] + 8008de8: 2181 movs r1, #129 @ 0x81 + 8008dea: 4809 ldr r0, [pc, #36] @ (8008e10 ) + 8008dec: f000 fc34 bl 8009658 + 8008df0: 60f8 str r0, [r7, #12] if (pEpDesc != NULL) - 8008a1a: 68fb ldr r3, [r7, #12] - 8008a1c: 2b00 cmp r3, #0 - 8008a1e: d002 beq.n 8008a26 + 8008df2: 68fb ldr r3, [r7, #12] + 8008df4: 2b00 cmp r3, #0 + 8008df6: d002 beq.n 8008dfe { pEpDesc->bInterval = HID_HS_BINTERVAL; - 8008a20: 68fb ldr r3, [r7, #12] - 8008a22: 2207 movs r2, #7 - 8008a24: 719a strb r2, [r3, #6] + 8008df8: 68fb ldr r3, [r7, #12] + 8008dfa: 2207 movs r2, #7 + 8008dfc: 719a strb r2, [r3, #6] } *length = (uint16_t)sizeof(USBD_HID_CfgDesc); - 8008a26: 687b ldr r3, [r7, #4] - 8008a28: 2222 movs r2, #34 @ 0x22 - 8008a2a: 801a strh r2, [r3, #0] + 8008dfe: 687b ldr r3, [r7, #4] + 8008e00: 2222 movs r2, #34 @ 0x22 + 8008e02: 801a strh r2, [r3, #0] return USBD_HID_CfgDesc; - 8008a2c: 4b02 ldr r3, [pc, #8] @ (8008a38 ) + 8008e04: 4b02 ldr r3, [pc, #8] @ (8008e10 ) } - 8008a2e: 4618 mov r0, r3 - 8008a30: 3710 adds r7, #16 - 8008a32: 46bd mov sp, r7 - 8008a34: bd80 pop {r7, pc} - 8008a36: bf00 nop - 8008a38: 200000d4 .word 0x200000d4 + 8008e06: 4618 mov r0, r3 + 8008e08: 3710 adds r7, #16 + 8008e0a: 46bd mov sp, r7 + 8008e0c: bd80 pop {r7, pc} + 8008e0e: bf00 nop + 8008e10: 200000d4 .word 0x200000d4 -08008a3c : +08008e14 : * @param speed : current device speed * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetOtherSpeedCfgDesc(uint16_t *length) { - 8008a3c: b580 push {r7, lr} - 8008a3e: b084 sub sp, #16 - 8008a40: af00 add r7, sp, #0 - 8008a42: 6078 str r0, [r7, #4] + 8008e14: b580 push {r7, lr} + 8008e16: b084 sub sp, #16 + 8008e18: af00 add r7, sp, #0 + 8008e1a: 6078 str r0, [r7, #4] USBD_EpDescTypeDef *pEpDesc = USBD_GetEpDesc(USBD_HID_CfgDesc, HID_EPIN_ADDR); - 8008a44: 2181 movs r1, #129 @ 0x81 - 8008a46: 4809 ldr r0, [pc, #36] @ (8008a6c ) - 8008a48: f000 fc1a bl 8009280 - 8008a4c: 60f8 str r0, [r7, #12] + 8008e1c: 2181 movs r1, #129 @ 0x81 + 8008e1e: 4809 ldr r0, [pc, #36] @ (8008e44 ) + 8008e20: f000 fc1a bl 8009658 + 8008e24: 60f8 str r0, [r7, #12] if (pEpDesc != NULL) - 8008a4e: 68fb ldr r3, [r7, #12] - 8008a50: 2b00 cmp r3, #0 - 8008a52: d002 beq.n 8008a5a + 8008e26: 68fb ldr r3, [r7, #12] + 8008e28: 2b00 cmp r3, #0 + 8008e2a: d002 beq.n 8008e32 { pEpDesc->bInterval = HID_FS_BINTERVAL; - 8008a54: 68fb ldr r3, [r7, #12] - 8008a56: 220a movs r2, #10 - 8008a58: 719a strb r2, [r3, #6] + 8008e2c: 68fb ldr r3, [r7, #12] + 8008e2e: 220a movs r2, #10 + 8008e30: 719a strb r2, [r3, #6] } *length = (uint16_t)sizeof(USBD_HID_CfgDesc); - 8008a5a: 687b ldr r3, [r7, #4] - 8008a5c: 2222 movs r2, #34 @ 0x22 - 8008a5e: 801a strh r2, [r3, #0] + 8008e32: 687b ldr r3, [r7, #4] + 8008e34: 2222 movs r2, #34 @ 0x22 + 8008e36: 801a strh r2, [r3, #0] return USBD_HID_CfgDesc; - 8008a60: 4b02 ldr r3, [pc, #8] @ (8008a6c ) + 8008e38: 4b02 ldr r3, [pc, #8] @ (8008e44 ) } - 8008a62: 4618 mov r0, r3 - 8008a64: 3710 adds r7, #16 - 8008a66: 46bd mov sp, r7 - 8008a68: bd80 pop {r7, pc} - 8008a6a: bf00 nop - 8008a6c: 200000d4 .word 0x200000d4 + 8008e3a: 4618 mov r0, r3 + 8008e3c: 3710 adds r7, #16 + 8008e3e: 46bd mov sp, r7 + 8008e40: bd80 pop {r7, pc} + 8008e42: bf00 nop + 8008e44: 200000d4 .word 0x200000d4 -08008a70 : +08008e48 : * @param pdev: device instance * @param epnum: endpoint index * @retval status */ static uint8_t USBD_HID_DataIn(USBD_HandleTypeDef *pdev, uint8_t epnum) { - 8008a70: b480 push {r7} - 8008a72: b083 sub sp, #12 - 8008a74: af00 add r7, sp, #0 - 8008a76: 6078 str r0, [r7, #4] - 8008a78: 460b mov r3, r1 - 8008a7a: 70fb strb r3, [r7, #3] + 8008e48: b480 push {r7} + 8008e4a: b083 sub sp, #12 + 8008e4c: af00 add r7, sp, #0 + 8008e4e: 6078 str r0, [r7, #4] + 8008e50: 460b mov r3, r1 + 8008e52: 70fb strb r3, [r7, #3] UNUSED(epnum); /* Ensure that the FIFO is empty before a new transfer, this condition could be caused by a new transfer before the end of the previous transfer */ ((USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId])->state = USBD_HID_IDLE; - 8008a7c: 687b ldr r3, [r7, #4] - 8008a7e: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008a82: 687b ldr r3, [r7, #4] - 8008a84: 32b0 adds r2, #176 @ 0xb0 - 8008a86: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008a8a: 2200 movs r2, #0 - 8008a8c: 731a strb r2, [r3, #12] + 8008e54: 687b ldr r3, [r7, #4] + 8008e56: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008e5a: 687b ldr r3, [r7, #4] + 8008e5c: 32b0 adds r2, #176 @ 0xb0 + 8008e5e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008e62: 2200 movs r2, #0 + 8008e64: 731a strb r2, [r3, #12] return (uint8_t)USBD_OK; - 8008a8e: 2300 movs r3, #0 + 8008e66: 2300 movs r3, #0 } - 8008a90: 4618 mov r0, r3 - 8008a92: 370c adds r7, #12 - 8008a94: 46bd mov sp, r7 - 8008a96: f85d 7b04 ldr.w r7, [sp], #4 - 8008a9a: 4770 bx lr + 8008e68: 4618 mov r0, r3 + 8008e6a: 370c adds r7, #12 + 8008e6c: 46bd mov sp, r7 + 8008e6e: f85d 7b04 ldr.w r7, [sp], #4 + 8008e72: 4770 bx lr -08008a9c : +08008e74 : * return Device Qualifier descriptor * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetDeviceQualifierDesc(uint16_t *length) { - 8008a9c: b480 push {r7} - 8008a9e: b083 sub sp, #12 - 8008aa0: af00 add r7, sp, #0 - 8008aa2: 6078 str r0, [r7, #4] + 8008e74: b480 push {r7} + 8008e76: b083 sub sp, #12 + 8008e78: af00 add r7, sp, #0 + 8008e7a: 6078 str r0, [r7, #4] *length = (uint16_t)sizeof(USBD_HID_DeviceQualifierDesc); - 8008aa4: 687b ldr r3, [r7, #4] - 8008aa6: 220a movs r2, #10 - 8008aa8: 801a strh r2, [r3, #0] + 8008e7c: 687b ldr r3, [r7, #4] + 8008e7e: 220a movs r2, #10 + 8008e80: 801a strh r2, [r3, #0] return USBD_HID_DeviceQualifierDesc; - 8008aaa: 4b03 ldr r3, [pc, #12] @ (8008ab8 ) + 8008e82: 4b03 ldr r3, [pc, #12] @ (8008e90 ) } - 8008aac: 4618 mov r0, r3 - 8008aae: 370c adds r7, #12 - 8008ab0: 46bd mov sp, r7 - 8008ab2: f85d 7b04 ldr.w r7, [sp], #4 - 8008ab6: 4770 bx lr - 8008ab8: 20000104 .word 0x20000104 + 8008e84: 4618 mov r0, r3 + 8008e86: 370c adds r7, #12 + 8008e88: 46bd mov sp, r7 + 8008e8a: f85d 7b04 ldr.w r7, [sp], #4 + 8008e8e: 4770 bx lr + 8008e90: 20000104 .word 0x20000104 -08008abc : +08008e94 : * @param id: Low level core index * @retval status: USBD Status */ USBD_StatusTypeDef USBD_Init(USBD_HandleTypeDef *pdev, USBD_DescriptorsTypeDef *pdesc, uint8_t id) { - 8008abc: b580 push {r7, lr} - 8008abe: b086 sub sp, #24 - 8008ac0: af00 add r7, sp, #0 - 8008ac2: 60f8 str r0, [r7, #12] - 8008ac4: 60b9 str r1, [r7, #8] - 8008ac6: 4613 mov r3, r2 - 8008ac8: 71fb strb r3, [r7, #7] + 8008e94: b580 push {r7, lr} + 8008e96: b086 sub sp, #24 + 8008e98: af00 add r7, sp, #0 + 8008e9a: 60f8 str r0, [r7, #12] + 8008e9c: 60b9 str r1, [r7, #8] + 8008e9e: 4613 mov r3, r2 + 8008ea0: 71fb strb r3, [r7, #7] USBD_StatusTypeDef ret; /* Check whether the USB Host handle is valid */ if (pdev == NULL) - 8008aca: 68fb ldr r3, [r7, #12] - 8008acc: 2b00 cmp r3, #0 - 8008ace: d101 bne.n 8008ad4 + 8008ea2: 68fb ldr r3, [r7, #12] + 8008ea4: 2b00 cmp r3, #0 + 8008ea6: d101 bne.n 8008eac { #if (USBD_DEBUG_LEVEL > 1U) USBD_ErrLog("Invalid Device handle"); #endif /* (USBD_DEBUG_LEVEL > 1U) */ return USBD_FAIL; - 8008ad0: 2303 movs r3, #3 - 8008ad2: e01f b.n 8008b14 + 8008ea8: 2303 movs r3, #3 + 8008eaa: e01f b.n 8008eec pdev->NumClasses = 0; pdev->classId = 0; } #else /* Unlink previous class*/ pdev->pClass[0] = NULL; - 8008ad4: 68fb ldr r3, [r7, #12] - 8008ad6: 2200 movs r2, #0 - 8008ad8: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 + 8008eac: 68fb ldr r3, [r7, #12] + 8008eae: 2200 movs r2, #0 + 8008eb0: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 pdev->pUserData[0] = NULL; - 8008adc: 68fb ldr r3, [r7, #12] - 8008ade: 2200 movs r2, #0 - 8008ae0: f8c3 22c4 str.w r2, [r3, #708] @ 0x2c4 + 8008eb4: 68fb ldr r3, [r7, #12] + 8008eb6: 2200 movs r2, #0 + 8008eb8: f8c3 22c4 str.w r2, [r3, #708] @ 0x2c4 #endif /* USE_USBD_COMPOSITE */ pdev->pConfDesc = NULL; - 8008ae4: 68fb ldr r3, [r7, #12] - 8008ae6: 2200 movs r2, #0 - 8008ae8: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 + 8008ebc: 68fb ldr r3, [r7, #12] + 8008ebe: 2200 movs r2, #0 + 8008ec0: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 /* Assign USBD Descriptors */ if (pdesc != NULL) - 8008aec: 68bb ldr r3, [r7, #8] - 8008aee: 2b00 cmp r3, #0 - 8008af0: d003 beq.n 8008afa + 8008ec4: 68bb ldr r3, [r7, #8] + 8008ec6: 2b00 cmp r3, #0 + 8008ec8: d003 beq.n 8008ed2 { pdev->pDesc = pdesc; - 8008af2: 68fb ldr r3, [r7, #12] - 8008af4: 68ba ldr r2, [r7, #8] - 8008af6: f8c3 22b4 str.w r2, [r3, #692] @ 0x2b4 + 8008eca: 68fb ldr r3, [r7, #12] + 8008ecc: 68ba ldr r2, [r7, #8] + 8008ece: f8c3 22b4 str.w r2, [r3, #692] @ 0x2b4 } /* Set Device initial State */ pdev->dev_state = USBD_STATE_DEFAULT; - 8008afa: 68fb ldr r3, [r7, #12] - 8008afc: 2201 movs r2, #1 - 8008afe: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8008ed2: 68fb ldr r3, [r7, #12] + 8008ed4: 2201 movs r2, #1 + 8008ed6: f883 229c strb.w r2, [r3, #668] @ 0x29c pdev->id = id; - 8008b02: 68fb ldr r3, [r7, #12] - 8008b04: 79fa ldrb r2, [r7, #7] - 8008b06: 701a strb r2, [r3, #0] + 8008eda: 68fb ldr r3, [r7, #12] + 8008edc: 79fa ldrb r2, [r7, #7] + 8008ede: 701a strb r2, [r3, #0] /* Initialize low level driver */ ret = USBD_LL_Init(pdev); - 8008b08: 68f8 ldr r0, [r7, #12] - 8008b0a: f001 fda3 bl 800a654 - 8008b0e: 4603 mov r3, r0 - 8008b10: 75fb strb r3, [r7, #23] + 8008ee0: 68f8 ldr r0, [r7, #12] + 8008ee2: f001 fda3 bl 800aa2c + 8008ee6: 4603 mov r3, r0 + 8008ee8: 75fb strb r3, [r7, #23] return ret; - 8008b12: 7dfb ldrb r3, [r7, #23] + 8008eea: 7dfb ldrb r3, [r7, #23] } - 8008b14: 4618 mov r0, r3 - 8008b16: 3718 adds r7, #24 - 8008b18: 46bd mov sp, r7 - 8008b1a: bd80 pop {r7, pc} + 8008eec: 4618 mov r0, r3 + 8008eee: 3718 adds r7, #24 + 8008ef0: 46bd mov sp, r7 + 8008ef2: bd80 pop {r7, pc} -08008b1c : +08008ef4 : * @param pdev: Device Handle * @param pclass: Class handle * @retval USBD Status */ USBD_StatusTypeDef USBD_RegisterClass(USBD_HandleTypeDef *pdev, USBD_ClassTypeDef *pclass) { - 8008b1c: b580 push {r7, lr} - 8008b1e: b084 sub sp, #16 - 8008b20: af00 add r7, sp, #0 - 8008b22: 6078 str r0, [r7, #4] - 8008b24: 6039 str r1, [r7, #0] + 8008ef4: b580 push {r7, lr} + 8008ef6: b084 sub sp, #16 + 8008ef8: af00 add r7, sp, #0 + 8008efa: 6078 str r0, [r7, #4] + 8008efc: 6039 str r1, [r7, #0] uint16_t len = 0U; - 8008b26: 2300 movs r3, #0 - 8008b28: 81fb strh r3, [r7, #14] + 8008efe: 2300 movs r3, #0 + 8008f00: 81fb strh r3, [r7, #14] if (pclass == NULL) - 8008b2a: 683b ldr r3, [r7, #0] - 8008b2c: 2b00 cmp r3, #0 - 8008b2e: d101 bne.n 8008b34 + 8008f02: 683b ldr r3, [r7, #0] + 8008f04: 2b00 cmp r3, #0 + 8008f06: d101 bne.n 8008f0c { #if (USBD_DEBUG_LEVEL > 1U) USBD_ErrLog("Invalid Class handle"); #endif /* (USBD_DEBUG_LEVEL > 1U) */ return USBD_FAIL; - 8008b30: 2303 movs r3, #3 - 8008b32: e025 b.n 8008b80 + 8008f08: 2303 movs r3, #3 + 8008f0a: e025 b.n 8008f58 } /* link the class to the USB Device handle */ pdev->pClass[0] = pclass; - 8008b34: 687b ldr r3, [r7, #4] - 8008b36: 683a ldr r2, [r7, #0] - 8008b38: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 + 8008f0c: 687b ldr r3, [r7, #4] + 8008f0e: 683a ldr r2, [r7, #0] + 8008f10: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 if (pdev->pClass[pdev->classId]->GetHSConfigDescriptor != NULL) { pdev->pConfDesc = (void *)pdev->pClass[pdev->classId]->GetHSConfigDescriptor(&len); } #else /* Default USE_USB_FS */ if (pdev->pClass[pdev->classId]->GetFSConfigDescriptor != NULL) - 8008b3c: 687b ldr r3, [r7, #4] - 8008b3e: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008b42: 687b ldr r3, [r7, #4] - 8008b44: 32ae adds r2, #174 @ 0xae - 8008b46: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008b4a: 6adb ldr r3, [r3, #44] @ 0x2c - 8008b4c: 2b00 cmp r3, #0 - 8008b4e: d00f beq.n 8008b70 + 8008f14: 687b ldr r3, [r7, #4] + 8008f16: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008f1a: 687b ldr r3, [r7, #4] + 8008f1c: 32ae adds r2, #174 @ 0xae + 8008f1e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008f22: 6adb ldr r3, [r3, #44] @ 0x2c + 8008f24: 2b00 cmp r3, #0 + 8008f26: d00f beq.n 8008f48 { pdev->pConfDesc = (void *)pdev->pClass[pdev->classId]->GetFSConfigDescriptor(&len); - 8008b50: 687b ldr r3, [r7, #4] - 8008b52: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008b56: 687b ldr r3, [r7, #4] - 8008b58: 32ae adds r2, #174 @ 0xae - 8008b5a: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008b5e: 6adb ldr r3, [r3, #44] @ 0x2c - 8008b60: f107 020e add.w r2, r7, #14 - 8008b64: 4610 mov r0, r2 - 8008b66: 4798 blx r3 - 8008b68: 4602 mov r2, r0 - 8008b6a: 687b ldr r3, [r7, #4] - 8008b6c: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 + 8008f28: 687b ldr r3, [r7, #4] + 8008f2a: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008f2e: 687b ldr r3, [r7, #4] + 8008f30: 32ae adds r2, #174 @ 0xae + 8008f32: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008f36: 6adb ldr r3, [r3, #44] @ 0x2c + 8008f38: f107 020e add.w r2, r7, #14 + 8008f3c: 4610 mov r0, r2 + 8008f3e: 4798 blx r3 + 8008f40: 4602 mov r2, r0 + 8008f42: 687b ldr r3, [r7, #4] + 8008f44: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 } #endif /* USE_USB_FS */ /* Increment the NumClasses */ pdev->NumClasses++; - 8008b70: 687b ldr r3, [r7, #4] - 8008b72: f8d3 32d8 ldr.w r3, [r3, #728] @ 0x2d8 - 8008b76: 1c5a adds r2, r3, #1 - 8008b78: 687b ldr r3, [r7, #4] - 8008b7a: f8c3 22d8 str.w r2, [r3, #728] @ 0x2d8 + 8008f48: 687b ldr r3, [r7, #4] + 8008f4a: f8d3 32d8 ldr.w r3, [r3, #728] @ 0x2d8 + 8008f4e: 1c5a adds r2, r3, #1 + 8008f50: 687b ldr r3, [r7, #4] + 8008f52: f8c3 22d8 str.w r2, [r3, #728] @ 0x2d8 return USBD_OK; - 8008b7e: 2300 movs r3, #0 + 8008f56: 2300 movs r3, #0 } - 8008b80: 4618 mov r0, r3 - 8008b82: 3710 adds r7, #16 - 8008b84: 46bd mov sp, r7 - 8008b86: bd80 pop {r7, pc} + 8008f58: 4618 mov r0, r3 + 8008f5a: 3710 adds r7, #16 + 8008f5c: 46bd mov sp, r7 + 8008f5e: bd80 pop {r7, pc} -08008b88 : +08008f60 : * Start the USB Device Core. * @param pdev: Device Handle * @retval USBD Status */ USBD_StatusTypeDef USBD_Start(USBD_HandleTypeDef *pdev) { - 8008b88: b580 push {r7, lr} - 8008b8a: b082 sub sp, #8 - 8008b8c: af00 add r7, sp, #0 - 8008b8e: 6078 str r0, [r7, #4] + 8008f60: b580 push {r7, lr} + 8008f62: b082 sub sp, #8 + 8008f64: af00 add r7, sp, #0 + 8008f66: 6078 str r0, [r7, #4] #ifdef USE_USBD_COMPOSITE pdev->classId = 0U; #endif /* USE_USBD_COMPOSITE */ /* Start the low level driver */ return USBD_LL_Start(pdev); - 8008b90: 6878 ldr r0, [r7, #4] - 8008b92: f001 fdab bl 800a6ec - 8008b96: 4603 mov r3, r0 + 8008f68: 6878 ldr r0, [r7, #4] + 8008f6a: f001 fdab bl 800aac4 + 8008f6e: 4603 mov r3, r0 } - 8008b98: 4618 mov r0, r3 - 8008b9a: 3708 adds r7, #8 - 8008b9c: 46bd mov sp, r7 - 8008b9e: bd80 pop {r7, pc} + 8008f70: 4618 mov r0, r3 + 8008f72: 3708 adds r7, #8 + 8008f74: 46bd mov sp, r7 + 8008f76: bd80 pop {r7, pc} -08008ba0 : +08008f78 : * Launch test mode process * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_RunTestMode(USBD_HandleTypeDef *pdev) { - 8008ba0: b480 push {r7} - 8008ba2: b083 sub sp, #12 - 8008ba4: af00 add r7, sp, #0 - 8008ba6: 6078 str r0, [r7, #4] + 8008f78: b480 push {r7} + 8008f7a: b083 sub sp, #12 + 8008f7c: af00 add r7, sp, #0 + 8008f7e: 6078 str r0, [r7, #4] return ret; #else /* Prevent unused argument compilation warning */ UNUSED(pdev); return USBD_OK; - 8008ba8: 2300 movs r3, #0 + 8008f80: 2300 movs r3, #0 #endif /* USBD_HS_TESTMODE_ENABLE */ } - 8008baa: 4618 mov r0, r3 - 8008bac: 370c adds r7, #12 - 8008bae: 46bd mov sp, r7 - 8008bb0: f85d 7b04 ldr.w r7, [sp], #4 - 8008bb4: 4770 bx lr + 8008f82: 4618 mov r0, r3 + 8008f84: 370c adds r7, #12 + 8008f86: 46bd mov sp, r7 + 8008f88: f85d 7b04 ldr.w r7, [sp], #4 + 8008f8c: 4770 bx lr -08008bb6 : +08008f8e : * @param cfgidx: configuration index * @retval status */ USBD_StatusTypeDef USBD_SetClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 8008bb6: b580 push {r7, lr} - 8008bb8: b084 sub sp, #16 - 8008bba: af00 add r7, sp, #0 - 8008bbc: 6078 str r0, [r7, #4] - 8008bbe: 460b mov r3, r1 - 8008bc0: 70fb strb r3, [r7, #3] + 8008f8e: b580 push {r7, lr} + 8008f90: b084 sub sp, #16 + 8008f92: af00 add r7, sp, #0 + 8008f94: 6078 str r0, [r7, #4] + 8008f96: 460b mov r3, r1 + 8008f98: 70fb strb r3, [r7, #3] USBD_StatusTypeDef ret = USBD_OK; - 8008bc2: 2300 movs r3, #0 - 8008bc4: 73fb strb r3, [r7, #15] + 8008f9a: 2300 movs r3, #0 + 8008f9c: 73fb strb r3, [r7, #15] } } } } #else if (pdev->pClass[0] != NULL) - 8008bc6: 687b ldr r3, [r7, #4] - 8008bc8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008bcc: 2b00 cmp r3, #0 - 8008bce: d009 beq.n 8008be4 + 8008f9e: 687b ldr r3, [r7, #4] + 8008fa0: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008fa4: 2b00 cmp r3, #0 + 8008fa6: d009 beq.n 8008fbc { /* Set configuration and Start the Class */ ret = (USBD_StatusTypeDef)pdev->pClass[0]->Init(pdev, cfgidx); - 8008bd0: 687b ldr r3, [r7, #4] - 8008bd2: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008bd6: 681b ldr r3, [r3, #0] - 8008bd8: 78fa ldrb r2, [r7, #3] - 8008bda: 4611 mov r1, r2 - 8008bdc: 6878 ldr r0, [r7, #4] - 8008bde: 4798 blx r3 - 8008be0: 4603 mov r3, r0 - 8008be2: 73fb strb r3, [r7, #15] + 8008fa8: 687b ldr r3, [r7, #4] + 8008faa: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008fae: 681b ldr r3, [r3, #0] + 8008fb0: 78fa ldrb r2, [r7, #3] + 8008fb2: 4611 mov r1, r2 + 8008fb4: 6878 ldr r0, [r7, #4] + 8008fb6: 4798 blx r3 + 8008fb8: 4603 mov r3, r0 + 8008fba: 73fb strb r3, [r7, #15] } #endif /* USE_USBD_COMPOSITE */ return ret; - 8008be4: 7bfb ldrb r3, [r7, #15] + 8008fbc: 7bfb ldrb r3, [r7, #15] } - 8008be6: 4618 mov r0, r3 - 8008be8: 3710 adds r7, #16 - 8008bea: 46bd mov sp, r7 - 8008bec: bd80 pop {r7, pc} + 8008fbe: 4618 mov r0, r3 + 8008fc0: 3710 adds r7, #16 + 8008fc2: 46bd mov sp, r7 + 8008fc4: bd80 pop {r7, pc} -08008bee : +08008fc6 : * @param pdev: device instance * @param cfgidx: configuration index * @retval status */ USBD_StatusTypeDef USBD_ClrClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 8008bee: b580 push {r7, lr} - 8008bf0: b084 sub sp, #16 - 8008bf2: af00 add r7, sp, #0 - 8008bf4: 6078 str r0, [r7, #4] - 8008bf6: 460b mov r3, r1 - 8008bf8: 70fb strb r3, [r7, #3] + 8008fc6: b580 push {r7, lr} + 8008fc8: b084 sub sp, #16 + 8008fca: af00 add r7, sp, #0 + 8008fcc: 6078 str r0, [r7, #4] + 8008fce: 460b mov r3, r1 + 8008fd0: 70fb strb r3, [r7, #3] USBD_StatusTypeDef ret = USBD_OK; - 8008bfa: 2300 movs r3, #0 - 8008bfc: 73fb strb r3, [r7, #15] + 8008fd2: 2300 movs r3, #0 + 8008fd4: 73fb strb r3, [r7, #15] } } } #else /* Clear configuration and De-initialize the Class process */ if (pdev->pClass[0]->DeInit(pdev, cfgidx) != 0U) - 8008bfe: 687b ldr r3, [r7, #4] - 8008c00: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008c04: 685b ldr r3, [r3, #4] - 8008c06: 78fa ldrb r2, [r7, #3] - 8008c08: 4611 mov r1, r2 - 8008c0a: 6878 ldr r0, [r7, #4] - 8008c0c: 4798 blx r3 - 8008c0e: 4603 mov r3, r0 - 8008c10: 2b00 cmp r3, #0 - 8008c12: d001 beq.n 8008c18 + 8008fd6: 687b ldr r3, [r7, #4] + 8008fd8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008fdc: 685b ldr r3, [r3, #4] + 8008fde: 78fa ldrb r2, [r7, #3] + 8008fe0: 4611 mov r1, r2 + 8008fe2: 6878 ldr r0, [r7, #4] + 8008fe4: 4798 blx r3 + 8008fe6: 4603 mov r3, r0 + 8008fe8: 2b00 cmp r3, #0 + 8008fea: d001 beq.n 8008ff0 { ret = USBD_FAIL; - 8008c14: 2303 movs r3, #3 - 8008c16: 73fb strb r3, [r7, #15] + 8008fec: 2303 movs r3, #3 + 8008fee: 73fb strb r3, [r7, #15] } #endif /* USE_USBD_COMPOSITE */ return ret; - 8008c18: 7bfb ldrb r3, [r7, #15] + 8008ff0: 7bfb ldrb r3, [r7, #15] } - 8008c1a: 4618 mov r0, r3 - 8008c1c: 3710 adds r7, #16 - 8008c1e: 46bd mov sp, r7 - 8008c20: bd80 pop {r7, pc} + 8008ff2: 4618 mov r0, r3 + 8008ff4: 3710 adds r7, #16 + 8008ff6: 46bd mov sp, r7 + 8008ff8: bd80 pop {r7, pc} -08008c22 : +08008ffa : * @param pdev: device instance * @param psetup: setup packet buffer pointer * @retval status */ USBD_StatusTypeDef USBD_LL_SetupStage(USBD_HandleTypeDef *pdev, uint8_t *psetup) { - 8008c22: b580 push {r7, lr} - 8008c24: b084 sub sp, #16 - 8008c26: af00 add r7, sp, #0 - 8008c28: 6078 str r0, [r7, #4] - 8008c2a: 6039 str r1, [r7, #0] + 8008ffa: b580 push {r7, lr} + 8008ffc: b084 sub sp, #16 + 8008ffe: af00 add r7, sp, #0 + 8009000: 6078 str r0, [r7, #4] + 8009002: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret; USBD_ParseSetupRequest(&pdev->request, psetup); - 8008c2c: 687b ldr r3, [r7, #4] - 8008c2e: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008c32: 6839 ldr r1, [r7, #0] - 8008c34: 4618 mov r0, r3 - 8008c36: f001 f94c bl 8009ed2 + 8009004: 687b ldr r3, [r7, #4] + 8009006: f203 23aa addw r3, r3, #682 @ 0x2aa + 800900a: 6839 ldr r1, [r7, #0] + 800900c: 4618 mov r0, r3 + 800900e: f001 f94c bl 800a2aa pdev->ep0_state = USBD_EP0_SETUP; - 8008c3a: 687b ldr r3, [r7, #4] - 8008c3c: 2201 movs r2, #1 - 8008c3e: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 8009012: 687b ldr r3, [r7, #4] + 8009014: 2201 movs r2, #1 + 8009016: f8c3 2294 str.w r2, [r3, #660] @ 0x294 pdev->ep0_data_len = pdev->request.wLength; - 8008c42: 687b ldr r3, [r7, #4] - 8008c44: f8b3 32b0 ldrh.w r3, [r3, #688] @ 0x2b0 - 8008c48: 461a mov r2, r3 - 8008c4a: 687b ldr r3, [r7, #4] - 8008c4c: f8c3 2298 str.w r2, [r3, #664] @ 0x298 + 800901a: 687b ldr r3, [r7, #4] + 800901c: f8b3 32b0 ldrh.w r3, [r3, #688] @ 0x2b0 + 8009020: 461a mov r2, r3 + 8009022: 687b ldr r3, [r7, #4] + 8009024: f8c3 2298 str.w r2, [r3, #664] @ 0x298 switch (pdev->request.bmRequest & 0x1FU) - 8008c50: 687b ldr r3, [r7, #4] - 8008c52: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa - 8008c56: f003 031f and.w r3, r3, #31 - 8008c5a: 2b02 cmp r3, #2 - 8008c5c: d01a beq.n 8008c94 - 8008c5e: 2b02 cmp r3, #2 - 8008c60: d822 bhi.n 8008ca8 - 8008c62: 2b00 cmp r3, #0 - 8008c64: d002 beq.n 8008c6c - 8008c66: 2b01 cmp r3, #1 - 8008c68: d00a beq.n 8008c80 - 8008c6a: e01d b.n 8008ca8 + 8009028: 687b ldr r3, [r7, #4] + 800902a: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa + 800902e: f003 031f and.w r3, r3, #31 + 8009032: 2b02 cmp r3, #2 + 8009034: d01a beq.n 800906c + 8009036: 2b02 cmp r3, #2 + 8009038: d822 bhi.n 8009080 + 800903a: 2b00 cmp r3, #0 + 800903c: d002 beq.n 8009044 + 800903e: 2b01 cmp r3, #1 + 8009040: d00a beq.n 8009058 + 8009042: e01d b.n 8009080 { case USB_REQ_RECIPIENT_DEVICE: ret = USBD_StdDevReq(pdev, &pdev->request); - 8008c6c: 687b ldr r3, [r7, #4] - 8008c6e: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008c72: 4619 mov r1, r3 - 8008c74: 6878 ldr r0, [r7, #4] - 8008c76: f000 fb77 bl 8009368 - 8008c7a: 4603 mov r3, r0 - 8008c7c: 73fb strb r3, [r7, #15] + 8009044: 687b ldr r3, [r7, #4] + 8009046: f203 23aa addw r3, r3, #682 @ 0x2aa + 800904a: 4619 mov r1, r3 + 800904c: 6878 ldr r0, [r7, #4] + 800904e: f000 fb77 bl 8009740 + 8009052: 4603 mov r3, r0 + 8009054: 73fb strb r3, [r7, #15] break; - 8008c7e: e020 b.n 8008cc2 + 8009056: e020 b.n 800909a case USB_REQ_RECIPIENT_INTERFACE: ret = USBD_StdItfReq(pdev, &pdev->request); - 8008c80: 687b ldr r3, [r7, #4] - 8008c82: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008c86: 4619 mov r1, r3 - 8008c88: 6878 ldr r0, [r7, #4] - 8008c8a: f000 fbdf bl 800944c - 8008c8e: 4603 mov r3, r0 - 8008c90: 73fb strb r3, [r7, #15] + 8009058: 687b ldr r3, [r7, #4] + 800905a: f203 23aa addw r3, r3, #682 @ 0x2aa + 800905e: 4619 mov r1, r3 + 8009060: 6878 ldr r0, [r7, #4] + 8009062: f000 fbdf bl 8009824 + 8009066: 4603 mov r3, r0 + 8009068: 73fb strb r3, [r7, #15] break; - 8008c92: e016 b.n 8008cc2 + 800906a: e016 b.n 800909a case USB_REQ_RECIPIENT_ENDPOINT: ret = USBD_StdEPReq(pdev, &pdev->request); - 8008c94: 687b ldr r3, [r7, #4] - 8008c96: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008c9a: 4619 mov r1, r3 - 8008c9c: 6878 ldr r0, [r7, #4] - 8008c9e: f000 fc41 bl 8009524 - 8008ca2: 4603 mov r3, r0 - 8008ca4: 73fb strb r3, [r7, #15] + 800906c: 687b ldr r3, [r7, #4] + 800906e: f203 23aa addw r3, r3, #682 @ 0x2aa + 8009072: 4619 mov r1, r3 + 8009074: 6878 ldr r0, [r7, #4] + 8009076: f000 fc41 bl 80098fc + 800907a: 4603 mov r3, r0 + 800907c: 73fb strb r3, [r7, #15] break; - 8008ca6: e00c b.n 8008cc2 + 800907e: e00c b.n 800909a default: ret = USBD_LL_StallEP(pdev, (pdev->request.bmRequest & 0x80U)); - 8008ca8: 687b ldr r3, [r7, #4] - 8008caa: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa - 8008cae: f023 037f bic.w r3, r3, #127 @ 0x7f - 8008cb2: b2db uxtb r3, r3 - 8008cb4: 4619 mov r1, r3 - 8008cb6: 6878 ldr r0, [r7, #4] - 8008cb8: f001 fd78 bl 800a7ac - 8008cbc: 4603 mov r3, r0 - 8008cbe: 73fb strb r3, [r7, #15] + 8009080: 687b ldr r3, [r7, #4] + 8009082: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa + 8009086: f023 037f bic.w r3, r3, #127 @ 0x7f + 800908a: b2db uxtb r3, r3 + 800908c: 4619 mov r1, r3 + 800908e: 6878 ldr r0, [r7, #4] + 8009090: f001 fd78 bl 800ab84 + 8009094: 4603 mov r3, r0 + 8009096: 73fb strb r3, [r7, #15] break; - 8008cc0: bf00 nop + 8009098: bf00 nop } return ret; - 8008cc2: 7bfb ldrb r3, [r7, #15] + 800909a: 7bfb ldrb r3, [r7, #15] } - 8008cc4: 4618 mov r0, r3 - 8008cc6: 3710 adds r7, #16 - 8008cc8: 46bd mov sp, r7 - 8008cca: bd80 pop {r7, pc} + 800909c: 4618 mov r0, r3 + 800909e: 3710 adds r7, #16 + 80090a0: 46bd mov sp, r7 + 80090a2: bd80 pop {r7, pc} -08008ccc : +080090a4 : * @param pdata: data pointer * @retval status */ USBD_StatusTypeDef USBD_LL_DataOutStage(USBD_HandleTypeDef *pdev, uint8_t epnum, uint8_t *pdata) { - 8008ccc: b580 push {r7, lr} - 8008cce: b086 sub sp, #24 - 8008cd0: af00 add r7, sp, #0 - 8008cd2: 60f8 str r0, [r7, #12] - 8008cd4: 460b mov r3, r1 - 8008cd6: 607a str r2, [r7, #4] - 8008cd8: 72fb strb r3, [r7, #11] + 80090a4: b580 push {r7, lr} + 80090a6: b086 sub sp, #24 + 80090a8: af00 add r7, sp, #0 + 80090aa: 60f8 str r0, [r7, #12] + 80090ac: 460b mov r3, r1 + 80090ae: 607a str r2, [r7, #4] + 80090b0: 72fb strb r3, [r7, #11] USBD_EndpointTypeDef *pep; USBD_StatusTypeDef ret = USBD_OK; - 8008cda: 2300 movs r3, #0 - 8008cdc: 75fb strb r3, [r7, #23] + 80090b2: 2300 movs r3, #0 + 80090b4: 75fb strb r3, [r7, #23] uint8_t idx; UNUSED(pdata); if (epnum == 0U) - 8008cde: 7afb ldrb r3, [r7, #11] - 8008ce0: 2b00 cmp r3, #0 - 8008ce2: d177 bne.n 8008dd4 + 80090b6: 7afb ldrb r3, [r7, #11] + 80090b8: 2b00 cmp r3, #0 + 80090ba: d177 bne.n 80091ac { pep = &pdev->ep_out[0]; - 8008ce4: 68fb ldr r3, [r7, #12] - 8008ce6: f503 73aa add.w r3, r3, #340 @ 0x154 - 8008cea: 613b str r3, [r7, #16] + 80090bc: 68fb ldr r3, [r7, #12] + 80090be: f503 73aa add.w r3, r3, #340 @ 0x154 + 80090c2: 613b str r3, [r7, #16] if (pdev->ep0_state == USBD_EP0_DATA_OUT) - 8008cec: 68fb ldr r3, [r7, #12] - 8008cee: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 - 8008cf2: 2b03 cmp r3, #3 - 8008cf4: f040 80a1 bne.w 8008e3a + 80090c4: 68fb ldr r3, [r7, #12] + 80090c6: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 + 80090ca: 2b03 cmp r3, #3 + 80090cc: f040 80a1 bne.w 8009212 { if (pep->rem_length > pep->maxpacket) - 8008cf8: 693b ldr r3, [r7, #16] - 8008cfa: 685b ldr r3, [r3, #4] - 8008cfc: 693a ldr r2, [r7, #16] - 8008cfe: 8992 ldrh r2, [r2, #12] - 8008d00: 4293 cmp r3, r2 - 8008d02: d91c bls.n 8008d3e + 80090d0: 693b ldr r3, [r7, #16] + 80090d2: 685b ldr r3, [r3, #4] + 80090d4: 693a ldr r2, [r7, #16] + 80090d6: 8992 ldrh r2, [r2, #12] + 80090d8: 4293 cmp r3, r2 + 80090da: d91c bls.n 8009116 { pep->rem_length -= pep->maxpacket; - 8008d04: 693b ldr r3, [r7, #16] - 8008d06: 685b ldr r3, [r3, #4] - 8008d08: 693a ldr r2, [r7, #16] - 8008d0a: 8992 ldrh r2, [r2, #12] - 8008d0c: 1a9a subs r2, r3, r2 - 8008d0e: 693b ldr r3, [r7, #16] - 8008d10: 605a str r2, [r3, #4] + 80090dc: 693b ldr r3, [r7, #16] + 80090de: 685b ldr r3, [r3, #4] + 80090e0: 693a ldr r2, [r7, #16] + 80090e2: 8992 ldrh r2, [r2, #12] + 80090e4: 1a9a subs r2, r3, r2 + 80090e6: 693b ldr r3, [r7, #16] + 80090e8: 605a str r2, [r3, #4] pep->pbuffer += pep->maxpacket; - 8008d12: 693b ldr r3, [r7, #16] - 8008d14: 691b ldr r3, [r3, #16] - 8008d16: 693a ldr r2, [r7, #16] - 8008d18: 8992 ldrh r2, [r2, #12] - 8008d1a: 441a add r2, r3 - 8008d1c: 693b ldr r3, [r7, #16] - 8008d1e: 611a str r2, [r3, #16] + 80090ea: 693b ldr r3, [r7, #16] + 80090ec: 691b ldr r3, [r3, #16] + 80090ee: 693a ldr r2, [r7, #16] + 80090f0: 8992 ldrh r2, [r2, #12] + 80090f2: 441a add r2, r3 + 80090f4: 693b ldr r3, [r7, #16] + 80090f6: 611a str r2, [r3, #16] (void)USBD_CtlContinueRx(pdev, pep->pbuffer, MAX(pep->rem_length, pep->maxpacket)); - 8008d20: 693b ldr r3, [r7, #16] - 8008d22: 6919 ldr r1, [r3, #16] - 8008d24: 693b ldr r3, [r7, #16] - 8008d26: 899b ldrh r3, [r3, #12] - 8008d28: 461a mov r2, r3 - 8008d2a: 693b ldr r3, [r7, #16] - 8008d2c: 685b ldr r3, [r3, #4] - 8008d2e: 4293 cmp r3, r2 - 8008d30: bf38 it cc - 8008d32: 4613 movcc r3, r2 - 8008d34: 461a mov r2, r3 - 8008d36: 68f8 ldr r0, [r7, #12] - 8008d38: f001 f9b1 bl 800a09e - 8008d3c: e07d b.n 8008e3a + 80090f8: 693b ldr r3, [r7, #16] + 80090fa: 6919 ldr r1, [r3, #16] + 80090fc: 693b ldr r3, [r7, #16] + 80090fe: 899b ldrh r3, [r3, #12] + 8009100: 461a mov r2, r3 + 8009102: 693b ldr r3, [r7, #16] + 8009104: 685b ldr r3, [r3, #4] + 8009106: 4293 cmp r3, r2 + 8009108: bf38 it cc + 800910a: 4613 movcc r3, r2 + 800910c: 461a mov r2, r3 + 800910e: 68f8 ldr r0, [r7, #12] + 8009110: f001 f9b1 bl 800a476 + 8009114: e07d b.n 8009212 } else { /* Find the class ID relative to the current request */ switch (pdev->request.bmRequest & 0x1FU) - 8008d3e: 68fb ldr r3, [r7, #12] - 8008d40: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa - 8008d44: f003 031f and.w r3, r3, #31 - 8008d48: 2b02 cmp r3, #2 - 8008d4a: d014 beq.n 8008d76 - 8008d4c: 2b02 cmp r3, #2 - 8008d4e: d81d bhi.n 8008d8c - 8008d50: 2b00 cmp r3, #0 - 8008d52: d002 beq.n 8008d5a - 8008d54: 2b01 cmp r3, #1 - 8008d56: d003 beq.n 8008d60 - 8008d58: e018 b.n 8008d8c + 8009116: 68fb ldr r3, [r7, #12] + 8009118: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa + 800911c: f003 031f and.w r3, r3, #31 + 8009120: 2b02 cmp r3, #2 + 8009122: d014 beq.n 800914e + 8009124: 2b02 cmp r3, #2 + 8009126: d81d bhi.n 8009164 + 8009128: 2b00 cmp r3, #0 + 800912a: d002 beq.n 8009132 + 800912c: 2b01 cmp r3, #1 + 800912e: d003 beq.n 8009138 + 8009130: e018 b.n 8009164 { case USB_REQ_RECIPIENT_DEVICE: /* Device requests must be managed by the first instantiated class (or duplicated by all classes for simplicity) */ idx = 0U; - 8008d5a: 2300 movs r3, #0 - 8008d5c: 75bb strb r3, [r7, #22] + 8009132: 2300 movs r3, #0 + 8009134: 75bb strb r3, [r7, #22] break; - 8008d5e: e018 b.n 8008d92 + 8009136: e018 b.n 800916a case USB_REQ_RECIPIENT_INTERFACE: idx = USBD_CoreFindIF(pdev, LOBYTE(pdev->request.wIndex)); - 8008d60: 68fb ldr r3, [r7, #12] - 8008d62: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae - 8008d66: b2db uxtb r3, r3 - 8008d68: 4619 mov r1, r3 - 8008d6a: 68f8 ldr r0, [r7, #12] - 8008d6c: f000 fa6e bl 800924c - 8008d70: 4603 mov r3, r0 - 8008d72: 75bb strb r3, [r7, #22] + 8009138: 68fb ldr r3, [r7, #12] + 800913a: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae + 800913e: b2db uxtb r3, r3 + 8009140: 4619 mov r1, r3 + 8009142: 68f8 ldr r0, [r7, #12] + 8009144: f000 fa6e bl 8009624 + 8009148: 4603 mov r3, r0 + 800914a: 75bb strb r3, [r7, #22] break; - 8008d74: e00d b.n 8008d92 + 800914c: e00d b.n 800916a case USB_REQ_RECIPIENT_ENDPOINT: idx = USBD_CoreFindEP(pdev, LOBYTE(pdev->request.wIndex)); - 8008d76: 68fb ldr r3, [r7, #12] - 8008d78: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae - 8008d7c: b2db uxtb r3, r3 - 8008d7e: 4619 mov r1, r3 - 8008d80: 68f8 ldr r0, [r7, #12] - 8008d82: f000 fa70 bl 8009266 - 8008d86: 4603 mov r3, r0 - 8008d88: 75bb strb r3, [r7, #22] + 800914e: 68fb ldr r3, [r7, #12] + 8009150: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae + 8009154: b2db uxtb r3, r3 + 8009156: 4619 mov r1, r3 + 8009158: 68f8 ldr r0, [r7, #12] + 800915a: f000 fa70 bl 800963e + 800915e: 4603 mov r3, r0 + 8009160: 75bb strb r3, [r7, #22] break; - 8008d8a: e002 b.n 8008d92 + 8009162: e002 b.n 800916a default: /* Back to the first class in case of doubt */ idx = 0U; - 8008d8c: 2300 movs r3, #0 - 8008d8e: 75bb strb r3, [r7, #22] + 8009164: 2300 movs r3, #0 + 8009166: 75bb strb r3, [r7, #22] break; - 8008d90: bf00 nop + 8009168: bf00 nop } if (idx < USBD_MAX_SUPPORTED_CLASS) - 8008d92: 7dbb ldrb r3, [r7, #22] - 8008d94: 2b00 cmp r3, #0 - 8008d96: d119 bne.n 8008dcc + 800916a: 7dbb ldrb r3, [r7, #22] + 800916c: 2b00 cmp r3, #0 + 800916e: d119 bne.n 80091a4 { /* Setup the class ID and route the request to the relative class function */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008d98: 68fb ldr r3, [r7, #12] - 8008d9a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008d9e: b2db uxtb r3, r3 - 8008da0: 2b03 cmp r3, #3 - 8008da2: d113 bne.n 8008dcc + 8009170: 68fb ldr r3, [r7, #12] + 8009172: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009176: b2db uxtb r3, r3 + 8009178: 2b03 cmp r3, #3 + 800917a: d113 bne.n 80091a4 { if (pdev->pClass[idx]->EP0_RxReady != NULL) - 8008da4: 7dba ldrb r2, [r7, #22] - 8008da6: 68fb ldr r3, [r7, #12] - 8008da8: 32ae adds r2, #174 @ 0xae - 8008daa: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008dae: 691b ldr r3, [r3, #16] - 8008db0: 2b00 cmp r3, #0 - 8008db2: d00b beq.n 8008dcc + 800917c: 7dba ldrb r2, [r7, #22] + 800917e: 68fb ldr r3, [r7, #12] + 8009180: 32ae adds r2, #174 @ 0xae + 8009182: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009186: 691b ldr r3, [r3, #16] + 8009188: 2b00 cmp r3, #0 + 800918a: d00b beq.n 80091a4 { pdev->classId = idx; - 8008db4: 7dba ldrb r2, [r7, #22] - 8008db6: 68fb ldr r3, [r7, #12] - 8008db8: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 800918c: 7dba ldrb r2, [r7, #22] + 800918e: 68fb ldr r3, [r7, #12] + 8009190: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 pdev->pClass[idx]->EP0_RxReady(pdev); - 8008dbc: 7dba ldrb r2, [r7, #22] - 8008dbe: 68fb ldr r3, [r7, #12] - 8008dc0: 32ae adds r2, #174 @ 0xae - 8008dc2: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008dc6: 691b ldr r3, [r3, #16] - 8008dc8: 68f8 ldr r0, [r7, #12] - 8008dca: 4798 blx r3 + 8009194: 7dba ldrb r2, [r7, #22] + 8009196: 68fb ldr r3, [r7, #12] + 8009198: 32ae adds r2, #174 @ 0xae + 800919a: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800919e: 691b ldr r3, [r3, #16] + 80091a0: 68f8 ldr r0, [r7, #12] + 80091a2: 4798 blx r3 } } } (void)USBD_CtlSendStatus(pdev); - 8008dcc: 68f8 ldr r0, [r7, #12] - 8008dce: f001 f977 bl 800a0c0 - 8008dd2: e032 b.n 8008e3a + 80091a4: 68f8 ldr r0, [r7, #12] + 80091a6: f001 f977 bl 800a498 + 80091aa: e032 b.n 8009212 } } else { /* Get the class index relative to this interface */ idx = USBD_CoreFindEP(pdev, (epnum & 0x7FU)); - 8008dd4: 7afb ldrb r3, [r7, #11] - 8008dd6: f003 037f and.w r3, r3, #127 @ 0x7f - 8008dda: b2db uxtb r3, r3 - 8008ddc: 4619 mov r1, r3 - 8008dde: 68f8 ldr r0, [r7, #12] - 8008de0: f000 fa41 bl 8009266 - 8008de4: 4603 mov r3, r0 - 8008de6: 75bb strb r3, [r7, #22] + 80091ac: 7afb ldrb r3, [r7, #11] + 80091ae: f003 037f and.w r3, r3, #127 @ 0x7f + 80091b2: b2db uxtb r3, r3 + 80091b4: 4619 mov r1, r3 + 80091b6: 68f8 ldr r0, [r7, #12] + 80091b8: f000 fa41 bl 800963e + 80091bc: 4603 mov r3, r0 + 80091be: 75bb strb r3, [r7, #22] if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 8008de8: 7dbb ldrb r3, [r7, #22] - 8008dea: 2bff cmp r3, #255 @ 0xff - 8008dec: d025 beq.n 8008e3a - 8008dee: 7dbb ldrb r3, [r7, #22] - 8008df0: 2b00 cmp r3, #0 - 8008df2: d122 bne.n 8008e3a + 80091c0: 7dbb ldrb r3, [r7, #22] + 80091c2: 2bff cmp r3, #255 @ 0xff + 80091c4: d025 beq.n 8009212 + 80091c6: 7dbb ldrb r3, [r7, #22] + 80091c8: 2b00 cmp r3, #0 + 80091ca: d122 bne.n 8009212 { /* Call the class data out function to manage the request */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008df4: 68fb ldr r3, [r7, #12] - 8008df6: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008dfa: b2db uxtb r3, r3 - 8008dfc: 2b03 cmp r3, #3 - 8008dfe: d117 bne.n 8008e30 + 80091cc: 68fb ldr r3, [r7, #12] + 80091ce: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80091d2: b2db uxtb r3, r3 + 80091d4: 2b03 cmp r3, #3 + 80091d6: d117 bne.n 8009208 { if (pdev->pClass[idx]->DataOut != NULL) - 8008e00: 7dba ldrb r2, [r7, #22] - 8008e02: 68fb ldr r3, [r7, #12] - 8008e04: 32ae adds r2, #174 @ 0xae - 8008e06: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008e0a: 699b ldr r3, [r3, #24] - 8008e0c: 2b00 cmp r3, #0 - 8008e0e: d00f beq.n 8008e30 + 80091d8: 7dba ldrb r2, [r7, #22] + 80091da: 68fb ldr r3, [r7, #12] + 80091dc: 32ae adds r2, #174 @ 0xae + 80091de: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80091e2: 699b ldr r3, [r3, #24] + 80091e4: 2b00 cmp r3, #0 + 80091e6: d00f beq.n 8009208 { pdev->classId = idx; - 8008e10: 7dba ldrb r2, [r7, #22] - 8008e12: 68fb ldr r3, [r7, #12] - 8008e14: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 80091e8: 7dba ldrb r2, [r7, #22] + 80091ea: 68fb ldr r3, [r7, #12] + 80091ec: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataOut(pdev, epnum); - 8008e18: 7dba ldrb r2, [r7, #22] - 8008e1a: 68fb ldr r3, [r7, #12] - 8008e1c: 32ae adds r2, #174 @ 0xae - 8008e1e: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008e22: 699b ldr r3, [r3, #24] - 8008e24: 7afa ldrb r2, [r7, #11] - 8008e26: 4611 mov r1, r2 - 8008e28: 68f8 ldr r0, [r7, #12] - 8008e2a: 4798 blx r3 - 8008e2c: 4603 mov r3, r0 - 8008e2e: 75fb strb r3, [r7, #23] + 80091f0: 7dba ldrb r2, [r7, #22] + 80091f2: 68fb ldr r3, [r7, #12] + 80091f4: 32ae adds r2, #174 @ 0xae + 80091f6: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80091fa: 699b ldr r3, [r3, #24] + 80091fc: 7afa ldrb r2, [r7, #11] + 80091fe: 4611 mov r1, r2 + 8009200: 68f8 ldr r0, [r7, #12] + 8009202: 4798 blx r3 + 8009204: 4603 mov r3, r0 + 8009206: 75fb strb r3, [r7, #23] } } if (ret != USBD_OK) - 8008e30: 7dfb ldrb r3, [r7, #23] - 8008e32: 2b00 cmp r3, #0 - 8008e34: d001 beq.n 8008e3a + 8009208: 7dfb ldrb r3, [r7, #23] + 800920a: 2b00 cmp r3, #0 + 800920c: d001 beq.n 8009212 { return ret; - 8008e36: 7dfb ldrb r3, [r7, #23] - 8008e38: e000 b.n 8008e3c + 800920e: 7dfb ldrb r3, [r7, #23] + 8009210: e000 b.n 8009214 } } } return USBD_OK; - 8008e3a: 2300 movs r3, #0 + 8009212: 2300 movs r3, #0 } - 8008e3c: 4618 mov r0, r3 - 8008e3e: 3718 adds r7, #24 - 8008e40: 46bd mov sp, r7 - 8008e42: bd80 pop {r7, pc} + 8009214: 4618 mov r0, r3 + 8009216: 3718 adds r7, #24 + 8009218: 46bd mov sp, r7 + 800921a: bd80 pop {r7, pc} -08008e44 : +0800921c : * @param pdata: data pointer * @retval status */ USBD_StatusTypeDef USBD_LL_DataInStage(USBD_HandleTypeDef *pdev, uint8_t epnum, uint8_t *pdata) { - 8008e44: b580 push {r7, lr} - 8008e46: b086 sub sp, #24 - 8008e48: af00 add r7, sp, #0 - 8008e4a: 60f8 str r0, [r7, #12] - 8008e4c: 460b mov r3, r1 - 8008e4e: 607a str r2, [r7, #4] - 8008e50: 72fb strb r3, [r7, #11] + 800921c: b580 push {r7, lr} + 800921e: b086 sub sp, #24 + 8009220: af00 add r7, sp, #0 + 8009222: 60f8 str r0, [r7, #12] + 8009224: 460b mov r3, r1 + 8009226: 607a str r2, [r7, #4] + 8009228: 72fb strb r3, [r7, #11] USBD_StatusTypeDef ret; uint8_t idx; UNUSED(pdata); if (epnum == 0U) - 8008e52: 7afb ldrb r3, [r7, #11] - 8008e54: 2b00 cmp r3, #0 - 8008e56: d178 bne.n 8008f4a + 800922a: 7afb ldrb r3, [r7, #11] + 800922c: 2b00 cmp r3, #0 + 800922e: d178 bne.n 8009322 { pep = &pdev->ep_in[0]; - 8008e58: 68fb ldr r3, [r7, #12] - 8008e5a: 3314 adds r3, #20 - 8008e5c: 613b str r3, [r7, #16] + 8009230: 68fb ldr r3, [r7, #12] + 8009232: 3314 adds r3, #20 + 8009234: 613b str r3, [r7, #16] if (pdev->ep0_state == USBD_EP0_DATA_IN) - 8008e5e: 68fb ldr r3, [r7, #12] - 8008e60: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 - 8008e64: 2b02 cmp r3, #2 - 8008e66: d163 bne.n 8008f30 + 8009236: 68fb ldr r3, [r7, #12] + 8009238: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 + 800923c: 2b02 cmp r3, #2 + 800923e: d163 bne.n 8009308 { if (pep->rem_length > pep->maxpacket) - 8008e68: 693b ldr r3, [r7, #16] - 8008e6a: 685b ldr r3, [r3, #4] - 8008e6c: 693a ldr r2, [r7, #16] - 8008e6e: 8992 ldrh r2, [r2, #12] - 8008e70: 4293 cmp r3, r2 - 8008e72: d91c bls.n 8008eae + 8009240: 693b ldr r3, [r7, #16] + 8009242: 685b ldr r3, [r3, #4] + 8009244: 693a ldr r2, [r7, #16] + 8009246: 8992 ldrh r2, [r2, #12] + 8009248: 4293 cmp r3, r2 + 800924a: d91c bls.n 8009286 { pep->rem_length -= pep->maxpacket; - 8008e74: 693b ldr r3, [r7, #16] - 8008e76: 685b ldr r3, [r3, #4] - 8008e78: 693a ldr r2, [r7, #16] - 8008e7a: 8992 ldrh r2, [r2, #12] - 8008e7c: 1a9a subs r2, r3, r2 - 8008e7e: 693b ldr r3, [r7, #16] - 8008e80: 605a str r2, [r3, #4] + 800924c: 693b ldr r3, [r7, #16] + 800924e: 685b ldr r3, [r3, #4] + 8009250: 693a ldr r2, [r7, #16] + 8009252: 8992 ldrh r2, [r2, #12] + 8009254: 1a9a subs r2, r3, r2 + 8009256: 693b ldr r3, [r7, #16] + 8009258: 605a str r2, [r3, #4] pep->pbuffer += pep->maxpacket; - 8008e82: 693b ldr r3, [r7, #16] - 8008e84: 691b ldr r3, [r3, #16] - 8008e86: 693a ldr r2, [r7, #16] - 8008e88: 8992 ldrh r2, [r2, #12] - 8008e8a: 441a add r2, r3 - 8008e8c: 693b ldr r3, [r7, #16] - 8008e8e: 611a str r2, [r3, #16] + 800925a: 693b ldr r3, [r7, #16] + 800925c: 691b ldr r3, [r3, #16] + 800925e: 693a ldr r2, [r7, #16] + 8009260: 8992 ldrh r2, [r2, #12] + 8009262: 441a add r2, r3 + 8009264: 693b ldr r3, [r7, #16] + 8009266: 611a str r2, [r3, #16] (void)USBD_CtlContinueSendData(pdev, pep->pbuffer, pep->rem_length); - 8008e90: 693b ldr r3, [r7, #16] - 8008e92: 6919 ldr r1, [r3, #16] - 8008e94: 693b ldr r3, [r7, #16] - 8008e96: 685b ldr r3, [r3, #4] - 8008e98: 461a mov r2, r3 - 8008e9a: 68f8 ldr r0, [r7, #12] - 8008e9c: f001 f8ee bl 800a07c + 8009268: 693b ldr r3, [r7, #16] + 800926a: 6919 ldr r1, [r3, #16] + 800926c: 693b ldr r3, [r7, #16] + 800926e: 685b ldr r3, [r3, #4] + 8009270: 461a mov r2, r3 + 8009272: 68f8 ldr r0, [r7, #12] + 8009274: f001 f8ee bl 800a454 /* Prepare endpoint for premature end of transfer */ (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); - 8008ea0: 2300 movs r3, #0 - 8008ea2: 2200 movs r2, #0 - 8008ea4: 2100 movs r1, #0 - 8008ea6: 68f8 ldr r0, [r7, #12] - 8008ea8: f001 fd2a bl 800a900 - 8008eac: e040 b.n 8008f30 + 8009278: 2300 movs r3, #0 + 800927a: 2200 movs r2, #0 + 800927c: 2100 movs r1, #0 + 800927e: 68f8 ldr r0, [r7, #12] + 8009280: f001 fd2a bl 800acd8 + 8009284: e040 b.n 8009308 } else { /* last packet is MPS multiple, so send ZLP packet */ if ((pep->maxpacket == pep->rem_length) && - 8008eae: 693b ldr r3, [r7, #16] - 8008eb0: 899b ldrh r3, [r3, #12] - 8008eb2: 461a mov r2, r3 - 8008eb4: 693b ldr r3, [r7, #16] - 8008eb6: 685b ldr r3, [r3, #4] - 8008eb8: 429a cmp r2, r3 - 8008eba: d11c bne.n 8008ef6 + 8009286: 693b ldr r3, [r7, #16] + 8009288: 899b ldrh r3, [r3, #12] + 800928a: 461a mov r2, r3 + 800928c: 693b ldr r3, [r7, #16] + 800928e: 685b ldr r3, [r3, #4] + 8009290: 429a cmp r2, r3 + 8009292: d11c bne.n 80092ce (pep->total_length >= pep->maxpacket) && - 8008ebc: 693b ldr r3, [r7, #16] - 8008ebe: 681b ldr r3, [r3, #0] - 8008ec0: 693a ldr r2, [r7, #16] - 8008ec2: 8992 ldrh r2, [r2, #12] + 8009294: 693b ldr r3, [r7, #16] + 8009296: 681b ldr r3, [r3, #0] + 8009298: 693a ldr r2, [r7, #16] + 800929a: 8992 ldrh r2, [r2, #12] if ((pep->maxpacket == pep->rem_length) && - 8008ec4: 4293 cmp r3, r2 - 8008ec6: d316 bcc.n 8008ef6 + 800929c: 4293 cmp r3, r2 + 800929e: d316 bcc.n 80092ce (pep->total_length < pdev->ep0_data_len)) - 8008ec8: 693b ldr r3, [r7, #16] - 8008eca: 681a ldr r2, [r3, #0] - 8008ecc: 68fb ldr r3, [r7, #12] - 8008ece: f8d3 3298 ldr.w r3, [r3, #664] @ 0x298 + 80092a0: 693b ldr r3, [r7, #16] + 80092a2: 681a ldr r2, [r3, #0] + 80092a4: 68fb ldr r3, [r7, #12] + 80092a6: f8d3 3298 ldr.w r3, [r3, #664] @ 0x298 (pep->total_length >= pep->maxpacket) && - 8008ed2: 429a cmp r2, r3 - 8008ed4: d20f bcs.n 8008ef6 + 80092aa: 429a cmp r2, r3 + 80092ac: d20f bcs.n 80092ce { (void)USBD_CtlContinueSendData(pdev, NULL, 0U); - 8008ed6: 2200 movs r2, #0 - 8008ed8: 2100 movs r1, #0 - 8008eda: 68f8 ldr r0, [r7, #12] - 8008edc: f001 f8ce bl 800a07c + 80092ae: 2200 movs r2, #0 + 80092b0: 2100 movs r1, #0 + 80092b2: 68f8 ldr r0, [r7, #12] + 80092b4: f001 f8ce bl 800a454 pdev->ep0_data_len = 0U; - 8008ee0: 68fb ldr r3, [r7, #12] - 8008ee2: 2200 movs r2, #0 - 8008ee4: f8c3 2298 str.w r2, [r3, #664] @ 0x298 + 80092b8: 68fb ldr r3, [r7, #12] + 80092ba: 2200 movs r2, #0 + 80092bc: f8c3 2298 str.w r2, [r3, #664] @ 0x298 /* Prepare endpoint for premature end of transfer */ (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); - 8008ee8: 2300 movs r3, #0 - 8008eea: 2200 movs r2, #0 - 8008eec: 2100 movs r1, #0 - 8008eee: 68f8 ldr r0, [r7, #12] - 8008ef0: f001 fd06 bl 800a900 - 8008ef4: e01c b.n 8008f30 + 80092c0: 2300 movs r3, #0 + 80092c2: 2200 movs r2, #0 + 80092c4: 2100 movs r1, #0 + 80092c6: 68f8 ldr r0, [r7, #12] + 80092c8: f001 fd06 bl 800acd8 + 80092cc: e01c b.n 8009308 } else { if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008ef6: 68fb ldr r3, [r7, #12] - 8008ef8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008efc: b2db uxtb r3, r3 - 8008efe: 2b03 cmp r3, #3 - 8008f00: d10f bne.n 8008f22 + 80092ce: 68fb ldr r3, [r7, #12] + 80092d0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80092d4: b2db uxtb r3, r3 + 80092d6: 2b03 cmp r3, #3 + 80092d8: d10f bne.n 80092fa { if (pdev->pClass[0]->EP0_TxSent != NULL) - 8008f02: 68fb ldr r3, [r7, #12] - 8008f04: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008f08: 68db ldr r3, [r3, #12] - 8008f0a: 2b00 cmp r3, #0 - 8008f0c: d009 beq.n 8008f22 + 80092da: 68fb ldr r3, [r7, #12] + 80092dc: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80092e0: 68db ldr r3, [r3, #12] + 80092e2: 2b00 cmp r3, #0 + 80092e4: d009 beq.n 80092fa { pdev->classId = 0U; - 8008f0e: 68fb ldr r3, [r7, #12] - 8008f10: 2200 movs r2, #0 - 8008f12: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 80092e6: 68fb ldr r3, [r7, #12] + 80092e8: 2200 movs r2, #0 + 80092ea: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 pdev->pClass[0]->EP0_TxSent(pdev); - 8008f16: 68fb ldr r3, [r7, #12] - 8008f18: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008f1c: 68db ldr r3, [r3, #12] - 8008f1e: 68f8 ldr r0, [r7, #12] - 8008f20: 4798 blx r3 + 80092ee: 68fb ldr r3, [r7, #12] + 80092f0: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80092f4: 68db ldr r3, [r3, #12] + 80092f6: 68f8 ldr r0, [r7, #12] + 80092f8: 4798 blx r3 } } (void)USBD_LL_StallEP(pdev, 0x80U); - 8008f22: 2180 movs r1, #128 @ 0x80 - 8008f24: 68f8 ldr r0, [r7, #12] - 8008f26: f001 fc41 bl 800a7ac + 80092fa: 2180 movs r1, #128 @ 0x80 + 80092fc: 68f8 ldr r0, [r7, #12] + 80092fe: f001 fc41 bl 800ab84 (void)USBD_CtlReceiveStatus(pdev); - 8008f2a: 68f8 ldr r0, [r7, #12] - 8008f2c: f001 f8db bl 800a0e6 + 8009302: 68f8 ldr r0, [r7, #12] + 8009304: f001 f8db bl 800a4be } } } if (pdev->dev_test_mode != 0U) - 8008f30: 68fb ldr r3, [r7, #12] - 8008f32: f893 32a0 ldrb.w r3, [r3, #672] @ 0x2a0 - 8008f36: 2b00 cmp r3, #0 - 8008f38: d03a beq.n 8008fb0 + 8009308: 68fb ldr r3, [r7, #12] + 800930a: f893 32a0 ldrb.w r3, [r3, #672] @ 0x2a0 + 800930e: 2b00 cmp r3, #0 + 8009310: d03a beq.n 8009388 { (void)USBD_RunTestMode(pdev); - 8008f3a: 68f8 ldr r0, [r7, #12] - 8008f3c: f7ff fe30 bl 8008ba0 + 8009312: 68f8 ldr r0, [r7, #12] + 8009314: f7ff fe30 bl 8008f78 pdev->dev_test_mode = 0U; - 8008f40: 68fb ldr r3, [r7, #12] - 8008f42: 2200 movs r2, #0 - 8008f44: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 - 8008f48: e032 b.n 8008fb0 + 8009318: 68fb ldr r3, [r7, #12] + 800931a: 2200 movs r2, #0 + 800931c: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 + 8009320: e032 b.n 8009388 } } else { /* Get the class index relative to this interface */ idx = USBD_CoreFindEP(pdev, ((uint8_t)epnum | 0x80U)); - 8008f4a: 7afb ldrb r3, [r7, #11] - 8008f4c: f063 037f orn r3, r3, #127 @ 0x7f - 8008f50: b2db uxtb r3, r3 - 8008f52: 4619 mov r1, r3 - 8008f54: 68f8 ldr r0, [r7, #12] - 8008f56: f000 f986 bl 8009266 - 8008f5a: 4603 mov r3, r0 - 8008f5c: 75fb strb r3, [r7, #23] + 8009322: 7afb ldrb r3, [r7, #11] + 8009324: f063 037f orn r3, r3, #127 @ 0x7f + 8009328: b2db uxtb r3, r3 + 800932a: 4619 mov r1, r3 + 800932c: 68f8 ldr r0, [r7, #12] + 800932e: f000 f986 bl 800963e + 8009332: 4603 mov r3, r0 + 8009334: 75fb strb r3, [r7, #23] if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 8008f5e: 7dfb ldrb r3, [r7, #23] - 8008f60: 2bff cmp r3, #255 @ 0xff - 8008f62: d025 beq.n 8008fb0 - 8008f64: 7dfb ldrb r3, [r7, #23] - 8008f66: 2b00 cmp r3, #0 - 8008f68: d122 bne.n 8008fb0 + 8009336: 7dfb ldrb r3, [r7, #23] + 8009338: 2bff cmp r3, #255 @ 0xff + 800933a: d025 beq.n 8009388 + 800933c: 7dfb ldrb r3, [r7, #23] + 800933e: 2b00 cmp r3, #0 + 8009340: d122 bne.n 8009388 { /* Call the class data out function to manage the request */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008f6a: 68fb ldr r3, [r7, #12] - 8008f6c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008f70: b2db uxtb r3, r3 - 8008f72: 2b03 cmp r3, #3 - 8008f74: d11c bne.n 8008fb0 + 8009342: 68fb ldr r3, [r7, #12] + 8009344: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009348: b2db uxtb r3, r3 + 800934a: 2b03 cmp r3, #3 + 800934c: d11c bne.n 8009388 { if (pdev->pClass[idx]->DataIn != NULL) - 8008f76: 7dfa ldrb r2, [r7, #23] - 8008f78: 68fb ldr r3, [r7, #12] - 8008f7a: 32ae adds r2, #174 @ 0xae - 8008f7c: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008f80: 695b ldr r3, [r3, #20] - 8008f82: 2b00 cmp r3, #0 - 8008f84: d014 beq.n 8008fb0 + 800934e: 7dfa ldrb r2, [r7, #23] + 8009350: 68fb ldr r3, [r7, #12] + 8009352: 32ae adds r2, #174 @ 0xae + 8009354: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009358: 695b ldr r3, [r3, #20] + 800935a: 2b00 cmp r3, #0 + 800935c: d014 beq.n 8009388 { pdev->classId = idx; - 8008f86: 7dfa ldrb r2, [r7, #23] - 8008f88: 68fb ldr r3, [r7, #12] - 8008f8a: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 800935e: 7dfa ldrb r2, [r7, #23] + 8009360: 68fb ldr r3, [r7, #12] + 8009362: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataIn(pdev, epnum); - 8008f8e: 7dfa ldrb r2, [r7, #23] - 8008f90: 68fb ldr r3, [r7, #12] - 8008f92: 32ae adds r2, #174 @ 0xae - 8008f94: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008f98: 695b ldr r3, [r3, #20] - 8008f9a: 7afa ldrb r2, [r7, #11] - 8008f9c: 4611 mov r1, r2 - 8008f9e: 68f8 ldr r0, [r7, #12] - 8008fa0: 4798 blx r3 - 8008fa2: 4603 mov r3, r0 - 8008fa4: 75bb strb r3, [r7, #22] + 8009366: 7dfa ldrb r2, [r7, #23] + 8009368: 68fb ldr r3, [r7, #12] + 800936a: 32ae adds r2, #174 @ 0xae + 800936c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009370: 695b ldr r3, [r3, #20] + 8009372: 7afa ldrb r2, [r7, #11] + 8009374: 4611 mov r1, r2 + 8009376: 68f8 ldr r0, [r7, #12] + 8009378: 4798 blx r3 + 800937a: 4603 mov r3, r0 + 800937c: 75bb strb r3, [r7, #22] if (ret != USBD_OK) - 8008fa6: 7dbb ldrb r3, [r7, #22] - 8008fa8: 2b00 cmp r3, #0 - 8008faa: d001 beq.n 8008fb0 + 800937e: 7dbb ldrb r3, [r7, #22] + 8009380: 2b00 cmp r3, #0 + 8009382: d001 beq.n 8009388 { return ret; - 8008fac: 7dbb ldrb r3, [r7, #22] - 8008fae: e000 b.n 8008fb2 + 8009384: 7dbb ldrb r3, [r7, #22] + 8009386: e000 b.n 800938a } } } } return USBD_OK; - 8008fb0: 2300 movs r3, #0 + 8009388: 2300 movs r3, #0 } - 8008fb2: 4618 mov r0, r3 - 8008fb4: 3718 adds r7, #24 - 8008fb6: 46bd mov sp, r7 - 8008fb8: bd80 pop {r7, pc} + 800938a: 4618 mov r0, r3 + 800938c: 3718 adds r7, #24 + 800938e: 46bd mov sp, r7 + 8009390: bd80 pop {r7, pc} -08008fba : +08009392 : * Handle Reset event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_Reset(USBD_HandleTypeDef *pdev) { - 8008fba: b580 push {r7, lr} - 8008fbc: b084 sub sp, #16 - 8008fbe: af00 add r7, sp, #0 - 8008fc0: 6078 str r0, [r7, #4] + 8009392: b580 push {r7, lr} + 8009394: b084 sub sp, #16 + 8009396: af00 add r7, sp, #0 + 8009398: 6078 str r0, [r7, #4] USBD_StatusTypeDef ret = USBD_OK; - 8008fc2: 2300 movs r3, #0 - 8008fc4: 73fb strb r3, [r7, #15] + 800939a: 2300 movs r3, #0 + 800939c: 73fb strb r3, [r7, #15] /* Upon Reset call user call back */ pdev->dev_state = USBD_STATE_DEFAULT; - 8008fc6: 687b ldr r3, [r7, #4] - 8008fc8: 2201 movs r2, #1 - 8008fca: f883 229c strb.w r2, [r3, #668] @ 0x29c + 800939e: 687b ldr r3, [r7, #4] + 80093a0: 2201 movs r2, #1 + 80093a2: f883 229c strb.w r2, [r3, #668] @ 0x29c pdev->ep0_state = USBD_EP0_IDLE; - 8008fce: 687b ldr r3, [r7, #4] - 8008fd0: 2200 movs r2, #0 - 8008fd2: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 80093a6: 687b ldr r3, [r7, #4] + 80093a8: 2200 movs r2, #0 + 80093aa: f8c3 2294 str.w r2, [r3, #660] @ 0x294 pdev->dev_config = 0U; - 8008fd6: 687b ldr r3, [r7, #4] - 8008fd8: 2200 movs r2, #0 - 8008fda: 605a str r2, [r3, #4] + 80093ae: 687b ldr r3, [r7, #4] + 80093b0: 2200 movs r2, #0 + 80093b2: 605a str r2, [r3, #4] pdev->dev_remote_wakeup = 0U; - 8008fdc: 687b ldr r3, [r7, #4] - 8008fde: 2200 movs r2, #0 - 8008fe0: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 + 80093b4: 687b ldr r3, [r7, #4] + 80093b6: 2200 movs r2, #0 + 80093b8: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 pdev->dev_test_mode = 0U; - 8008fe4: 687b ldr r3, [r7, #4] - 8008fe6: 2200 movs r2, #0 - 8008fe8: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 + 80093bc: 687b ldr r3, [r7, #4] + 80093be: 2200 movs r2, #0 + 80093c0: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 } } } #else if (pdev->pClass[0] != NULL) - 8008fec: 687b ldr r3, [r7, #4] - 8008fee: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008ff2: 2b00 cmp r3, #0 - 8008ff4: d014 beq.n 8009020 + 80093c4: 687b ldr r3, [r7, #4] + 80093c6: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80093ca: 2b00 cmp r3, #0 + 80093cc: d014 beq.n 80093f8 { if (pdev->pClass[0]->DeInit != NULL) - 8008ff6: 687b ldr r3, [r7, #4] - 8008ff8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008ffc: 685b ldr r3, [r3, #4] - 8008ffe: 2b00 cmp r3, #0 - 8009000: d00e beq.n 8009020 + 80093ce: 687b ldr r3, [r7, #4] + 80093d0: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80093d4: 685b ldr r3, [r3, #4] + 80093d6: 2b00 cmp r3, #0 + 80093d8: d00e beq.n 80093f8 { if (pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config) != USBD_OK) - 8009002: 687b ldr r3, [r7, #4] - 8009004: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009008: 685b ldr r3, [r3, #4] - 800900a: 687a ldr r2, [r7, #4] - 800900c: 6852 ldr r2, [r2, #4] - 800900e: b2d2 uxtb r2, r2 - 8009010: 4611 mov r1, r2 - 8009012: 6878 ldr r0, [r7, #4] - 8009014: 4798 blx r3 - 8009016: 4603 mov r3, r0 - 8009018: 2b00 cmp r3, #0 - 800901a: d001 beq.n 8009020 + 80093da: 687b ldr r3, [r7, #4] + 80093dc: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80093e0: 685b ldr r3, [r3, #4] + 80093e2: 687a ldr r2, [r7, #4] + 80093e4: 6852 ldr r2, [r2, #4] + 80093e6: b2d2 uxtb r2, r2 + 80093e8: 4611 mov r1, r2 + 80093ea: 6878 ldr r0, [r7, #4] + 80093ec: 4798 blx r3 + 80093ee: 4603 mov r3, r0 + 80093f0: 2b00 cmp r3, #0 + 80093f2: d001 beq.n 80093f8 { ret = USBD_FAIL; - 800901c: 2303 movs r3, #3 - 800901e: 73fb strb r3, [r7, #15] + 80093f4: 2303 movs r3, #3 + 80093f6: 73fb strb r3, [r7, #15] } } #endif /* USE_USBD_COMPOSITE */ /* Open EP0 OUT */ (void)USBD_LL_OpenEP(pdev, 0x00U, USBD_EP_TYPE_CTRL, USB_MAX_EP0_SIZE); - 8009020: 2340 movs r3, #64 @ 0x40 - 8009022: 2200 movs r2, #0 - 8009024: 2100 movs r1, #0 - 8009026: 6878 ldr r0, [r7, #4] - 8009028: f001 fb7b bl 800a722 + 80093f8: 2340 movs r3, #64 @ 0x40 + 80093fa: 2200 movs r2, #0 + 80093fc: 2100 movs r1, #0 + 80093fe: 6878 ldr r0, [r7, #4] + 8009400: f001 fb7b bl 800aafa pdev->ep_out[0x00U & 0xFU].is_used = 1U; - 800902c: 687b ldr r3, [r7, #4] - 800902e: 2201 movs r2, #1 - 8009030: f883 2163 strb.w r2, [r3, #355] @ 0x163 + 8009404: 687b ldr r3, [r7, #4] + 8009406: 2201 movs r2, #1 + 8009408: f883 2163 strb.w r2, [r3, #355] @ 0x163 pdev->ep_out[0].maxpacket = USB_MAX_EP0_SIZE; - 8009034: 687b ldr r3, [r7, #4] - 8009036: 2240 movs r2, #64 @ 0x40 - 8009038: f8a3 2160 strh.w r2, [r3, #352] @ 0x160 + 800940c: 687b ldr r3, [r7, #4] + 800940e: 2240 movs r2, #64 @ 0x40 + 8009410: f8a3 2160 strh.w r2, [r3, #352] @ 0x160 /* Open EP0 IN */ (void)USBD_LL_OpenEP(pdev, 0x80U, USBD_EP_TYPE_CTRL, USB_MAX_EP0_SIZE); - 800903c: 2340 movs r3, #64 @ 0x40 - 800903e: 2200 movs r2, #0 - 8009040: 2180 movs r1, #128 @ 0x80 - 8009042: 6878 ldr r0, [r7, #4] - 8009044: f001 fb6d bl 800a722 + 8009414: 2340 movs r3, #64 @ 0x40 + 8009416: 2200 movs r2, #0 + 8009418: 2180 movs r1, #128 @ 0x80 + 800941a: 6878 ldr r0, [r7, #4] + 800941c: f001 fb6d bl 800aafa pdev->ep_in[0x80U & 0xFU].is_used = 1U; - 8009048: 687b ldr r3, [r7, #4] - 800904a: 2201 movs r2, #1 - 800904c: f883 2023 strb.w r2, [r3, #35] @ 0x23 + 8009420: 687b ldr r3, [r7, #4] + 8009422: 2201 movs r2, #1 + 8009424: f883 2023 strb.w r2, [r3, #35] @ 0x23 pdev->ep_in[0].maxpacket = USB_MAX_EP0_SIZE; - 8009050: 687b ldr r3, [r7, #4] - 8009052: 2240 movs r2, #64 @ 0x40 - 8009054: 841a strh r2, [r3, #32] + 8009428: 687b ldr r3, [r7, #4] + 800942a: 2240 movs r2, #64 @ 0x40 + 800942c: 841a strh r2, [r3, #32] return ret; - 8009056: 7bfb ldrb r3, [r7, #15] + 800942e: 7bfb ldrb r3, [r7, #15] } - 8009058: 4618 mov r0, r3 - 800905a: 3710 adds r7, #16 - 800905c: 46bd mov sp, r7 - 800905e: bd80 pop {r7, pc} + 8009430: 4618 mov r0, r3 + 8009432: 3710 adds r7, #16 + 8009434: 46bd mov sp, r7 + 8009436: bd80 pop {r7, pc} -08009060 : +08009438 : * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_SetSpeed(USBD_HandleTypeDef *pdev, USBD_SpeedTypeDef speed) { - 8009060: b480 push {r7} - 8009062: b083 sub sp, #12 - 8009064: af00 add r7, sp, #0 - 8009066: 6078 str r0, [r7, #4] - 8009068: 460b mov r3, r1 - 800906a: 70fb strb r3, [r7, #3] + 8009438: b480 push {r7} + 800943a: b083 sub sp, #12 + 800943c: af00 add r7, sp, #0 + 800943e: 6078 str r0, [r7, #4] + 8009440: 460b mov r3, r1 + 8009442: 70fb strb r3, [r7, #3] pdev->dev_speed = speed; - 800906c: 687b ldr r3, [r7, #4] - 800906e: 78fa ldrb r2, [r7, #3] - 8009070: 741a strb r2, [r3, #16] + 8009444: 687b ldr r3, [r7, #4] + 8009446: 78fa ldrb r2, [r7, #3] + 8009448: 741a strb r2, [r3, #16] return USBD_OK; - 8009072: 2300 movs r3, #0 + 800944a: 2300 movs r3, #0 } - 8009074: 4618 mov r0, r3 - 8009076: 370c adds r7, #12 - 8009078: 46bd mov sp, r7 - 800907a: f85d 7b04 ldr.w r7, [sp], #4 - 800907e: 4770 bx lr + 800944c: 4618 mov r0, r3 + 800944e: 370c adds r7, #12 + 8009450: 46bd mov sp, r7 + 8009452: f85d 7b04 ldr.w r7, [sp], #4 + 8009456: 4770 bx lr -08009080 : +08009458 : * Handle Suspend event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_Suspend(USBD_HandleTypeDef *pdev) { - 8009080: b480 push {r7} - 8009082: b083 sub sp, #12 - 8009084: af00 add r7, sp, #0 - 8009086: 6078 str r0, [r7, #4] + 8009458: b480 push {r7} + 800945a: b083 sub sp, #12 + 800945c: af00 add r7, sp, #0 + 800945e: 6078 str r0, [r7, #4] if (pdev->dev_state != USBD_STATE_SUSPENDED) - 8009088: 687b ldr r3, [r7, #4] - 800908a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800908e: b2db uxtb r3, r3 - 8009090: 2b04 cmp r3, #4 - 8009092: d006 beq.n 80090a2 + 8009460: 687b ldr r3, [r7, #4] + 8009462: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009466: b2db uxtb r3, r3 + 8009468: 2b04 cmp r3, #4 + 800946a: d006 beq.n 800947a { pdev->dev_old_state = pdev->dev_state; - 8009094: 687b ldr r3, [r7, #4] - 8009096: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800909a: b2da uxtb r2, r3 - 800909c: 687b ldr r3, [r7, #4] - 800909e: f883 229d strb.w r2, [r3, #669] @ 0x29d + 800946c: 687b ldr r3, [r7, #4] + 800946e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009472: b2da uxtb r2, r3 + 8009474: 687b ldr r3, [r7, #4] + 8009476: f883 229d strb.w r2, [r3, #669] @ 0x29d } pdev->dev_state = USBD_STATE_SUSPENDED; - 80090a2: 687b ldr r3, [r7, #4] - 80090a4: 2204 movs r2, #4 - 80090a6: f883 229c strb.w r2, [r3, #668] @ 0x29c + 800947a: 687b ldr r3, [r7, #4] + 800947c: 2204 movs r2, #4 + 800947e: f883 229c strb.w r2, [r3, #668] @ 0x29c return USBD_OK; - 80090aa: 2300 movs r3, #0 + 8009482: 2300 movs r3, #0 } - 80090ac: 4618 mov r0, r3 - 80090ae: 370c adds r7, #12 - 80090b0: 46bd mov sp, r7 - 80090b2: f85d 7b04 ldr.w r7, [sp], #4 - 80090b6: 4770 bx lr + 8009484: 4618 mov r0, r3 + 8009486: 370c adds r7, #12 + 8009488: 46bd mov sp, r7 + 800948a: f85d 7b04 ldr.w r7, [sp], #4 + 800948e: 4770 bx lr -080090b8 : +08009490 : * Handle Resume event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_Resume(USBD_HandleTypeDef *pdev) { - 80090b8: b480 push {r7} - 80090ba: b083 sub sp, #12 - 80090bc: af00 add r7, sp, #0 - 80090be: 6078 str r0, [r7, #4] + 8009490: b480 push {r7} + 8009492: b083 sub sp, #12 + 8009494: af00 add r7, sp, #0 + 8009496: 6078 str r0, [r7, #4] if (pdev->dev_state == USBD_STATE_SUSPENDED) - 80090c0: 687b ldr r3, [r7, #4] - 80090c2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80090c6: b2db uxtb r3, r3 - 80090c8: 2b04 cmp r3, #4 - 80090ca: d106 bne.n 80090da + 8009498: 687b ldr r3, [r7, #4] + 800949a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800949e: b2db uxtb r3, r3 + 80094a0: 2b04 cmp r3, #4 + 80094a2: d106 bne.n 80094b2 { pdev->dev_state = pdev->dev_old_state; - 80090cc: 687b ldr r3, [r7, #4] - 80090ce: f893 329d ldrb.w r3, [r3, #669] @ 0x29d - 80090d2: b2da uxtb r2, r3 - 80090d4: 687b ldr r3, [r7, #4] - 80090d6: f883 229c strb.w r2, [r3, #668] @ 0x29c + 80094a4: 687b ldr r3, [r7, #4] + 80094a6: f893 329d ldrb.w r3, [r3, #669] @ 0x29d + 80094aa: b2da uxtb r2, r3 + 80094ac: 687b ldr r3, [r7, #4] + 80094ae: f883 229c strb.w r2, [r3, #668] @ 0x29c } return USBD_OK; - 80090da: 2300 movs r3, #0 + 80094b2: 2300 movs r3, #0 } - 80090dc: 4618 mov r0, r3 - 80090de: 370c adds r7, #12 - 80090e0: 46bd mov sp, r7 - 80090e2: f85d 7b04 ldr.w r7, [sp], #4 - 80090e6: 4770 bx lr + 80094b4: 4618 mov r0, r3 + 80094b6: 370c adds r7, #12 + 80094b8: 46bd mov sp, r7 + 80094ba: f85d 7b04 ldr.w r7, [sp], #4 + 80094be: 4770 bx lr -080090e8 : +080094c0 : * Handle SOF event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_SOF(USBD_HandleTypeDef *pdev) { - 80090e8: b580 push {r7, lr} - 80090ea: b082 sub sp, #8 - 80090ec: af00 add r7, sp, #0 - 80090ee: 6078 str r0, [r7, #4] + 80094c0: b580 push {r7, lr} + 80094c2: b082 sub sp, #8 + 80094c4: af00 add r7, sp, #0 + 80094c6: 6078 str r0, [r7, #4] /* The SOF event can be distributed for all classes that support it */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 80090f0: 687b ldr r3, [r7, #4] - 80090f2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80090f6: b2db uxtb r3, r3 - 80090f8: 2b03 cmp r3, #3 - 80090fa: d110 bne.n 800911e + 80094c8: 687b ldr r3, [r7, #4] + 80094ca: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80094ce: b2db uxtb r3, r3 + 80094d0: 2b03 cmp r3, #3 + 80094d2: d110 bne.n 80094f6 } } } } #else if (pdev->pClass[0] != NULL) - 80090fc: 687b ldr r3, [r7, #4] - 80090fe: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009102: 2b00 cmp r3, #0 - 8009104: d00b beq.n 800911e + 80094d4: 687b ldr r3, [r7, #4] + 80094d6: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80094da: 2b00 cmp r3, #0 + 80094dc: d00b beq.n 80094f6 { if (pdev->pClass[0]->SOF != NULL) - 8009106: 687b ldr r3, [r7, #4] - 8009108: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 800910c: 69db ldr r3, [r3, #28] - 800910e: 2b00 cmp r3, #0 - 8009110: d005 beq.n 800911e + 80094de: 687b ldr r3, [r7, #4] + 80094e0: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80094e4: 69db ldr r3, [r3, #28] + 80094e6: 2b00 cmp r3, #0 + 80094e8: d005 beq.n 80094f6 { (void)pdev->pClass[0]->SOF(pdev); - 8009112: 687b ldr r3, [r7, #4] - 8009114: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009118: 69db ldr r3, [r3, #28] - 800911a: 6878 ldr r0, [r7, #4] - 800911c: 4798 blx r3 + 80094ea: 687b ldr r3, [r7, #4] + 80094ec: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80094f0: 69db ldr r3, [r3, #28] + 80094f2: 6878 ldr r0, [r7, #4] + 80094f4: 4798 blx r3 } } #endif /* USE_USBD_COMPOSITE */ } return USBD_OK; - 800911e: 2300 movs r3, #0 + 80094f6: 2300 movs r3, #0 } - 8009120: 4618 mov r0, r3 - 8009122: 3708 adds r7, #8 - 8009124: 46bd mov sp, r7 - 8009126: bd80 pop {r7, pc} + 80094f8: 4618 mov r0, r3 + 80094fa: 3708 adds r7, #8 + 80094fc: 46bd mov sp, r7 + 80094fe: bd80 pop {r7, pc} -08009128 : +08009500 : * @param epnum: Endpoint number * @retval status */ USBD_StatusTypeDef USBD_LL_IsoINIncomplete(USBD_HandleTypeDef *pdev, uint8_t epnum) { - 8009128: b580 push {r7, lr} - 800912a: b082 sub sp, #8 - 800912c: af00 add r7, sp, #0 - 800912e: 6078 str r0, [r7, #4] - 8009130: 460b mov r3, r1 - 8009132: 70fb strb r3, [r7, #3] + 8009500: b580 push {r7, lr} + 8009502: b082 sub sp, #8 + 8009504: af00 add r7, sp, #0 + 8009506: 6078 str r0, [r7, #4] + 8009508: 460b mov r3, r1 + 800950a: 70fb strb r3, [r7, #3] if (pdev->pClass[pdev->classId] == NULL) - 8009134: 687b ldr r3, [r7, #4] - 8009136: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800913a: 687b ldr r3, [r7, #4] - 800913c: 32ae adds r2, #174 @ 0xae - 800913e: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009142: 2b00 cmp r3, #0 - 8009144: d101 bne.n 800914a + 800950c: 687b ldr r3, [r7, #4] + 800950e: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009512: 687b ldr r3, [r7, #4] + 8009514: 32ae adds r2, #174 @ 0xae + 8009516: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800951a: 2b00 cmp r3, #0 + 800951c: d101 bne.n 8009522 { return USBD_FAIL; - 8009146: 2303 movs r3, #3 - 8009148: e01c b.n 8009184 + 800951e: 2303 movs r3, #3 + 8009520: e01c b.n 800955c } if (pdev->dev_state == USBD_STATE_CONFIGURED) - 800914a: 687b ldr r3, [r7, #4] - 800914c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009150: b2db uxtb r3, r3 - 8009152: 2b03 cmp r3, #3 - 8009154: d115 bne.n 8009182 + 8009522: 687b ldr r3, [r7, #4] + 8009524: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009528: b2db uxtb r3, r3 + 800952a: 2b03 cmp r3, #3 + 800952c: d115 bne.n 800955a { if (pdev->pClass[pdev->classId]->IsoINIncomplete != NULL) - 8009156: 687b ldr r3, [r7, #4] - 8009158: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800915c: 687b ldr r3, [r7, #4] - 800915e: 32ae adds r2, #174 @ 0xae - 8009160: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009164: 6a1b ldr r3, [r3, #32] - 8009166: 2b00 cmp r3, #0 - 8009168: d00b beq.n 8009182 + 800952e: 687b ldr r3, [r7, #4] + 8009530: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009534: 687b ldr r3, [r7, #4] + 8009536: 32ae adds r2, #174 @ 0xae + 8009538: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800953c: 6a1b ldr r3, [r3, #32] + 800953e: 2b00 cmp r3, #0 + 8009540: d00b beq.n 800955a { (void)pdev->pClass[pdev->classId]->IsoINIncomplete(pdev, epnum); - 800916a: 687b ldr r3, [r7, #4] - 800916c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8009170: 687b ldr r3, [r7, #4] - 8009172: 32ae adds r2, #174 @ 0xae - 8009174: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009178: 6a1b ldr r3, [r3, #32] - 800917a: 78fa ldrb r2, [r7, #3] - 800917c: 4611 mov r1, r2 - 800917e: 6878 ldr r0, [r7, #4] - 8009180: 4798 blx r3 + 8009542: 687b ldr r3, [r7, #4] + 8009544: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009548: 687b ldr r3, [r7, #4] + 800954a: 32ae adds r2, #174 @ 0xae + 800954c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009550: 6a1b ldr r3, [r3, #32] + 8009552: 78fa ldrb r2, [r7, #3] + 8009554: 4611 mov r1, r2 + 8009556: 6878 ldr r0, [r7, #4] + 8009558: 4798 blx r3 } } return USBD_OK; - 8009182: 2300 movs r3, #0 + 800955a: 2300 movs r3, #0 } - 8009184: 4618 mov r0, r3 - 8009186: 3708 adds r7, #8 - 8009188: 46bd mov sp, r7 - 800918a: bd80 pop {r7, pc} + 800955c: 4618 mov r0, r3 + 800955e: 3708 adds r7, #8 + 8009560: 46bd mov sp, r7 + 8009562: bd80 pop {r7, pc} -0800918c : +08009564 : * @param epnum: Endpoint number * @retval status */ USBD_StatusTypeDef USBD_LL_IsoOUTIncomplete(USBD_HandleTypeDef *pdev, uint8_t epnum) { - 800918c: b580 push {r7, lr} - 800918e: b082 sub sp, #8 - 8009190: af00 add r7, sp, #0 - 8009192: 6078 str r0, [r7, #4] - 8009194: 460b mov r3, r1 - 8009196: 70fb strb r3, [r7, #3] + 8009564: b580 push {r7, lr} + 8009566: b082 sub sp, #8 + 8009568: af00 add r7, sp, #0 + 800956a: 6078 str r0, [r7, #4] + 800956c: 460b mov r3, r1 + 800956e: 70fb strb r3, [r7, #3] if (pdev->pClass[pdev->classId] == NULL) - 8009198: 687b ldr r3, [r7, #4] - 800919a: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800919e: 687b ldr r3, [r7, #4] - 80091a0: 32ae adds r2, #174 @ 0xae - 80091a2: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80091a6: 2b00 cmp r3, #0 - 80091a8: d101 bne.n 80091ae + 8009570: 687b ldr r3, [r7, #4] + 8009572: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009576: 687b ldr r3, [r7, #4] + 8009578: 32ae adds r2, #174 @ 0xae + 800957a: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800957e: 2b00 cmp r3, #0 + 8009580: d101 bne.n 8009586 { return USBD_FAIL; - 80091aa: 2303 movs r3, #3 - 80091ac: e01c b.n 80091e8 + 8009582: 2303 movs r3, #3 + 8009584: e01c b.n 80095c0 } if (pdev->dev_state == USBD_STATE_CONFIGURED) - 80091ae: 687b ldr r3, [r7, #4] - 80091b0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80091b4: b2db uxtb r3, r3 - 80091b6: 2b03 cmp r3, #3 - 80091b8: d115 bne.n 80091e6 + 8009586: 687b ldr r3, [r7, #4] + 8009588: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800958c: b2db uxtb r3, r3 + 800958e: 2b03 cmp r3, #3 + 8009590: d115 bne.n 80095be { if (pdev->pClass[pdev->classId]->IsoOUTIncomplete != NULL) - 80091ba: 687b ldr r3, [r7, #4] - 80091bc: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80091c0: 687b ldr r3, [r7, #4] - 80091c2: 32ae adds r2, #174 @ 0xae - 80091c4: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80091c8: 6a5b ldr r3, [r3, #36] @ 0x24 - 80091ca: 2b00 cmp r3, #0 - 80091cc: d00b beq.n 80091e6 + 8009592: 687b ldr r3, [r7, #4] + 8009594: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009598: 687b ldr r3, [r7, #4] + 800959a: 32ae adds r2, #174 @ 0xae + 800959c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80095a0: 6a5b ldr r3, [r3, #36] @ 0x24 + 80095a2: 2b00 cmp r3, #0 + 80095a4: d00b beq.n 80095be { (void)pdev->pClass[pdev->classId]->IsoOUTIncomplete(pdev, epnum); - 80091ce: 687b ldr r3, [r7, #4] - 80091d0: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80091d4: 687b ldr r3, [r7, #4] - 80091d6: 32ae adds r2, #174 @ 0xae - 80091d8: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80091dc: 6a5b ldr r3, [r3, #36] @ 0x24 - 80091de: 78fa ldrb r2, [r7, #3] - 80091e0: 4611 mov r1, r2 - 80091e2: 6878 ldr r0, [r7, #4] - 80091e4: 4798 blx r3 + 80095a6: 687b ldr r3, [r7, #4] + 80095a8: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 80095ac: 687b ldr r3, [r7, #4] + 80095ae: 32ae adds r2, #174 @ 0xae + 80095b0: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80095b4: 6a5b ldr r3, [r3, #36] @ 0x24 + 80095b6: 78fa ldrb r2, [r7, #3] + 80095b8: 4611 mov r1, r2 + 80095ba: 6878 ldr r0, [r7, #4] + 80095bc: 4798 blx r3 } } return USBD_OK; - 80091e6: 2300 movs r3, #0 + 80095be: 2300 movs r3, #0 } - 80091e8: 4618 mov r0, r3 - 80091ea: 3708 adds r7, #8 - 80091ec: 46bd mov sp, r7 - 80091ee: bd80 pop {r7, pc} + 80095c0: 4618 mov r0, r3 + 80095c2: 3708 adds r7, #8 + 80095c4: 46bd mov sp, r7 + 80095c6: bd80 pop {r7, pc} -080091f0 : +080095c8 : * Handle device connection event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_DevConnected(USBD_HandleTypeDef *pdev) { - 80091f0: b480 push {r7} - 80091f2: b083 sub sp, #12 - 80091f4: af00 add r7, sp, #0 - 80091f6: 6078 str r0, [r7, #4] + 80095c8: b480 push {r7} + 80095ca: b083 sub sp, #12 + 80095cc: af00 add r7, sp, #0 + 80095ce: 6078 str r0, [r7, #4] /* Prevent unused argument compilation warning */ UNUSED(pdev); return USBD_OK; - 80091f8: 2300 movs r3, #0 + 80095d0: 2300 movs r3, #0 } - 80091fa: 4618 mov r0, r3 - 80091fc: 370c adds r7, #12 - 80091fe: 46bd mov sp, r7 - 8009200: f85d 7b04 ldr.w r7, [sp], #4 - 8009204: 4770 bx lr + 80095d2: 4618 mov r0, r3 + 80095d4: 370c adds r7, #12 + 80095d6: 46bd mov sp, r7 + 80095d8: f85d 7b04 ldr.w r7, [sp], #4 + 80095dc: 4770 bx lr -08009206 : +080095de : * Handle device disconnection event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_DevDisconnected(USBD_HandleTypeDef *pdev) { - 8009206: b580 push {r7, lr} - 8009208: b084 sub sp, #16 - 800920a: af00 add r7, sp, #0 - 800920c: 6078 str r0, [r7, #4] + 80095de: b580 push {r7, lr} + 80095e0: b084 sub sp, #16 + 80095e2: af00 add r7, sp, #0 + 80095e4: 6078 str r0, [r7, #4] USBD_StatusTypeDef ret = USBD_OK; - 800920e: 2300 movs r3, #0 - 8009210: 73fb strb r3, [r7, #15] + 80095e6: 2300 movs r3, #0 + 80095e8: 73fb strb r3, [r7, #15] /* Free Class Resources */ pdev->dev_state = USBD_STATE_DEFAULT; - 8009212: 687b ldr r3, [r7, #4] - 8009214: 2201 movs r2, #1 - 8009216: f883 229c strb.w r2, [r3, #668] @ 0x29c + 80095ea: 687b ldr r3, [r7, #4] + 80095ec: 2201 movs r2, #1 + 80095ee: f883 229c strb.w r2, [r3, #668] @ 0x29c } } } } #else if (pdev->pClass[0] != NULL) - 800921a: 687b ldr r3, [r7, #4] - 800921c: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009220: 2b00 cmp r3, #0 - 8009222: d00e beq.n 8009242 + 80095f2: 687b ldr r3, [r7, #4] + 80095f4: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80095f8: 2b00 cmp r3, #0 + 80095fa: d00e beq.n 800961a { if (pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config) != 0U) - 8009224: 687b ldr r3, [r7, #4] - 8009226: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 800922a: 685b ldr r3, [r3, #4] - 800922c: 687a ldr r2, [r7, #4] - 800922e: 6852 ldr r2, [r2, #4] - 8009230: b2d2 uxtb r2, r2 - 8009232: 4611 mov r1, r2 - 8009234: 6878 ldr r0, [r7, #4] - 8009236: 4798 blx r3 - 8009238: 4603 mov r3, r0 - 800923a: 2b00 cmp r3, #0 - 800923c: d001 beq.n 8009242 + 80095fc: 687b ldr r3, [r7, #4] + 80095fe: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8009602: 685b ldr r3, [r3, #4] + 8009604: 687a ldr r2, [r7, #4] + 8009606: 6852 ldr r2, [r2, #4] + 8009608: b2d2 uxtb r2, r2 + 800960a: 4611 mov r1, r2 + 800960c: 6878 ldr r0, [r7, #4] + 800960e: 4798 blx r3 + 8009610: 4603 mov r3, r0 + 8009612: 2b00 cmp r3, #0 + 8009614: d001 beq.n 800961a { ret = USBD_FAIL; - 800923e: 2303 movs r3, #3 - 8009240: 73fb strb r3, [r7, #15] + 8009616: 2303 movs r3, #3 + 8009618: 73fb strb r3, [r7, #15] } } #endif /* USE_USBD_COMPOSITE */ return ret; - 8009242: 7bfb ldrb r3, [r7, #15] + 800961a: 7bfb ldrb r3, [r7, #15] } - 8009244: 4618 mov r0, r3 - 8009246: 3710 adds r7, #16 - 8009248: 46bd mov sp, r7 - 800924a: bd80 pop {r7, pc} + 800961c: 4618 mov r0, r3 + 800961e: 3710 adds r7, #16 + 8009620: 46bd mov sp, r7 + 8009622: bd80 pop {r7, pc} -0800924c : +08009624 : * @param pdev: device instance * @param index : selected interface number * @retval index of the class using the selected interface number. OxFF if no class found. */ uint8_t USBD_CoreFindIF(USBD_HandleTypeDef *pdev, uint8_t index) { - 800924c: b480 push {r7} - 800924e: b083 sub sp, #12 - 8009250: af00 add r7, sp, #0 - 8009252: 6078 str r0, [r7, #4] - 8009254: 460b mov r3, r1 - 8009256: 70fb strb r3, [r7, #3] + 8009624: b480 push {r7} + 8009626: b083 sub sp, #12 + 8009628: af00 add r7, sp, #0 + 800962a: 6078 str r0, [r7, #4] + 800962c: 460b mov r3, r1 + 800962e: 70fb strb r3, [r7, #3] return 0xFFU; #else UNUSED(pdev); UNUSED(index); return 0x00U; - 8009258: 2300 movs r3, #0 + 8009630: 2300 movs r3, #0 #endif /* USE_USBD_COMPOSITE */ } - 800925a: 4618 mov r0, r3 - 800925c: 370c adds r7, #12 - 800925e: 46bd mov sp, r7 - 8009260: f85d 7b04 ldr.w r7, [sp], #4 - 8009264: 4770 bx lr + 8009632: 4618 mov r0, r3 + 8009634: 370c adds r7, #12 + 8009636: 46bd mov sp, r7 + 8009638: f85d 7b04 ldr.w r7, [sp], #4 + 800963c: 4770 bx lr -08009266 : +0800963e : * @param pdev: device instance * @param index : selected endpoint number * @retval index of the class using the selected endpoint number. 0xFF if no class found. */ uint8_t USBD_CoreFindEP(USBD_HandleTypeDef *pdev, uint8_t index) { - 8009266: b480 push {r7} - 8009268: b083 sub sp, #12 - 800926a: af00 add r7, sp, #0 - 800926c: 6078 str r0, [r7, #4] - 800926e: 460b mov r3, r1 - 8009270: 70fb strb r3, [r7, #3] + 800963e: b480 push {r7} + 8009640: b083 sub sp, #12 + 8009642: af00 add r7, sp, #0 + 8009644: 6078 str r0, [r7, #4] + 8009646: 460b mov r3, r1 + 8009648: 70fb strb r3, [r7, #3] return 0xFFU; #else UNUSED(pdev); UNUSED(index); return 0x00U; - 8009272: 2300 movs r3, #0 + 800964a: 2300 movs r3, #0 #endif /* USE_USBD_COMPOSITE */ } - 8009274: 4618 mov r0, r3 - 8009276: 370c adds r7, #12 - 8009278: 46bd mov sp, r7 - 800927a: f85d 7b04 ldr.w r7, [sp], #4 - 800927e: 4770 bx lr + 800964c: 4618 mov r0, r3 + 800964e: 370c adds r7, #12 + 8009650: 46bd mov sp, r7 + 8009652: f85d 7b04 ldr.w r7, [sp], #4 + 8009656: 4770 bx lr -08009280 : +08009658 : * @param pConfDesc: pointer to Bos descriptor * @param EpAddr: endpoint address * @retval pointer to video endpoint descriptor */ void *USBD_GetEpDesc(uint8_t *pConfDesc, uint8_t EpAddr) { - 8009280: b580 push {r7, lr} - 8009282: b086 sub sp, #24 - 8009284: af00 add r7, sp, #0 - 8009286: 6078 str r0, [r7, #4] - 8009288: 460b mov r3, r1 - 800928a: 70fb strb r3, [r7, #3] + 8009658: b580 push {r7, lr} + 800965a: b086 sub sp, #24 + 800965c: af00 add r7, sp, #0 + 800965e: 6078 str r0, [r7, #4] + 8009660: 460b mov r3, r1 + 8009662: 70fb strb r3, [r7, #3] USBD_DescHeaderTypeDef *pdesc = (USBD_DescHeaderTypeDef *)(void *)pConfDesc; - 800928c: 687b ldr r3, [r7, #4] - 800928e: 617b str r3, [r7, #20] + 8009664: 687b ldr r3, [r7, #4] + 8009666: 617b str r3, [r7, #20] USBD_ConfigDescTypeDef *desc = (USBD_ConfigDescTypeDef *)(void *)pConfDesc; - 8009290: 687b ldr r3, [r7, #4] - 8009292: 60fb str r3, [r7, #12] + 8009668: 687b ldr r3, [r7, #4] + 800966a: 60fb str r3, [r7, #12] USBD_EpDescTypeDef *pEpDesc = NULL; - 8009294: 2300 movs r3, #0 - 8009296: 613b str r3, [r7, #16] + 800966c: 2300 movs r3, #0 + 800966e: 613b str r3, [r7, #16] uint16_t ptr; if (desc->wTotalLength > desc->bLength) - 8009298: 68fb ldr r3, [r7, #12] - 800929a: 885b ldrh r3, [r3, #2] - 800929c: b29b uxth r3, r3 - 800929e: 68fa ldr r2, [r7, #12] - 80092a0: 7812 ldrb r2, [r2, #0] - 80092a2: 4293 cmp r3, r2 - 80092a4: d91f bls.n 80092e6 + 8009670: 68fb ldr r3, [r7, #12] + 8009672: 885b ldrh r3, [r3, #2] + 8009674: b29b uxth r3, r3 + 8009676: 68fa ldr r2, [r7, #12] + 8009678: 7812 ldrb r2, [r2, #0] + 800967a: 4293 cmp r3, r2 + 800967c: d91f bls.n 80096be { ptr = desc->bLength; - 80092a6: 68fb ldr r3, [r7, #12] - 80092a8: 781b ldrb r3, [r3, #0] - 80092aa: 817b strh r3, [r7, #10] + 800967e: 68fb ldr r3, [r7, #12] + 8009680: 781b ldrb r3, [r3, #0] + 8009682: 817b strh r3, [r7, #10] while (ptr < desc->wTotalLength) - 80092ac: e013 b.n 80092d6 + 8009684: e013 b.n 80096ae { pdesc = USBD_GetNextDesc((uint8_t *)pdesc, &ptr); - 80092ae: f107 030a add.w r3, r7, #10 - 80092b2: 4619 mov r1, r3 - 80092b4: 6978 ldr r0, [r7, #20] - 80092b6: f000 f81b bl 80092f0 - 80092ba: 6178 str r0, [r7, #20] + 8009686: f107 030a add.w r3, r7, #10 + 800968a: 4619 mov r1, r3 + 800968c: 6978 ldr r0, [r7, #20] + 800968e: f000 f81b bl 80096c8 + 8009692: 6178 str r0, [r7, #20] if (pdesc->bDescriptorType == USB_DESC_TYPE_ENDPOINT) - 80092bc: 697b ldr r3, [r7, #20] - 80092be: 785b ldrb r3, [r3, #1] - 80092c0: 2b05 cmp r3, #5 - 80092c2: d108 bne.n 80092d6 + 8009694: 697b ldr r3, [r7, #20] + 8009696: 785b ldrb r3, [r3, #1] + 8009698: 2b05 cmp r3, #5 + 800969a: d108 bne.n 80096ae { pEpDesc = (USBD_EpDescTypeDef *)(void *)pdesc; - 80092c4: 697b ldr r3, [r7, #20] - 80092c6: 613b str r3, [r7, #16] + 800969c: 697b ldr r3, [r7, #20] + 800969e: 613b str r3, [r7, #16] if (pEpDesc->bEndpointAddress == EpAddr) - 80092c8: 693b ldr r3, [r7, #16] - 80092ca: 789b ldrb r3, [r3, #2] - 80092cc: 78fa ldrb r2, [r7, #3] - 80092ce: 429a cmp r2, r3 - 80092d0: d008 beq.n 80092e4 + 80096a0: 693b ldr r3, [r7, #16] + 80096a2: 789b ldrb r3, [r3, #2] + 80096a4: 78fa ldrb r2, [r7, #3] + 80096a6: 429a cmp r2, r3 + 80096a8: d008 beq.n 80096bc { break; } else { pEpDesc = NULL; - 80092d2: 2300 movs r3, #0 - 80092d4: 613b str r3, [r7, #16] + 80096aa: 2300 movs r3, #0 + 80096ac: 613b str r3, [r7, #16] while (ptr < desc->wTotalLength) - 80092d6: 68fb ldr r3, [r7, #12] - 80092d8: 885b ldrh r3, [r3, #2] - 80092da: b29a uxth r2, r3 - 80092dc: 897b ldrh r3, [r7, #10] - 80092de: 429a cmp r2, r3 - 80092e0: d8e5 bhi.n 80092ae - 80092e2: e000 b.n 80092e6 + 80096ae: 68fb ldr r3, [r7, #12] + 80096b0: 885b ldrh r3, [r3, #2] + 80096b2: b29a uxth r2, r3 + 80096b4: 897b ldrh r3, [r7, #10] + 80096b6: 429a cmp r2, r3 + 80096b8: d8e5 bhi.n 8009686 + 80096ba: e000 b.n 80096be break; - 80092e4: bf00 nop + 80096bc: bf00 nop } } } } return (void *)pEpDesc; - 80092e6: 693b ldr r3, [r7, #16] + 80096be: 693b ldr r3, [r7, #16] } - 80092e8: 4618 mov r0, r3 - 80092ea: 3718 adds r7, #24 - 80092ec: 46bd mov sp, r7 - 80092ee: bd80 pop {r7, pc} + 80096c0: 4618 mov r0, r3 + 80096c2: 3718 adds r7, #24 + 80096c4: 46bd mov sp, r7 + 80096c6: bd80 pop {r7, pc} -080092f0 : +080096c8 : * @param buf: Buffer where the descriptor is available * @param ptr: data pointer inside the descriptor * @retval next header */ USBD_DescHeaderTypeDef *USBD_GetNextDesc(uint8_t *pbuf, uint16_t *ptr) { - 80092f0: b480 push {r7} - 80092f2: b085 sub sp, #20 - 80092f4: af00 add r7, sp, #0 - 80092f6: 6078 str r0, [r7, #4] - 80092f8: 6039 str r1, [r7, #0] + 80096c8: b480 push {r7} + 80096ca: b085 sub sp, #20 + 80096cc: af00 add r7, sp, #0 + 80096ce: 6078 str r0, [r7, #4] + 80096d0: 6039 str r1, [r7, #0] USBD_DescHeaderTypeDef *pnext = (USBD_DescHeaderTypeDef *)(void *)pbuf; - 80092fa: 687b ldr r3, [r7, #4] - 80092fc: 60fb str r3, [r7, #12] + 80096d2: 687b ldr r3, [r7, #4] + 80096d4: 60fb str r3, [r7, #12] *ptr += pnext->bLength; - 80092fe: 683b ldr r3, [r7, #0] - 8009300: 881b ldrh r3, [r3, #0] - 8009302: 68fa ldr r2, [r7, #12] - 8009304: 7812 ldrb r2, [r2, #0] - 8009306: 4413 add r3, r2 - 8009308: b29a uxth r2, r3 - 800930a: 683b ldr r3, [r7, #0] - 800930c: 801a strh r2, [r3, #0] + 80096d6: 683b ldr r3, [r7, #0] + 80096d8: 881b ldrh r3, [r3, #0] + 80096da: 68fa ldr r2, [r7, #12] + 80096dc: 7812 ldrb r2, [r2, #0] + 80096de: 4413 add r3, r2 + 80096e0: b29a uxth r2, r3 + 80096e2: 683b ldr r3, [r7, #0] + 80096e4: 801a strh r2, [r3, #0] pnext = (USBD_DescHeaderTypeDef *)(void *)(pbuf + pnext->bLength); - 800930e: 68fb ldr r3, [r7, #12] - 8009310: 781b ldrb r3, [r3, #0] - 8009312: 461a mov r2, r3 - 8009314: 687b ldr r3, [r7, #4] - 8009316: 4413 add r3, r2 - 8009318: 60fb str r3, [r7, #12] + 80096e6: 68fb ldr r3, [r7, #12] + 80096e8: 781b ldrb r3, [r3, #0] + 80096ea: 461a mov r2, r3 + 80096ec: 687b ldr r3, [r7, #4] + 80096ee: 4413 add r3, r2 + 80096f0: 60fb str r3, [r7, #12] return (pnext); - 800931a: 68fb ldr r3, [r7, #12] + 80096f2: 68fb ldr r3, [r7, #12] } - 800931c: 4618 mov r0, r3 - 800931e: 3714 adds r7, #20 - 8009320: 46bd mov sp, r7 - 8009322: f85d 7b04 ldr.w r7, [sp], #4 - 8009326: 4770 bx lr + 80096f4: 4618 mov r0, r3 + 80096f6: 3714 adds r7, #20 + 80096f8: 46bd mov sp, r7 + 80096fa: f85d 7b04 ldr.w r7, [sp], #4 + 80096fe: 4770 bx lr -08009328 : +08009700 : /** @defgroup USBD_DEF_Exported_Macros * @{ */ __STATIC_INLINE uint16_t SWAPBYTE(uint8_t *addr) { - 8009328: b480 push {r7} - 800932a: b087 sub sp, #28 - 800932c: af00 add r7, sp, #0 - 800932e: 6078 str r0, [r7, #4] + 8009700: b480 push {r7} + 8009702: b087 sub sp, #28 + 8009704: af00 add r7, sp, #0 + 8009706: 6078 str r0, [r7, #4] uint16_t _SwapVal; uint16_t _Byte1; uint16_t _Byte2; uint8_t *_pbuff = addr; - 8009330: 687b ldr r3, [r7, #4] - 8009332: 617b str r3, [r7, #20] + 8009708: 687b ldr r3, [r7, #4] + 800970a: 617b str r3, [r7, #20] _Byte1 = *(uint8_t *)_pbuff; - 8009334: 697b ldr r3, [r7, #20] - 8009336: 781b ldrb r3, [r3, #0] - 8009338: 827b strh r3, [r7, #18] + 800970c: 697b ldr r3, [r7, #20] + 800970e: 781b ldrb r3, [r3, #0] + 8009710: 827b strh r3, [r7, #18] _pbuff++; - 800933a: 697b ldr r3, [r7, #20] - 800933c: 3301 adds r3, #1 - 800933e: 617b str r3, [r7, #20] + 8009712: 697b ldr r3, [r7, #20] + 8009714: 3301 adds r3, #1 + 8009716: 617b str r3, [r7, #20] _Byte2 = *(uint8_t *)_pbuff; - 8009340: 697b ldr r3, [r7, #20] - 8009342: 781b ldrb r3, [r3, #0] - 8009344: 823b strh r3, [r7, #16] + 8009718: 697b ldr r3, [r7, #20] + 800971a: 781b ldrb r3, [r3, #0] + 800971c: 823b strh r3, [r7, #16] _SwapVal = (_Byte2 << 8) | _Byte1; - 8009346: f9b7 3010 ldrsh.w r3, [r7, #16] - 800934a: 021b lsls r3, r3, #8 - 800934c: b21a sxth r2, r3 - 800934e: f9b7 3012 ldrsh.w r3, [r7, #18] - 8009352: 4313 orrs r3, r2 - 8009354: b21b sxth r3, r3 - 8009356: 81fb strh r3, [r7, #14] + 800971e: f9b7 3010 ldrsh.w r3, [r7, #16] + 8009722: 021b lsls r3, r3, #8 + 8009724: b21a sxth r2, r3 + 8009726: f9b7 3012 ldrsh.w r3, [r7, #18] + 800972a: 4313 orrs r3, r2 + 800972c: b21b sxth r3, r3 + 800972e: 81fb strh r3, [r7, #14] return _SwapVal; - 8009358: 89fb ldrh r3, [r7, #14] + 8009730: 89fb ldrh r3, [r7, #14] } - 800935a: 4618 mov r0, r3 - 800935c: 371c adds r7, #28 - 800935e: 46bd mov sp, r7 - 8009360: f85d 7b04 ldr.w r7, [sp], #4 - 8009364: 4770 bx lr + 8009732: 4618 mov r0, r3 + 8009734: 371c adds r7, #28 + 8009736: 46bd mov sp, r7 + 8009738: f85d 7b04 ldr.w r7, [sp], #4 + 800973c: 4770 bx lr ... -08009368 : +08009740 : * @param pdev: device instance * @param req: usb request * @retval status */ USBD_StatusTypeDef USBD_StdDevReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009368: b580 push {r7, lr} - 800936a: b084 sub sp, #16 - 800936c: af00 add r7, sp, #0 - 800936e: 6078 str r0, [r7, #4] - 8009370: 6039 str r1, [r7, #0] + 8009740: b580 push {r7, lr} + 8009742: b084 sub sp, #16 + 8009744: af00 add r7, sp, #0 + 8009746: 6078 str r0, [r7, #4] + 8009748: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret = USBD_OK; - 8009372: 2300 movs r3, #0 - 8009374: 73fb strb r3, [r7, #15] + 800974a: 2300 movs r3, #0 + 800974c: 73fb strb r3, [r7, #15] switch (req->bmRequest & USB_REQ_TYPE_MASK) - 8009376: 683b ldr r3, [r7, #0] - 8009378: 781b ldrb r3, [r3, #0] - 800937a: f003 0360 and.w r3, r3, #96 @ 0x60 - 800937e: 2b40 cmp r3, #64 @ 0x40 - 8009380: d005 beq.n 800938e - 8009382: 2b40 cmp r3, #64 @ 0x40 - 8009384: d857 bhi.n 8009436 - 8009386: 2b00 cmp r3, #0 - 8009388: d00f beq.n 80093aa - 800938a: 2b20 cmp r3, #32 - 800938c: d153 bne.n 8009436 + 800974e: 683b ldr r3, [r7, #0] + 8009750: 781b ldrb r3, [r3, #0] + 8009752: f003 0360 and.w r3, r3, #96 @ 0x60 + 8009756: 2b40 cmp r3, #64 @ 0x40 + 8009758: d005 beq.n 8009766 + 800975a: 2b40 cmp r3, #64 @ 0x40 + 800975c: d857 bhi.n 800980e + 800975e: 2b00 cmp r3, #0 + 8009760: d00f beq.n 8009782 + 8009762: 2b20 cmp r3, #32 + 8009764: d153 bne.n 800980e { case USB_REQ_TYPE_CLASS: case USB_REQ_TYPE_VENDOR: ret = (USBD_StatusTypeDef)pdev->pClass[pdev->classId]->Setup(pdev, req); - 800938e: 687b ldr r3, [r7, #4] - 8009390: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8009394: 687b ldr r3, [r7, #4] - 8009396: 32ae adds r2, #174 @ 0xae - 8009398: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800939c: 689b ldr r3, [r3, #8] - 800939e: 6839 ldr r1, [r7, #0] - 80093a0: 6878 ldr r0, [r7, #4] - 80093a2: 4798 blx r3 - 80093a4: 4603 mov r3, r0 - 80093a6: 73fb strb r3, [r7, #15] + 8009766: 687b ldr r3, [r7, #4] + 8009768: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 800976c: 687b ldr r3, [r7, #4] + 800976e: 32ae adds r2, #174 @ 0xae + 8009770: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009774: 689b ldr r3, [r3, #8] + 8009776: 6839 ldr r1, [r7, #0] + 8009778: 6878 ldr r0, [r7, #4] + 800977a: 4798 blx r3 + 800977c: 4603 mov r3, r0 + 800977e: 73fb strb r3, [r7, #15] break; - 80093a8: e04a b.n 8009440 + 8009780: e04a b.n 8009818 case USB_REQ_TYPE_STANDARD: switch (req->bRequest) - 80093aa: 683b ldr r3, [r7, #0] - 80093ac: 785b ldrb r3, [r3, #1] - 80093ae: 2b09 cmp r3, #9 - 80093b0: d83b bhi.n 800942a - 80093b2: a201 add r2, pc, #4 @ (adr r2, 80093b8 ) - 80093b4: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80093b8: 0800940d .word 0x0800940d - 80093bc: 08009421 .word 0x08009421 - 80093c0: 0800942b .word 0x0800942b - 80093c4: 08009417 .word 0x08009417 - 80093c8: 0800942b .word 0x0800942b - 80093cc: 080093eb .word 0x080093eb - 80093d0: 080093e1 .word 0x080093e1 - 80093d4: 0800942b .word 0x0800942b - 80093d8: 08009403 .word 0x08009403 - 80093dc: 080093f5 .word 0x080093f5 + 8009782: 683b ldr r3, [r7, #0] + 8009784: 785b ldrb r3, [r3, #1] + 8009786: 2b09 cmp r3, #9 + 8009788: d83b bhi.n 8009802 + 800978a: a201 add r2, pc, #4 @ (adr r2, 8009790 ) + 800978c: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8009790: 080097e5 .word 0x080097e5 + 8009794: 080097f9 .word 0x080097f9 + 8009798: 08009803 .word 0x08009803 + 800979c: 080097ef .word 0x080097ef + 80097a0: 08009803 .word 0x08009803 + 80097a4: 080097c3 .word 0x080097c3 + 80097a8: 080097b9 .word 0x080097b9 + 80097ac: 08009803 .word 0x08009803 + 80097b0: 080097db .word 0x080097db + 80097b4: 080097cd .word 0x080097cd { case USB_REQ_GET_DESCRIPTOR: USBD_GetDescriptor(pdev, req); - 80093e0: 6839 ldr r1, [r7, #0] - 80093e2: 6878 ldr r0, [r7, #4] - 80093e4: f000 fa3e bl 8009864 + 80097b8: 6839 ldr r1, [r7, #0] + 80097ba: 6878 ldr r0, [r7, #4] + 80097bc: f000 fa3e bl 8009c3c break; - 80093e8: e024 b.n 8009434 + 80097c0: e024 b.n 800980c case USB_REQ_SET_ADDRESS: USBD_SetAddress(pdev, req); - 80093ea: 6839 ldr r1, [r7, #0] - 80093ec: 6878 ldr r0, [r7, #4] - 80093ee: f000 fbcd bl 8009b8c + 80097c2: 6839 ldr r1, [r7, #0] + 80097c4: 6878 ldr r0, [r7, #4] + 80097c6: f000 fbcd bl 8009f64 break; - 80093f2: e01f b.n 8009434 + 80097ca: e01f b.n 800980c case USB_REQ_SET_CONFIGURATION: ret = USBD_SetConfig(pdev, req); - 80093f4: 6839 ldr r1, [r7, #0] - 80093f6: 6878 ldr r0, [r7, #4] - 80093f8: f000 fc0c bl 8009c14 - 80093fc: 4603 mov r3, r0 - 80093fe: 73fb strb r3, [r7, #15] + 80097cc: 6839 ldr r1, [r7, #0] + 80097ce: 6878 ldr r0, [r7, #4] + 80097d0: f000 fc0c bl 8009fec + 80097d4: 4603 mov r3, r0 + 80097d6: 73fb strb r3, [r7, #15] break; - 8009400: e018 b.n 8009434 + 80097d8: e018 b.n 800980c case USB_REQ_GET_CONFIGURATION: USBD_GetConfig(pdev, req); - 8009402: 6839 ldr r1, [r7, #0] - 8009404: 6878 ldr r0, [r7, #4] - 8009406: f000 fcaf bl 8009d68 + 80097da: 6839 ldr r1, [r7, #0] + 80097dc: 6878 ldr r0, [r7, #4] + 80097de: f000 fcaf bl 800a140 break; - 800940a: e013 b.n 8009434 + 80097e2: e013 b.n 800980c case USB_REQ_GET_STATUS: USBD_GetStatus(pdev, req); - 800940c: 6839 ldr r1, [r7, #0] - 800940e: 6878 ldr r0, [r7, #4] - 8009410: f000 fce0 bl 8009dd4 + 80097e4: 6839 ldr r1, [r7, #0] + 80097e6: 6878 ldr r0, [r7, #4] + 80097e8: f000 fce0 bl 800a1ac break; - 8009414: e00e b.n 8009434 + 80097ec: e00e b.n 800980c case USB_REQ_SET_FEATURE: USBD_SetFeature(pdev, req); - 8009416: 6839 ldr r1, [r7, #0] - 8009418: 6878 ldr r0, [r7, #4] - 800941a: f000 fd0f bl 8009e3c + 80097ee: 6839 ldr r1, [r7, #0] + 80097f0: 6878 ldr r0, [r7, #4] + 80097f2: f000 fd0f bl 800a214 break; - 800941e: e009 b.n 8009434 + 80097f6: e009 b.n 800980c case USB_REQ_CLEAR_FEATURE: USBD_ClrFeature(pdev, req); - 8009420: 6839 ldr r1, [r7, #0] - 8009422: 6878 ldr r0, [r7, #4] - 8009424: f000 fd33 bl 8009e8e + 80097f8: 6839 ldr r1, [r7, #0] + 80097fa: 6878 ldr r0, [r7, #4] + 80097fc: f000 fd33 bl 800a266 break; - 8009428: e004 b.n 8009434 + 8009800: e004 b.n 800980c default: USBD_CtlError(pdev, req); - 800942a: 6839 ldr r1, [r7, #0] - 800942c: 6878 ldr r0, [r7, #4] - 800942e: f000 fd8a bl 8009f46 + 8009802: 6839 ldr r1, [r7, #0] + 8009804: 6878 ldr r0, [r7, #4] + 8009806: f000 fd8a bl 800a31e break; - 8009432: bf00 nop + 800980a: bf00 nop } break; - 8009434: e004 b.n 8009440 + 800980c: e004 b.n 8009818 default: USBD_CtlError(pdev, req); - 8009436: 6839 ldr r1, [r7, #0] - 8009438: 6878 ldr r0, [r7, #4] - 800943a: f000 fd84 bl 8009f46 + 800980e: 6839 ldr r1, [r7, #0] + 8009810: 6878 ldr r0, [r7, #4] + 8009812: f000 fd84 bl 800a31e break; - 800943e: bf00 nop + 8009816: bf00 nop } return ret; - 8009440: 7bfb ldrb r3, [r7, #15] + 8009818: 7bfb ldrb r3, [r7, #15] } - 8009442: 4618 mov r0, r3 - 8009444: 3710 adds r7, #16 - 8009446: 46bd mov sp, r7 - 8009448: bd80 pop {r7, pc} - 800944a: bf00 nop + 800981a: 4618 mov r0, r3 + 800981c: 3710 adds r7, #16 + 800981e: 46bd mov sp, r7 + 8009820: bd80 pop {r7, pc} + 8009822: bf00 nop -0800944c : +08009824 : * @param pdev: device instance * @param req: usb request * @retval status */ USBD_StatusTypeDef USBD_StdItfReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 800944c: b580 push {r7, lr} - 800944e: b084 sub sp, #16 - 8009450: af00 add r7, sp, #0 - 8009452: 6078 str r0, [r7, #4] - 8009454: 6039 str r1, [r7, #0] + 8009824: b580 push {r7, lr} + 8009826: b084 sub sp, #16 + 8009828: af00 add r7, sp, #0 + 800982a: 6078 str r0, [r7, #4] + 800982c: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret = USBD_OK; - 8009456: 2300 movs r3, #0 - 8009458: 73fb strb r3, [r7, #15] + 800982e: 2300 movs r3, #0 + 8009830: 73fb strb r3, [r7, #15] uint8_t idx; switch (req->bmRequest & USB_REQ_TYPE_MASK) - 800945a: 683b ldr r3, [r7, #0] - 800945c: 781b ldrb r3, [r3, #0] - 800945e: f003 0360 and.w r3, r3, #96 @ 0x60 - 8009462: 2b40 cmp r3, #64 @ 0x40 - 8009464: d005 beq.n 8009472 - 8009466: 2b40 cmp r3, #64 @ 0x40 - 8009468: d852 bhi.n 8009510 - 800946a: 2b00 cmp r3, #0 - 800946c: d001 beq.n 8009472 - 800946e: 2b20 cmp r3, #32 - 8009470: d14e bne.n 8009510 + 8009832: 683b ldr r3, [r7, #0] + 8009834: 781b ldrb r3, [r3, #0] + 8009836: f003 0360 and.w r3, r3, #96 @ 0x60 + 800983a: 2b40 cmp r3, #64 @ 0x40 + 800983c: d005 beq.n 800984a + 800983e: 2b40 cmp r3, #64 @ 0x40 + 8009840: d852 bhi.n 80098e8 + 8009842: 2b00 cmp r3, #0 + 8009844: d001 beq.n 800984a + 8009846: 2b20 cmp r3, #32 + 8009848: d14e bne.n 80098e8 { case USB_REQ_TYPE_CLASS: case USB_REQ_TYPE_VENDOR: case USB_REQ_TYPE_STANDARD: switch (pdev->dev_state) - 8009472: 687b ldr r3, [r7, #4] - 8009474: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009478: b2db uxtb r3, r3 - 800947a: 3b01 subs r3, #1 - 800947c: 2b02 cmp r3, #2 - 800947e: d840 bhi.n 8009502 + 800984a: 687b ldr r3, [r7, #4] + 800984c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009850: b2db uxtb r3, r3 + 8009852: 3b01 subs r3, #1 + 8009854: 2b02 cmp r3, #2 + 8009856: d840 bhi.n 80098da { case USBD_STATE_DEFAULT: case USBD_STATE_ADDRESSED: case USBD_STATE_CONFIGURED: if (LOBYTE(req->wIndex) <= USBD_MAX_NUM_INTERFACES) - 8009480: 683b ldr r3, [r7, #0] - 8009482: 889b ldrh r3, [r3, #4] - 8009484: b2db uxtb r3, r3 - 8009486: 2b01 cmp r3, #1 - 8009488: d836 bhi.n 80094f8 + 8009858: 683b ldr r3, [r7, #0] + 800985a: 889b ldrh r3, [r3, #4] + 800985c: b2db uxtb r3, r3 + 800985e: 2b01 cmp r3, #1 + 8009860: d836 bhi.n 80098d0 { /* Get the class index relative to this interface */ idx = USBD_CoreFindIF(pdev, LOBYTE(req->wIndex)); - 800948a: 683b ldr r3, [r7, #0] - 800948c: 889b ldrh r3, [r3, #4] - 800948e: b2db uxtb r3, r3 - 8009490: 4619 mov r1, r3 - 8009492: 6878 ldr r0, [r7, #4] - 8009494: f7ff feda bl 800924c - 8009498: 4603 mov r3, r0 - 800949a: 73bb strb r3, [r7, #14] + 8009862: 683b ldr r3, [r7, #0] + 8009864: 889b ldrh r3, [r3, #4] + 8009866: b2db uxtb r3, r3 + 8009868: 4619 mov r1, r3 + 800986a: 6878 ldr r0, [r7, #4] + 800986c: f7ff feda bl 8009624 + 8009870: 4603 mov r3, r0 + 8009872: 73bb strb r3, [r7, #14] if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 800949c: 7bbb ldrb r3, [r7, #14] - 800949e: 2bff cmp r3, #255 @ 0xff - 80094a0: d01d beq.n 80094de - 80094a2: 7bbb ldrb r3, [r7, #14] - 80094a4: 2b00 cmp r3, #0 - 80094a6: d11a bne.n 80094de + 8009874: 7bbb ldrb r3, [r7, #14] + 8009876: 2bff cmp r3, #255 @ 0xff + 8009878: d01d beq.n 80098b6 + 800987a: 7bbb ldrb r3, [r7, #14] + 800987c: 2b00 cmp r3, #0 + 800987e: d11a bne.n 80098b6 { /* Call the class data out function to manage the request */ if (pdev->pClass[idx]->Setup != NULL) - 80094a8: 7bba ldrb r2, [r7, #14] - 80094aa: 687b ldr r3, [r7, #4] - 80094ac: 32ae adds r2, #174 @ 0xae - 80094ae: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80094b2: 689b ldr r3, [r3, #8] - 80094b4: 2b00 cmp r3, #0 - 80094b6: d00f beq.n 80094d8 + 8009880: 7bba ldrb r2, [r7, #14] + 8009882: 687b ldr r3, [r7, #4] + 8009884: 32ae adds r2, #174 @ 0xae + 8009886: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800988a: 689b ldr r3, [r3, #8] + 800988c: 2b00 cmp r3, #0 + 800988e: d00f beq.n 80098b0 { pdev->classId = idx; - 80094b8: 7bba ldrb r2, [r7, #14] - 80094ba: 687b ldr r3, [r7, #4] - 80094bc: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8009890: 7bba ldrb r2, [r7, #14] + 8009892: 687b ldr r3, [r7, #4] + 8009894: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 ret = (USBD_StatusTypeDef)(pdev->pClass[idx]->Setup(pdev, req)); - 80094c0: 7bba ldrb r2, [r7, #14] - 80094c2: 687b ldr r3, [r7, #4] - 80094c4: 32ae adds r2, #174 @ 0xae - 80094c6: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80094ca: 689b ldr r3, [r3, #8] - 80094cc: 6839 ldr r1, [r7, #0] - 80094ce: 6878 ldr r0, [r7, #4] - 80094d0: 4798 blx r3 - 80094d2: 4603 mov r3, r0 - 80094d4: 73fb strb r3, [r7, #15] + 8009898: 7bba ldrb r2, [r7, #14] + 800989a: 687b ldr r3, [r7, #4] + 800989c: 32ae adds r2, #174 @ 0xae + 800989e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80098a2: 689b ldr r3, [r3, #8] + 80098a4: 6839 ldr r1, [r7, #0] + 80098a6: 6878 ldr r0, [r7, #4] + 80098a8: 4798 blx r3 + 80098aa: 4603 mov r3, r0 + 80098ac: 73fb strb r3, [r7, #15] if (pdev->pClass[idx]->Setup != NULL) - 80094d6: e004 b.n 80094e2 + 80098ae: e004 b.n 80098ba } else { /* should never reach this condition */ ret = USBD_FAIL; - 80094d8: 2303 movs r3, #3 - 80094da: 73fb strb r3, [r7, #15] + 80098b0: 2303 movs r3, #3 + 80098b2: 73fb strb r3, [r7, #15] if (pdev->pClass[idx]->Setup != NULL) - 80094dc: e001 b.n 80094e2 + 80098b4: e001 b.n 80098ba } } else { /* No relative interface found */ ret = USBD_FAIL; - 80094de: 2303 movs r3, #3 - 80094e0: 73fb strb r3, [r7, #15] + 80098b6: 2303 movs r3, #3 + 80098b8: 73fb strb r3, [r7, #15] } if ((req->wLength == 0U) && (ret == USBD_OK)) - 80094e2: 683b ldr r3, [r7, #0] - 80094e4: 88db ldrh r3, [r3, #6] - 80094e6: 2b00 cmp r3, #0 - 80094e8: d110 bne.n 800950c - 80094ea: 7bfb ldrb r3, [r7, #15] - 80094ec: 2b00 cmp r3, #0 - 80094ee: d10d bne.n 800950c + 80098ba: 683b ldr r3, [r7, #0] + 80098bc: 88db ldrh r3, [r3, #6] + 80098be: 2b00 cmp r3, #0 + 80098c0: d110 bne.n 80098e4 + 80098c2: 7bfb ldrb r3, [r7, #15] + 80098c4: 2b00 cmp r3, #0 + 80098c6: d10d bne.n 80098e4 { (void)USBD_CtlSendStatus(pdev); - 80094f0: 6878 ldr r0, [r7, #4] - 80094f2: f000 fde5 bl 800a0c0 + 80098c8: 6878 ldr r0, [r7, #4] + 80098ca: f000 fde5 bl 800a498 } else { USBD_CtlError(pdev, req); } break; - 80094f6: e009 b.n 800950c + 80098ce: e009 b.n 80098e4 USBD_CtlError(pdev, req); - 80094f8: 6839 ldr r1, [r7, #0] - 80094fa: 6878 ldr r0, [r7, #4] - 80094fc: f000 fd23 bl 8009f46 + 80098d0: 6839 ldr r1, [r7, #0] + 80098d2: 6878 ldr r0, [r7, #4] + 80098d4: f000 fd23 bl 800a31e break; - 8009500: e004 b.n 800950c + 80098d8: e004 b.n 80098e4 default: USBD_CtlError(pdev, req); - 8009502: 6839 ldr r1, [r7, #0] - 8009504: 6878 ldr r0, [r7, #4] - 8009506: f000 fd1e bl 8009f46 + 80098da: 6839 ldr r1, [r7, #0] + 80098dc: 6878 ldr r0, [r7, #4] + 80098de: f000 fd1e bl 800a31e break; - 800950a: e000 b.n 800950e + 80098e2: e000 b.n 80098e6 break; - 800950c: bf00 nop + 80098e4: bf00 nop } break; - 800950e: e004 b.n 800951a + 80098e6: e004 b.n 80098f2 default: USBD_CtlError(pdev, req); - 8009510: 6839 ldr r1, [r7, #0] - 8009512: 6878 ldr r0, [r7, #4] - 8009514: f000 fd17 bl 8009f46 + 80098e8: 6839 ldr r1, [r7, #0] + 80098ea: 6878 ldr r0, [r7, #4] + 80098ec: f000 fd17 bl 800a31e break; - 8009518: bf00 nop + 80098f0: bf00 nop } return ret; - 800951a: 7bfb ldrb r3, [r7, #15] + 80098f2: 7bfb ldrb r3, [r7, #15] } - 800951c: 4618 mov r0, r3 - 800951e: 3710 adds r7, #16 - 8009520: 46bd mov sp, r7 - 8009522: bd80 pop {r7, pc} + 80098f4: 4618 mov r0, r3 + 80098f6: 3710 adds r7, #16 + 80098f8: 46bd mov sp, r7 + 80098fa: bd80 pop {r7, pc} -08009524 : +080098fc : * @param pdev: device instance * @param req: usb request * @retval status */ USBD_StatusTypeDef USBD_StdEPReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009524: b580 push {r7, lr} - 8009526: b084 sub sp, #16 - 8009528: af00 add r7, sp, #0 - 800952a: 6078 str r0, [r7, #4] - 800952c: 6039 str r1, [r7, #0] + 80098fc: b580 push {r7, lr} + 80098fe: b084 sub sp, #16 + 8009900: af00 add r7, sp, #0 + 8009902: 6078 str r0, [r7, #4] + 8009904: 6039 str r1, [r7, #0] USBD_EndpointTypeDef *pep; uint8_t ep_addr; uint8_t idx; USBD_StatusTypeDef ret = USBD_OK; - 800952e: 2300 movs r3, #0 - 8009530: 73fb strb r3, [r7, #15] + 8009906: 2300 movs r3, #0 + 8009908: 73fb strb r3, [r7, #15] ep_addr = LOBYTE(req->wIndex); - 8009532: 683b ldr r3, [r7, #0] - 8009534: 889b ldrh r3, [r3, #4] - 8009536: 73bb strb r3, [r7, #14] + 800990a: 683b ldr r3, [r7, #0] + 800990c: 889b ldrh r3, [r3, #4] + 800990e: 73bb strb r3, [r7, #14] switch (req->bmRequest & USB_REQ_TYPE_MASK) - 8009538: 683b ldr r3, [r7, #0] - 800953a: 781b ldrb r3, [r3, #0] - 800953c: f003 0360 and.w r3, r3, #96 @ 0x60 - 8009540: 2b40 cmp r3, #64 @ 0x40 - 8009542: d007 beq.n 8009554 - 8009544: 2b40 cmp r3, #64 @ 0x40 - 8009546: f200 8181 bhi.w 800984c - 800954a: 2b00 cmp r3, #0 - 800954c: d02a beq.n 80095a4 - 800954e: 2b20 cmp r3, #32 - 8009550: f040 817c bne.w 800984c + 8009910: 683b ldr r3, [r7, #0] + 8009912: 781b ldrb r3, [r3, #0] + 8009914: f003 0360 and.w r3, r3, #96 @ 0x60 + 8009918: 2b40 cmp r3, #64 @ 0x40 + 800991a: d007 beq.n 800992c + 800991c: 2b40 cmp r3, #64 @ 0x40 + 800991e: f200 8181 bhi.w 8009c24 + 8009922: 2b00 cmp r3, #0 + 8009924: d02a beq.n 800997c + 8009926: 2b20 cmp r3, #32 + 8009928: f040 817c bne.w 8009c24 { case USB_REQ_TYPE_CLASS: case USB_REQ_TYPE_VENDOR: /* Get the class index relative to this endpoint */ idx = USBD_CoreFindEP(pdev, ep_addr); - 8009554: 7bbb ldrb r3, [r7, #14] - 8009556: 4619 mov r1, r3 - 8009558: 6878 ldr r0, [r7, #4] - 800955a: f7ff fe84 bl 8009266 - 800955e: 4603 mov r3, r0 - 8009560: 737b strb r3, [r7, #13] + 800992c: 7bbb ldrb r3, [r7, #14] + 800992e: 4619 mov r1, r3 + 8009930: 6878 ldr r0, [r7, #4] + 8009932: f7ff fe84 bl 800963e + 8009936: 4603 mov r3, r0 + 8009938: 737b strb r3, [r7, #13] if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 8009562: 7b7b ldrb r3, [r7, #13] - 8009564: 2bff cmp r3, #255 @ 0xff - 8009566: f000 8176 beq.w 8009856 - 800956a: 7b7b ldrb r3, [r7, #13] - 800956c: 2b00 cmp r3, #0 - 800956e: f040 8172 bne.w 8009856 + 800993a: 7b7b ldrb r3, [r7, #13] + 800993c: 2bff cmp r3, #255 @ 0xff + 800993e: f000 8176 beq.w 8009c2e + 8009942: 7b7b ldrb r3, [r7, #13] + 8009944: 2b00 cmp r3, #0 + 8009946: f040 8172 bne.w 8009c2e { pdev->classId = idx; - 8009572: 7b7a ldrb r2, [r7, #13] - 8009574: 687b ldr r3, [r7, #4] - 8009576: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 800994a: 7b7a ldrb r2, [r7, #13] + 800994c: 687b ldr r3, [r7, #4] + 800994e: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 /* Call the class data out function to manage the request */ if (pdev->pClass[idx]->Setup != NULL) - 800957a: 7b7a ldrb r2, [r7, #13] - 800957c: 687b ldr r3, [r7, #4] - 800957e: 32ae adds r2, #174 @ 0xae - 8009580: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009584: 689b ldr r3, [r3, #8] - 8009586: 2b00 cmp r3, #0 - 8009588: f000 8165 beq.w 8009856 + 8009952: 7b7a ldrb r2, [r7, #13] + 8009954: 687b ldr r3, [r7, #4] + 8009956: 32ae adds r2, #174 @ 0xae + 8009958: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800995c: 689b ldr r3, [r3, #8] + 800995e: 2b00 cmp r3, #0 + 8009960: f000 8165 beq.w 8009c2e { ret = (USBD_StatusTypeDef)pdev->pClass[idx]->Setup(pdev, req); - 800958c: 7b7a ldrb r2, [r7, #13] - 800958e: 687b ldr r3, [r7, #4] - 8009590: 32ae adds r2, #174 @ 0xae - 8009592: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009596: 689b ldr r3, [r3, #8] - 8009598: 6839 ldr r1, [r7, #0] - 800959a: 6878 ldr r0, [r7, #4] - 800959c: 4798 blx r3 - 800959e: 4603 mov r3, r0 - 80095a0: 73fb strb r3, [r7, #15] + 8009964: 7b7a ldrb r2, [r7, #13] + 8009966: 687b ldr r3, [r7, #4] + 8009968: 32ae adds r2, #174 @ 0xae + 800996a: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800996e: 689b ldr r3, [r3, #8] + 8009970: 6839 ldr r1, [r7, #0] + 8009972: 6878 ldr r0, [r7, #4] + 8009974: 4798 blx r3 + 8009976: 4603 mov r3, r0 + 8009978: 73fb strb r3, [r7, #15] } } break; - 80095a2: e158 b.n 8009856 + 800997a: e158 b.n 8009c2e case USB_REQ_TYPE_STANDARD: switch (req->bRequest) - 80095a4: 683b ldr r3, [r7, #0] - 80095a6: 785b ldrb r3, [r3, #1] - 80095a8: 2b03 cmp r3, #3 - 80095aa: d008 beq.n 80095be - 80095ac: 2b03 cmp r3, #3 - 80095ae: f300 8147 bgt.w 8009840 - 80095b2: 2b00 cmp r3, #0 - 80095b4: f000 809b beq.w 80096ee - 80095b8: 2b01 cmp r3, #1 - 80095ba: d03c beq.n 8009636 - 80095bc: e140 b.n 8009840 + 800997c: 683b ldr r3, [r7, #0] + 800997e: 785b ldrb r3, [r3, #1] + 8009980: 2b03 cmp r3, #3 + 8009982: d008 beq.n 8009996 + 8009984: 2b03 cmp r3, #3 + 8009986: f300 8147 bgt.w 8009c18 + 800998a: 2b00 cmp r3, #0 + 800998c: f000 809b beq.w 8009ac6 + 8009990: 2b01 cmp r3, #1 + 8009992: d03c beq.n 8009a0e + 8009994: e140 b.n 8009c18 { case USB_REQ_SET_FEATURE: switch (pdev->dev_state) - 80095be: 687b ldr r3, [r7, #4] - 80095c0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80095c4: b2db uxtb r3, r3 - 80095c6: 2b02 cmp r3, #2 - 80095c8: d002 beq.n 80095d0 - 80095ca: 2b03 cmp r3, #3 - 80095cc: d016 beq.n 80095fc - 80095ce: e02c b.n 800962a + 8009996: 687b ldr r3, [r7, #4] + 8009998: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800999c: b2db uxtb r3, r3 + 800999e: 2b02 cmp r3, #2 + 80099a0: d002 beq.n 80099a8 + 80099a2: 2b03 cmp r3, #3 + 80099a4: d016 beq.n 80099d4 + 80099a6: e02c b.n 8009a02 { case USBD_STATE_ADDRESSED: if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) - 80095d0: 7bbb ldrb r3, [r7, #14] - 80095d2: 2b00 cmp r3, #0 - 80095d4: d00d beq.n 80095f2 - 80095d6: 7bbb ldrb r3, [r7, #14] - 80095d8: 2b80 cmp r3, #128 @ 0x80 - 80095da: d00a beq.n 80095f2 + 80099a8: 7bbb ldrb r3, [r7, #14] + 80099aa: 2b00 cmp r3, #0 + 80099ac: d00d beq.n 80099ca + 80099ae: 7bbb ldrb r3, [r7, #14] + 80099b0: 2b80 cmp r3, #128 @ 0x80 + 80099b2: d00a beq.n 80099ca { (void)USBD_LL_StallEP(pdev, ep_addr); - 80095dc: 7bbb ldrb r3, [r7, #14] - 80095de: 4619 mov r1, r3 - 80095e0: 6878 ldr r0, [r7, #4] - 80095e2: f001 f8e3 bl 800a7ac + 80099b4: 7bbb ldrb r3, [r7, #14] + 80099b6: 4619 mov r1, r3 + 80099b8: 6878 ldr r0, [r7, #4] + 80099ba: f001 f8e3 bl 800ab84 (void)USBD_LL_StallEP(pdev, 0x80U); - 80095e6: 2180 movs r1, #128 @ 0x80 - 80095e8: 6878 ldr r0, [r7, #4] - 80095ea: f001 f8df bl 800a7ac - 80095ee: bf00 nop + 80099be: 2180 movs r1, #128 @ 0x80 + 80099c0: 6878 ldr r0, [r7, #4] + 80099c2: f001 f8df bl 800ab84 + 80099c6: bf00 nop } else { USBD_CtlError(pdev, req); } break; - 80095f0: e020 b.n 8009634 + 80099c8: e020 b.n 8009a0c USBD_CtlError(pdev, req); - 80095f2: 6839 ldr r1, [r7, #0] - 80095f4: 6878 ldr r0, [r7, #4] - 80095f6: f000 fca6 bl 8009f46 + 80099ca: 6839 ldr r1, [r7, #0] + 80099cc: 6878 ldr r0, [r7, #4] + 80099ce: f000 fca6 bl 800a31e break; - 80095fa: e01b b.n 8009634 + 80099d2: e01b b.n 8009a0c case USBD_STATE_CONFIGURED: if (req->wValue == USB_FEATURE_EP_HALT) - 80095fc: 683b ldr r3, [r7, #0] - 80095fe: 885b ldrh r3, [r3, #2] - 8009600: 2b00 cmp r3, #0 - 8009602: d10e bne.n 8009622 + 80099d4: 683b ldr r3, [r7, #0] + 80099d6: 885b ldrh r3, [r3, #2] + 80099d8: 2b00 cmp r3, #0 + 80099da: d10e bne.n 80099fa { if ((ep_addr != 0x00U) && (ep_addr != 0x80U) && (req->wLength == 0x00U)) - 8009604: 7bbb ldrb r3, [r7, #14] - 8009606: 2b00 cmp r3, #0 - 8009608: d00b beq.n 8009622 - 800960a: 7bbb ldrb r3, [r7, #14] - 800960c: 2b80 cmp r3, #128 @ 0x80 - 800960e: d008 beq.n 8009622 - 8009610: 683b ldr r3, [r7, #0] - 8009612: 88db ldrh r3, [r3, #6] - 8009614: 2b00 cmp r3, #0 - 8009616: d104 bne.n 8009622 + 80099dc: 7bbb ldrb r3, [r7, #14] + 80099de: 2b00 cmp r3, #0 + 80099e0: d00b beq.n 80099fa + 80099e2: 7bbb ldrb r3, [r7, #14] + 80099e4: 2b80 cmp r3, #128 @ 0x80 + 80099e6: d008 beq.n 80099fa + 80099e8: 683b ldr r3, [r7, #0] + 80099ea: 88db ldrh r3, [r3, #6] + 80099ec: 2b00 cmp r3, #0 + 80099ee: d104 bne.n 80099fa { (void)USBD_LL_StallEP(pdev, ep_addr); - 8009618: 7bbb ldrb r3, [r7, #14] - 800961a: 4619 mov r1, r3 - 800961c: 6878 ldr r0, [r7, #4] - 800961e: f001 f8c5 bl 800a7ac + 80099f0: 7bbb ldrb r3, [r7, #14] + 80099f2: 4619 mov r1, r3 + 80099f4: 6878 ldr r0, [r7, #4] + 80099f6: f001 f8c5 bl 800ab84 } } (void)USBD_CtlSendStatus(pdev); - 8009622: 6878 ldr r0, [r7, #4] - 8009624: f000 fd4c bl 800a0c0 + 80099fa: 6878 ldr r0, [r7, #4] + 80099fc: f000 fd4c bl 800a498 break; - 8009628: e004 b.n 8009634 + 8009a00: e004 b.n 8009a0c default: USBD_CtlError(pdev, req); - 800962a: 6839 ldr r1, [r7, #0] - 800962c: 6878 ldr r0, [r7, #4] - 800962e: f000 fc8a bl 8009f46 + 8009a02: 6839 ldr r1, [r7, #0] + 8009a04: 6878 ldr r0, [r7, #4] + 8009a06: f000 fc8a bl 800a31e break; - 8009632: bf00 nop + 8009a0a: bf00 nop } break; - 8009634: e109 b.n 800984a + 8009a0c: e109 b.n 8009c22 case USB_REQ_CLEAR_FEATURE: switch (pdev->dev_state) - 8009636: 687b ldr r3, [r7, #4] - 8009638: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800963c: b2db uxtb r3, r3 - 800963e: 2b02 cmp r3, #2 - 8009640: d002 beq.n 8009648 - 8009642: 2b03 cmp r3, #3 - 8009644: d016 beq.n 8009674 - 8009646: e04b b.n 80096e0 + 8009a0e: 687b ldr r3, [r7, #4] + 8009a10: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009a14: b2db uxtb r3, r3 + 8009a16: 2b02 cmp r3, #2 + 8009a18: d002 beq.n 8009a20 + 8009a1a: 2b03 cmp r3, #3 + 8009a1c: d016 beq.n 8009a4c + 8009a1e: e04b b.n 8009ab8 { case USBD_STATE_ADDRESSED: if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) - 8009648: 7bbb ldrb r3, [r7, #14] - 800964a: 2b00 cmp r3, #0 - 800964c: d00d beq.n 800966a - 800964e: 7bbb ldrb r3, [r7, #14] - 8009650: 2b80 cmp r3, #128 @ 0x80 - 8009652: d00a beq.n 800966a + 8009a20: 7bbb ldrb r3, [r7, #14] + 8009a22: 2b00 cmp r3, #0 + 8009a24: d00d beq.n 8009a42 + 8009a26: 7bbb ldrb r3, [r7, #14] + 8009a28: 2b80 cmp r3, #128 @ 0x80 + 8009a2a: d00a beq.n 8009a42 { (void)USBD_LL_StallEP(pdev, ep_addr); - 8009654: 7bbb ldrb r3, [r7, #14] - 8009656: 4619 mov r1, r3 - 8009658: 6878 ldr r0, [r7, #4] - 800965a: f001 f8a7 bl 800a7ac + 8009a2c: 7bbb ldrb r3, [r7, #14] + 8009a2e: 4619 mov r1, r3 + 8009a30: 6878 ldr r0, [r7, #4] + 8009a32: f001 f8a7 bl 800ab84 (void)USBD_LL_StallEP(pdev, 0x80U); - 800965e: 2180 movs r1, #128 @ 0x80 - 8009660: 6878 ldr r0, [r7, #4] - 8009662: f001 f8a3 bl 800a7ac - 8009666: bf00 nop + 8009a36: 2180 movs r1, #128 @ 0x80 + 8009a38: 6878 ldr r0, [r7, #4] + 8009a3a: f001 f8a3 bl 800ab84 + 8009a3e: bf00 nop } else { USBD_CtlError(pdev, req); } break; - 8009668: e040 b.n 80096ec + 8009a40: e040 b.n 8009ac4 USBD_CtlError(pdev, req); - 800966a: 6839 ldr r1, [r7, #0] - 800966c: 6878 ldr r0, [r7, #4] - 800966e: f000 fc6a bl 8009f46 + 8009a42: 6839 ldr r1, [r7, #0] + 8009a44: 6878 ldr r0, [r7, #4] + 8009a46: f000 fc6a bl 800a31e break; - 8009672: e03b b.n 80096ec + 8009a4a: e03b b.n 8009ac4 case USBD_STATE_CONFIGURED: if (req->wValue == USB_FEATURE_EP_HALT) - 8009674: 683b ldr r3, [r7, #0] - 8009676: 885b ldrh r3, [r3, #2] - 8009678: 2b00 cmp r3, #0 - 800967a: d136 bne.n 80096ea + 8009a4c: 683b ldr r3, [r7, #0] + 8009a4e: 885b ldrh r3, [r3, #2] + 8009a50: 2b00 cmp r3, #0 + 8009a52: d136 bne.n 8009ac2 { if ((ep_addr & 0x7FU) != 0x00U) - 800967c: 7bbb ldrb r3, [r7, #14] - 800967e: f003 037f and.w r3, r3, #127 @ 0x7f - 8009682: 2b00 cmp r3, #0 - 8009684: d004 beq.n 8009690 + 8009a54: 7bbb ldrb r3, [r7, #14] + 8009a56: f003 037f and.w r3, r3, #127 @ 0x7f + 8009a5a: 2b00 cmp r3, #0 + 8009a5c: d004 beq.n 8009a68 { (void)USBD_LL_ClearStallEP(pdev, ep_addr); - 8009686: 7bbb ldrb r3, [r7, #14] - 8009688: 4619 mov r1, r3 - 800968a: 6878 ldr r0, [r7, #4] - 800968c: f001 f8ad bl 800a7ea + 8009a5e: 7bbb ldrb r3, [r7, #14] + 8009a60: 4619 mov r1, r3 + 8009a62: 6878 ldr r0, [r7, #4] + 8009a64: f001 f8ad bl 800abc2 } (void)USBD_CtlSendStatus(pdev); - 8009690: 6878 ldr r0, [r7, #4] - 8009692: f000 fd15 bl 800a0c0 + 8009a68: 6878 ldr r0, [r7, #4] + 8009a6a: f000 fd15 bl 800a498 /* Get the class index relative to this interface */ idx = USBD_CoreFindEP(pdev, ep_addr); - 8009696: 7bbb ldrb r3, [r7, #14] - 8009698: 4619 mov r1, r3 - 800969a: 6878 ldr r0, [r7, #4] - 800969c: f7ff fde3 bl 8009266 - 80096a0: 4603 mov r3, r0 - 80096a2: 737b strb r3, [r7, #13] + 8009a6e: 7bbb ldrb r3, [r7, #14] + 8009a70: 4619 mov r1, r3 + 8009a72: 6878 ldr r0, [r7, #4] + 8009a74: f7ff fde3 bl 800963e + 8009a78: 4603 mov r3, r0 + 8009a7a: 737b strb r3, [r7, #13] if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 80096a4: 7b7b ldrb r3, [r7, #13] - 80096a6: 2bff cmp r3, #255 @ 0xff - 80096a8: d01f beq.n 80096ea - 80096aa: 7b7b ldrb r3, [r7, #13] - 80096ac: 2b00 cmp r3, #0 - 80096ae: d11c bne.n 80096ea + 8009a7c: 7b7b ldrb r3, [r7, #13] + 8009a7e: 2bff cmp r3, #255 @ 0xff + 8009a80: d01f beq.n 8009ac2 + 8009a82: 7b7b ldrb r3, [r7, #13] + 8009a84: 2b00 cmp r3, #0 + 8009a86: d11c bne.n 8009ac2 { pdev->classId = idx; - 80096b0: 7b7a ldrb r2, [r7, #13] - 80096b2: 687b ldr r3, [r7, #4] - 80096b4: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8009a88: 7b7a ldrb r2, [r7, #13] + 8009a8a: 687b ldr r3, [r7, #4] + 8009a8c: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 /* Call the class data out function to manage the request */ if (pdev->pClass[idx]->Setup != NULL) - 80096b8: 7b7a ldrb r2, [r7, #13] - 80096ba: 687b ldr r3, [r7, #4] - 80096bc: 32ae adds r2, #174 @ 0xae - 80096be: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80096c2: 689b ldr r3, [r3, #8] - 80096c4: 2b00 cmp r3, #0 - 80096c6: d010 beq.n 80096ea + 8009a90: 7b7a ldrb r2, [r7, #13] + 8009a92: 687b ldr r3, [r7, #4] + 8009a94: 32ae adds r2, #174 @ 0xae + 8009a96: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009a9a: 689b ldr r3, [r3, #8] + 8009a9c: 2b00 cmp r3, #0 + 8009a9e: d010 beq.n 8009ac2 { ret = (USBD_StatusTypeDef)(pdev->pClass[idx]->Setup(pdev, req)); - 80096c8: 7b7a ldrb r2, [r7, #13] - 80096ca: 687b ldr r3, [r7, #4] - 80096cc: 32ae adds r2, #174 @ 0xae - 80096ce: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80096d2: 689b ldr r3, [r3, #8] - 80096d4: 6839 ldr r1, [r7, #0] - 80096d6: 6878 ldr r0, [r7, #4] - 80096d8: 4798 blx r3 - 80096da: 4603 mov r3, r0 - 80096dc: 73fb strb r3, [r7, #15] + 8009aa0: 7b7a ldrb r2, [r7, #13] + 8009aa2: 687b ldr r3, [r7, #4] + 8009aa4: 32ae adds r2, #174 @ 0xae + 8009aa6: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009aaa: 689b ldr r3, [r3, #8] + 8009aac: 6839 ldr r1, [r7, #0] + 8009aae: 6878 ldr r0, [r7, #4] + 8009ab0: 4798 blx r3 + 8009ab2: 4603 mov r3, r0 + 8009ab4: 73fb strb r3, [r7, #15] } } } break; - 80096de: e004 b.n 80096ea + 8009ab6: e004 b.n 8009ac2 default: USBD_CtlError(pdev, req); - 80096e0: 6839 ldr r1, [r7, #0] - 80096e2: 6878 ldr r0, [r7, #4] - 80096e4: f000 fc2f bl 8009f46 + 8009ab8: 6839 ldr r1, [r7, #0] + 8009aba: 6878 ldr r0, [r7, #4] + 8009abc: f000 fc2f bl 800a31e break; - 80096e8: e000 b.n 80096ec + 8009ac0: e000 b.n 8009ac4 break; - 80096ea: bf00 nop + 8009ac2: bf00 nop } break; - 80096ec: e0ad b.n 800984a + 8009ac4: e0ad b.n 8009c22 case USB_REQ_GET_STATUS: switch (pdev->dev_state) - 80096ee: 687b ldr r3, [r7, #4] - 80096f0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80096f4: b2db uxtb r3, r3 - 80096f6: 2b02 cmp r3, #2 - 80096f8: d002 beq.n 8009700 - 80096fa: 2b03 cmp r3, #3 - 80096fc: d033 beq.n 8009766 - 80096fe: e099 b.n 8009834 + 8009ac6: 687b ldr r3, [r7, #4] + 8009ac8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009acc: b2db uxtb r3, r3 + 8009ace: 2b02 cmp r3, #2 + 8009ad0: d002 beq.n 8009ad8 + 8009ad2: 2b03 cmp r3, #3 + 8009ad4: d033 beq.n 8009b3e + 8009ad6: e099 b.n 8009c0c { case USBD_STATE_ADDRESSED: if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) - 8009700: 7bbb ldrb r3, [r7, #14] - 8009702: 2b00 cmp r3, #0 - 8009704: d007 beq.n 8009716 - 8009706: 7bbb ldrb r3, [r7, #14] - 8009708: 2b80 cmp r3, #128 @ 0x80 - 800970a: d004 beq.n 8009716 + 8009ad8: 7bbb ldrb r3, [r7, #14] + 8009ada: 2b00 cmp r3, #0 + 8009adc: d007 beq.n 8009aee + 8009ade: 7bbb ldrb r3, [r7, #14] + 8009ae0: 2b80 cmp r3, #128 @ 0x80 + 8009ae2: d004 beq.n 8009aee { USBD_CtlError(pdev, req); - 800970c: 6839 ldr r1, [r7, #0] - 800970e: 6878 ldr r0, [r7, #4] - 8009710: f000 fc19 bl 8009f46 + 8009ae4: 6839 ldr r1, [r7, #0] + 8009ae6: 6878 ldr r0, [r7, #4] + 8009ae8: f000 fc19 bl 800a31e break; - 8009714: e093 b.n 800983e + 8009aec: e093 b.n 8009c16 } pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 8009716: f997 300e ldrsb.w r3, [r7, #14] - 800971a: 2b00 cmp r3, #0 - 800971c: da0b bge.n 8009736 - 800971e: 7bbb ldrb r3, [r7, #14] - 8009720: f003 027f and.w r2, r3, #127 @ 0x7f - 8009724: 4613 mov r3, r2 - 8009726: 009b lsls r3, r3, #2 - 8009728: 4413 add r3, r2 - 800972a: 009b lsls r3, r3, #2 - 800972c: 3310 adds r3, #16 - 800972e: 687a ldr r2, [r7, #4] - 8009730: 4413 add r3, r2 - 8009732: 3304 adds r3, #4 - 8009734: e00b b.n 800974e + 8009aee: f997 300e ldrsb.w r3, [r7, #14] + 8009af2: 2b00 cmp r3, #0 + 8009af4: da0b bge.n 8009b0e + 8009af6: 7bbb ldrb r3, [r7, #14] + 8009af8: f003 027f and.w r2, r3, #127 @ 0x7f + 8009afc: 4613 mov r3, r2 + 8009afe: 009b lsls r3, r3, #2 + 8009b00: 4413 add r3, r2 + 8009b02: 009b lsls r3, r3, #2 + 8009b04: 3310 adds r3, #16 + 8009b06: 687a ldr r2, [r7, #4] + 8009b08: 4413 add r3, r2 + 8009b0a: 3304 adds r3, #4 + 8009b0c: e00b b.n 8009b26 &pdev->ep_out[ep_addr & 0x7FU]; - 8009736: 7bbb ldrb r3, [r7, #14] - 8009738: f003 027f and.w r2, r3, #127 @ 0x7f + 8009b0e: 7bbb ldrb r3, [r7, #14] + 8009b10: f003 027f and.w r2, r3, #127 @ 0x7f pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 800973c: 4613 mov r3, r2 - 800973e: 009b lsls r3, r3, #2 - 8009740: 4413 add r3, r2 - 8009742: 009b lsls r3, r3, #2 - 8009744: f503 73a8 add.w r3, r3, #336 @ 0x150 - 8009748: 687a ldr r2, [r7, #4] - 800974a: 4413 add r3, r2 - 800974c: 3304 adds r3, #4 - 800974e: 60bb str r3, [r7, #8] + 8009b14: 4613 mov r3, r2 + 8009b16: 009b lsls r3, r3, #2 + 8009b18: 4413 add r3, r2 + 8009b1a: 009b lsls r3, r3, #2 + 8009b1c: f503 73a8 add.w r3, r3, #336 @ 0x150 + 8009b20: 687a ldr r2, [r7, #4] + 8009b22: 4413 add r3, r2 + 8009b24: 3304 adds r3, #4 + 8009b26: 60bb str r3, [r7, #8] pep->status = 0x0000U; - 8009750: 68bb ldr r3, [r7, #8] - 8009752: 2200 movs r2, #0 - 8009754: 739a strb r2, [r3, #14] + 8009b28: 68bb ldr r3, [r7, #8] + 8009b2a: 2200 movs r2, #0 + 8009b2c: 739a strb r2, [r3, #14] (void)USBD_CtlSendData(pdev, (uint8_t *)&pep->status, 2U); - 8009756: 68bb ldr r3, [r7, #8] - 8009758: 330e adds r3, #14 - 800975a: 2202 movs r2, #2 - 800975c: 4619 mov r1, r3 - 800975e: 6878 ldr r0, [r7, #4] - 8009760: f000 fc6e bl 800a040 + 8009b2e: 68bb ldr r3, [r7, #8] + 8009b30: 330e adds r3, #14 + 8009b32: 2202 movs r2, #2 + 8009b34: 4619 mov r1, r3 + 8009b36: 6878 ldr r0, [r7, #4] + 8009b38: f000 fc6e bl 800a418 break; - 8009764: e06b b.n 800983e + 8009b3c: e06b b.n 8009c16 case USBD_STATE_CONFIGURED: if ((ep_addr & 0x80U) == 0x80U) - 8009766: f997 300e ldrsb.w r3, [r7, #14] - 800976a: 2b00 cmp r3, #0 - 800976c: da11 bge.n 8009792 + 8009b3e: f997 300e ldrsb.w r3, [r7, #14] + 8009b42: 2b00 cmp r3, #0 + 8009b44: da11 bge.n 8009b6a { if (pdev->ep_in[ep_addr & 0xFU].is_used == 0U) - 800976e: 7bbb ldrb r3, [r7, #14] - 8009770: f003 020f and.w r2, r3, #15 - 8009774: 6879 ldr r1, [r7, #4] - 8009776: 4613 mov r3, r2 - 8009778: 009b lsls r3, r3, #2 - 800977a: 4413 add r3, r2 - 800977c: 009b lsls r3, r3, #2 - 800977e: 440b add r3, r1 - 8009780: 3323 adds r3, #35 @ 0x23 - 8009782: 781b ldrb r3, [r3, #0] - 8009784: 2b00 cmp r3, #0 - 8009786: d117 bne.n 80097b8 + 8009b46: 7bbb ldrb r3, [r7, #14] + 8009b48: f003 020f and.w r2, r3, #15 + 8009b4c: 6879 ldr r1, [r7, #4] + 8009b4e: 4613 mov r3, r2 + 8009b50: 009b lsls r3, r3, #2 + 8009b52: 4413 add r3, r2 + 8009b54: 009b lsls r3, r3, #2 + 8009b56: 440b add r3, r1 + 8009b58: 3323 adds r3, #35 @ 0x23 + 8009b5a: 781b ldrb r3, [r3, #0] + 8009b5c: 2b00 cmp r3, #0 + 8009b5e: d117 bne.n 8009b90 { USBD_CtlError(pdev, req); - 8009788: 6839 ldr r1, [r7, #0] - 800978a: 6878 ldr r0, [r7, #4] - 800978c: f000 fbdb bl 8009f46 + 8009b60: 6839 ldr r1, [r7, #0] + 8009b62: 6878 ldr r0, [r7, #4] + 8009b64: f000 fbdb bl 800a31e break; - 8009790: e055 b.n 800983e + 8009b68: e055 b.n 8009c16 } } else { if (pdev->ep_out[ep_addr & 0xFU].is_used == 0U) - 8009792: 7bbb ldrb r3, [r7, #14] - 8009794: f003 020f and.w r2, r3, #15 - 8009798: 6879 ldr r1, [r7, #4] - 800979a: 4613 mov r3, r2 - 800979c: 009b lsls r3, r3, #2 - 800979e: 4413 add r3, r2 - 80097a0: 009b lsls r3, r3, #2 - 80097a2: 440b add r3, r1 - 80097a4: f203 1363 addw r3, r3, #355 @ 0x163 - 80097a8: 781b ldrb r3, [r3, #0] - 80097aa: 2b00 cmp r3, #0 - 80097ac: d104 bne.n 80097b8 + 8009b6a: 7bbb ldrb r3, [r7, #14] + 8009b6c: f003 020f and.w r2, r3, #15 + 8009b70: 6879 ldr r1, [r7, #4] + 8009b72: 4613 mov r3, r2 + 8009b74: 009b lsls r3, r3, #2 + 8009b76: 4413 add r3, r2 + 8009b78: 009b lsls r3, r3, #2 + 8009b7a: 440b add r3, r1 + 8009b7c: f203 1363 addw r3, r3, #355 @ 0x163 + 8009b80: 781b ldrb r3, [r3, #0] + 8009b82: 2b00 cmp r3, #0 + 8009b84: d104 bne.n 8009b90 { USBD_CtlError(pdev, req); - 80097ae: 6839 ldr r1, [r7, #0] - 80097b0: 6878 ldr r0, [r7, #4] - 80097b2: f000 fbc8 bl 8009f46 + 8009b86: 6839 ldr r1, [r7, #0] + 8009b88: 6878 ldr r0, [r7, #4] + 8009b8a: f000 fbc8 bl 800a31e break; - 80097b6: e042 b.n 800983e + 8009b8e: e042 b.n 8009c16 } } pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 80097b8: f997 300e ldrsb.w r3, [r7, #14] - 80097bc: 2b00 cmp r3, #0 - 80097be: da0b bge.n 80097d8 - 80097c0: 7bbb ldrb r3, [r7, #14] - 80097c2: f003 027f and.w r2, r3, #127 @ 0x7f - 80097c6: 4613 mov r3, r2 - 80097c8: 009b lsls r3, r3, #2 - 80097ca: 4413 add r3, r2 - 80097cc: 009b lsls r3, r3, #2 - 80097ce: 3310 adds r3, #16 - 80097d0: 687a ldr r2, [r7, #4] - 80097d2: 4413 add r3, r2 - 80097d4: 3304 adds r3, #4 - 80097d6: e00b b.n 80097f0 + 8009b90: f997 300e ldrsb.w r3, [r7, #14] + 8009b94: 2b00 cmp r3, #0 + 8009b96: da0b bge.n 8009bb0 + 8009b98: 7bbb ldrb r3, [r7, #14] + 8009b9a: f003 027f and.w r2, r3, #127 @ 0x7f + 8009b9e: 4613 mov r3, r2 + 8009ba0: 009b lsls r3, r3, #2 + 8009ba2: 4413 add r3, r2 + 8009ba4: 009b lsls r3, r3, #2 + 8009ba6: 3310 adds r3, #16 + 8009ba8: 687a ldr r2, [r7, #4] + 8009baa: 4413 add r3, r2 + 8009bac: 3304 adds r3, #4 + 8009bae: e00b b.n 8009bc8 &pdev->ep_out[ep_addr & 0x7FU]; - 80097d8: 7bbb ldrb r3, [r7, #14] - 80097da: f003 027f and.w r2, r3, #127 @ 0x7f + 8009bb0: 7bbb ldrb r3, [r7, #14] + 8009bb2: f003 027f and.w r2, r3, #127 @ 0x7f pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 80097de: 4613 mov r3, r2 - 80097e0: 009b lsls r3, r3, #2 - 80097e2: 4413 add r3, r2 - 80097e4: 009b lsls r3, r3, #2 - 80097e6: f503 73a8 add.w r3, r3, #336 @ 0x150 - 80097ea: 687a ldr r2, [r7, #4] - 80097ec: 4413 add r3, r2 - 80097ee: 3304 adds r3, #4 - 80097f0: 60bb str r3, [r7, #8] + 8009bb6: 4613 mov r3, r2 + 8009bb8: 009b lsls r3, r3, #2 + 8009bba: 4413 add r3, r2 + 8009bbc: 009b lsls r3, r3, #2 + 8009bbe: f503 73a8 add.w r3, r3, #336 @ 0x150 + 8009bc2: 687a ldr r2, [r7, #4] + 8009bc4: 4413 add r3, r2 + 8009bc6: 3304 adds r3, #4 + 8009bc8: 60bb str r3, [r7, #8] if ((ep_addr == 0x00U) || (ep_addr == 0x80U)) - 80097f2: 7bbb ldrb r3, [r7, #14] - 80097f4: 2b00 cmp r3, #0 - 80097f6: d002 beq.n 80097fe - 80097f8: 7bbb ldrb r3, [r7, #14] - 80097fa: 2b80 cmp r3, #128 @ 0x80 - 80097fc: d103 bne.n 8009806 + 8009bca: 7bbb ldrb r3, [r7, #14] + 8009bcc: 2b00 cmp r3, #0 + 8009bce: d002 beq.n 8009bd6 + 8009bd0: 7bbb ldrb r3, [r7, #14] + 8009bd2: 2b80 cmp r3, #128 @ 0x80 + 8009bd4: d103 bne.n 8009bde { pep->status = 0x0000U; - 80097fe: 68bb ldr r3, [r7, #8] - 8009800: 2200 movs r2, #0 - 8009802: 739a strb r2, [r3, #14] - 8009804: e00e b.n 8009824 + 8009bd6: 68bb ldr r3, [r7, #8] + 8009bd8: 2200 movs r2, #0 + 8009bda: 739a strb r2, [r3, #14] + 8009bdc: e00e b.n 8009bfc } else if (USBD_LL_IsStallEP(pdev, ep_addr) != 0U) - 8009806: 7bbb ldrb r3, [r7, #14] - 8009808: 4619 mov r1, r3 - 800980a: 6878 ldr r0, [r7, #4] - 800980c: f001 f80c bl 800a828 - 8009810: 4603 mov r3, r0 - 8009812: 2b00 cmp r3, #0 - 8009814: d003 beq.n 800981e + 8009bde: 7bbb ldrb r3, [r7, #14] + 8009be0: 4619 mov r1, r3 + 8009be2: 6878 ldr r0, [r7, #4] + 8009be4: f001 f80c bl 800ac00 + 8009be8: 4603 mov r3, r0 + 8009bea: 2b00 cmp r3, #0 + 8009bec: d003 beq.n 8009bf6 { pep->status = 0x0001U; - 8009816: 68bb ldr r3, [r7, #8] - 8009818: 2201 movs r2, #1 - 800981a: 739a strb r2, [r3, #14] - 800981c: e002 b.n 8009824 + 8009bee: 68bb ldr r3, [r7, #8] + 8009bf0: 2201 movs r2, #1 + 8009bf2: 739a strb r2, [r3, #14] + 8009bf4: e002 b.n 8009bfc } else { pep->status = 0x0000U; - 800981e: 68bb ldr r3, [r7, #8] - 8009820: 2200 movs r2, #0 - 8009822: 739a strb r2, [r3, #14] + 8009bf6: 68bb ldr r3, [r7, #8] + 8009bf8: 2200 movs r2, #0 + 8009bfa: 739a strb r2, [r3, #14] } (void)USBD_CtlSendData(pdev, (uint8_t *)&pep->status, 2U); - 8009824: 68bb ldr r3, [r7, #8] - 8009826: 330e adds r3, #14 - 8009828: 2202 movs r2, #2 - 800982a: 4619 mov r1, r3 - 800982c: 6878 ldr r0, [r7, #4] - 800982e: f000 fc07 bl 800a040 + 8009bfc: 68bb ldr r3, [r7, #8] + 8009bfe: 330e adds r3, #14 + 8009c00: 2202 movs r2, #2 + 8009c02: 4619 mov r1, r3 + 8009c04: 6878 ldr r0, [r7, #4] + 8009c06: f000 fc07 bl 800a418 break; - 8009832: e004 b.n 800983e + 8009c0a: e004 b.n 8009c16 default: USBD_CtlError(pdev, req); - 8009834: 6839 ldr r1, [r7, #0] - 8009836: 6878 ldr r0, [r7, #4] - 8009838: f000 fb85 bl 8009f46 + 8009c0c: 6839 ldr r1, [r7, #0] + 8009c0e: 6878 ldr r0, [r7, #4] + 8009c10: f000 fb85 bl 800a31e break; - 800983c: bf00 nop + 8009c14: bf00 nop } break; - 800983e: e004 b.n 800984a + 8009c16: e004 b.n 8009c22 default: USBD_CtlError(pdev, req); - 8009840: 6839 ldr r1, [r7, #0] - 8009842: 6878 ldr r0, [r7, #4] - 8009844: f000 fb7f bl 8009f46 + 8009c18: 6839 ldr r1, [r7, #0] + 8009c1a: 6878 ldr r0, [r7, #4] + 8009c1c: f000 fb7f bl 800a31e break; - 8009848: bf00 nop + 8009c20: bf00 nop } break; - 800984a: e005 b.n 8009858 + 8009c22: e005 b.n 8009c30 default: USBD_CtlError(pdev, req); - 800984c: 6839 ldr r1, [r7, #0] - 800984e: 6878 ldr r0, [r7, #4] - 8009850: f000 fb79 bl 8009f46 + 8009c24: 6839 ldr r1, [r7, #0] + 8009c26: 6878 ldr r0, [r7, #4] + 8009c28: f000 fb79 bl 800a31e break; - 8009854: e000 b.n 8009858 + 8009c2c: e000 b.n 8009c30 break; - 8009856: bf00 nop + 8009c2e: bf00 nop } return ret; - 8009858: 7bfb ldrb r3, [r7, #15] + 8009c30: 7bfb ldrb r3, [r7, #15] } - 800985a: 4618 mov r0, r3 - 800985c: 3710 adds r7, #16 - 800985e: 46bd mov sp, r7 - 8009860: bd80 pop {r7, pc} + 8009c32: 4618 mov r0, r3 + 8009c34: 3710 adds r7, #16 + 8009c36: 46bd mov sp, r7 + 8009c38: bd80 pop {r7, pc} ... -08009864 : +08009c3c : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_GetDescriptor(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009864: b580 push {r7, lr} - 8009866: b084 sub sp, #16 - 8009868: af00 add r7, sp, #0 - 800986a: 6078 str r0, [r7, #4] - 800986c: 6039 str r1, [r7, #0] + 8009c3c: b580 push {r7, lr} + 8009c3e: b084 sub sp, #16 + 8009c40: af00 add r7, sp, #0 + 8009c42: 6078 str r0, [r7, #4] + 8009c44: 6039 str r1, [r7, #0] uint16_t len = 0U; - 800986e: 2300 movs r3, #0 - 8009870: 813b strh r3, [r7, #8] + 8009c46: 2300 movs r3, #0 + 8009c48: 813b strh r3, [r7, #8] uint8_t *pbuf = NULL; - 8009872: 2300 movs r3, #0 - 8009874: 60fb str r3, [r7, #12] + 8009c4a: 2300 movs r3, #0 + 8009c4c: 60fb str r3, [r7, #12] uint8_t err = 0U; - 8009876: 2300 movs r3, #0 - 8009878: 72fb strb r3, [r7, #11] + 8009c4e: 2300 movs r3, #0 + 8009c50: 72fb strb r3, [r7, #11] switch (req->wValue >> 8) - 800987a: 683b ldr r3, [r7, #0] - 800987c: 885b ldrh r3, [r3, #2] - 800987e: 0a1b lsrs r3, r3, #8 - 8009880: b29b uxth r3, r3 - 8009882: 3b01 subs r3, #1 - 8009884: 2b0e cmp r3, #14 - 8009886: f200 8152 bhi.w 8009b2e - 800988a: a201 add r2, pc, #4 @ (adr r2, 8009890 ) - 800988c: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8009890: 08009901 .word 0x08009901 - 8009894: 08009919 .word 0x08009919 - 8009898: 08009959 .word 0x08009959 - 800989c: 08009b2f .word 0x08009b2f - 80098a0: 08009b2f .word 0x08009b2f - 80098a4: 08009acf .word 0x08009acf - 80098a8: 08009afb .word 0x08009afb - 80098ac: 08009b2f .word 0x08009b2f - 80098b0: 08009b2f .word 0x08009b2f - 80098b4: 08009b2f .word 0x08009b2f - 80098b8: 08009b2f .word 0x08009b2f - 80098bc: 08009b2f .word 0x08009b2f - 80098c0: 08009b2f .word 0x08009b2f - 80098c4: 08009b2f .word 0x08009b2f - 80098c8: 080098cd .word 0x080098cd + 8009c52: 683b ldr r3, [r7, #0] + 8009c54: 885b ldrh r3, [r3, #2] + 8009c56: 0a1b lsrs r3, r3, #8 + 8009c58: b29b uxth r3, r3 + 8009c5a: 3b01 subs r3, #1 + 8009c5c: 2b0e cmp r3, #14 + 8009c5e: f200 8152 bhi.w 8009f06 + 8009c62: a201 add r2, pc, #4 @ (adr r2, 8009c68 ) + 8009c64: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8009c68: 08009cd9 .word 0x08009cd9 + 8009c6c: 08009cf1 .word 0x08009cf1 + 8009c70: 08009d31 .word 0x08009d31 + 8009c74: 08009f07 .word 0x08009f07 + 8009c78: 08009f07 .word 0x08009f07 + 8009c7c: 08009ea7 .word 0x08009ea7 + 8009c80: 08009ed3 .word 0x08009ed3 + 8009c84: 08009f07 .word 0x08009f07 + 8009c88: 08009f07 .word 0x08009f07 + 8009c8c: 08009f07 .word 0x08009f07 + 8009c90: 08009f07 .word 0x08009f07 + 8009c94: 08009f07 .word 0x08009f07 + 8009c98: 08009f07 .word 0x08009f07 + 8009c9c: 08009f07 .word 0x08009f07 + 8009ca0: 08009ca5 .word 0x08009ca5 { #if ((USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1U)) case USB_DESC_TYPE_BOS: if (pdev->pDesc->GetBOSDescriptor != NULL) - 80098cc: 687b ldr r3, [r7, #4] - 80098ce: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80098d2: 69db ldr r3, [r3, #28] - 80098d4: 2b00 cmp r3, #0 - 80098d6: d00b beq.n 80098f0 + 8009ca4: 687b ldr r3, [r7, #4] + 8009ca6: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009caa: 69db ldr r3, [r3, #28] + 8009cac: 2b00 cmp r3, #0 + 8009cae: d00b beq.n 8009cc8 { pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len); - 80098d8: 687b ldr r3, [r7, #4] - 80098da: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80098de: 69db ldr r3, [r3, #28] - 80098e0: 687a ldr r2, [r7, #4] - 80098e2: 7c12 ldrb r2, [r2, #16] - 80098e4: f107 0108 add.w r1, r7, #8 - 80098e8: 4610 mov r0, r2 - 80098ea: 4798 blx r3 - 80098ec: 60f8 str r0, [r7, #12] + 8009cb0: 687b ldr r3, [r7, #4] + 8009cb2: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009cb6: 69db ldr r3, [r3, #28] + 8009cb8: 687a ldr r2, [r7, #4] + 8009cba: 7c12 ldrb r2, [r2, #16] + 8009cbc: f107 0108 add.w r1, r7, #8 + 8009cc0: 4610 mov r0, r2 + 8009cc2: 4798 blx r3 + 8009cc4: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 80098ee: e126 b.n 8009b3e + 8009cc6: e126 b.n 8009f16 USBD_CtlError(pdev, req); - 80098f0: 6839 ldr r1, [r7, #0] - 80098f2: 6878 ldr r0, [r7, #4] - 80098f4: f000 fb27 bl 8009f46 + 8009cc8: 6839 ldr r1, [r7, #0] + 8009cca: 6878 ldr r0, [r7, #4] + 8009ccc: f000 fb27 bl 800a31e err++; - 80098f8: 7afb ldrb r3, [r7, #11] - 80098fa: 3301 adds r3, #1 - 80098fc: 72fb strb r3, [r7, #11] + 8009cd0: 7afb ldrb r3, [r7, #11] + 8009cd2: 3301 adds r3, #1 + 8009cd4: 72fb strb r3, [r7, #11] break; - 80098fe: e11e b.n 8009b3e + 8009cd6: e11e b.n 8009f16 #endif /* (USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1U) */ case USB_DESC_TYPE_DEVICE: pbuf = pdev->pDesc->GetDeviceDescriptor(pdev->dev_speed, &len); - 8009900: 687b ldr r3, [r7, #4] - 8009902: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009906: 681b ldr r3, [r3, #0] - 8009908: 687a ldr r2, [r7, #4] - 800990a: 7c12 ldrb r2, [r2, #16] - 800990c: f107 0108 add.w r1, r7, #8 - 8009910: 4610 mov r0, r2 - 8009912: 4798 blx r3 - 8009914: 60f8 str r0, [r7, #12] + 8009cd8: 687b ldr r3, [r7, #4] + 8009cda: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009cde: 681b ldr r3, [r3, #0] + 8009ce0: 687a ldr r2, [r7, #4] + 8009ce2: 7c12 ldrb r2, [r2, #16] + 8009ce4: f107 0108 add.w r1, r7, #8 + 8009ce8: 4610 mov r0, r2 + 8009cea: 4798 blx r3 + 8009cec: 60f8 str r0, [r7, #12] break; - 8009916: e112 b.n 8009b3e + 8009cee: e112 b.n 8009f16 case USB_DESC_TYPE_CONFIGURATION: if (pdev->dev_speed == USBD_SPEED_HIGH) - 8009918: 687b ldr r3, [r7, #4] - 800991a: 7c1b ldrb r3, [r3, #16] - 800991c: 2b00 cmp r3, #0 - 800991e: d10d bne.n 800993c + 8009cf0: 687b ldr r3, [r7, #4] + 8009cf2: 7c1b ldrb r3, [r3, #16] + 8009cf4: 2b00 cmp r3, #0 + 8009cf6: d10d bne.n 8009d14 pbuf = (uint8_t *)USBD_CMPSIT.GetHSConfigDescriptor(&len); } else #endif /* USE_USBD_COMPOSITE */ { pbuf = (uint8_t *)pdev->pClass[0]->GetHSConfigDescriptor(&len); - 8009920: 687b ldr r3, [r7, #4] - 8009922: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009926: 6a9b ldr r3, [r3, #40] @ 0x28 - 8009928: f107 0208 add.w r2, r7, #8 - 800992c: 4610 mov r0, r2 - 800992e: 4798 blx r3 - 8009930: 60f8 str r0, [r7, #12] + 8009cf8: 687b ldr r3, [r7, #4] + 8009cfa: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8009cfe: 6a9b ldr r3, [r3, #40] @ 0x28 + 8009d00: f107 0208 add.w r2, r7, #8 + 8009d04: 4610 mov r0, r2 + 8009d06: 4798 blx r3 + 8009d08: 60f8 str r0, [r7, #12] } pbuf[1] = USB_DESC_TYPE_CONFIGURATION; - 8009932: 68fb ldr r3, [r7, #12] - 8009934: 3301 adds r3, #1 - 8009936: 2202 movs r2, #2 - 8009938: 701a strb r2, [r3, #0] + 8009d0a: 68fb ldr r3, [r7, #12] + 8009d0c: 3301 adds r3, #1 + 8009d0e: 2202 movs r2, #2 + 8009d10: 701a strb r2, [r3, #0] { pbuf = (uint8_t *)pdev->pClass[0]->GetFSConfigDescriptor(&len); } pbuf[1] = USB_DESC_TYPE_CONFIGURATION; } break; - 800993a: e100 b.n 8009b3e + 8009d12: e100 b.n 8009f16 pbuf = (uint8_t *)pdev->pClass[0]->GetFSConfigDescriptor(&len); - 800993c: 687b ldr r3, [r7, #4] - 800993e: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009942: 6adb ldr r3, [r3, #44] @ 0x2c - 8009944: f107 0208 add.w r2, r7, #8 - 8009948: 4610 mov r0, r2 - 800994a: 4798 blx r3 - 800994c: 60f8 str r0, [r7, #12] + 8009d14: 687b ldr r3, [r7, #4] + 8009d16: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8009d1a: 6adb ldr r3, [r3, #44] @ 0x2c + 8009d1c: f107 0208 add.w r2, r7, #8 + 8009d20: 4610 mov r0, r2 + 8009d22: 4798 blx r3 + 8009d24: 60f8 str r0, [r7, #12] pbuf[1] = USB_DESC_TYPE_CONFIGURATION; - 800994e: 68fb ldr r3, [r7, #12] - 8009950: 3301 adds r3, #1 - 8009952: 2202 movs r2, #2 - 8009954: 701a strb r2, [r3, #0] + 8009d26: 68fb ldr r3, [r7, #12] + 8009d28: 3301 adds r3, #1 + 8009d2a: 2202 movs r2, #2 + 8009d2c: 701a strb r2, [r3, #0] break; - 8009956: e0f2 b.n 8009b3e + 8009d2e: e0f2 b.n 8009f16 case USB_DESC_TYPE_STRING: switch ((uint8_t)(req->wValue)) - 8009958: 683b ldr r3, [r7, #0] - 800995a: 885b ldrh r3, [r3, #2] - 800995c: b2db uxtb r3, r3 - 800995e: 2b05 cmp r3, #5 - 8009960: f200 80ac bhi.w 8009abc - 8009964: a201 add r2, pc, #4 @ (adr r2, 800996c ) - 8009966: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800996a: bf00 nop - 800996c: 08009985 .word 0x08009985 - 8009970: 080099b9 .word 0x080099b9 - 8009974: 080099ed .word 0x080099ed - 8009978: 08009a21 .word 0x08009a21 - 800997c: 08009a55 .word 0x08009a55 - 8009980: 08009a89 .word 0x08009a89 + 8009d30: 683b ldr r3, [r7, #0] + 8009d32: 885b ldrh r3, [r3, #2] + 8009d34: b2db uxtb r3, r3 + 8009d36: 2b05 cmp r3, #5 + 8009d38: f200 80ac bhi.w 8009e94 + 8009d3c: a201 add r2, pc, #4 @ (adr r2, 8009d44 ) + 8009d3e: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8009d42: bf00 nop + 8009d44: 08009d5d .word 0x08009d5d + 8009d48: 08009d91 .word 0x08009d91 + 8009d4c: 08009dc5 .word 0x08009dc5 + 8009d50: 08009df9 .word 0x08009df9 + 8009d54: 08009e2d .word 0x08009e2d + 8009d58: 08009e61 .word 0x08009e61 { case USBD_IDX_LANGID_STR: if (pdev->pDesc->GetLangIDStrDescriptor != NULL) - 8009984: 687b ldr r3, [r7, #4] - 8009986: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 800998a: 685b ldr r3, [r3, #4] - 800998c: 2b00 cmp r3, #0 - 800998e: d00b beq.n 80099a8 + 8009d5c: 687b ldr r3, [r7, #4] + 8009d5e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009d62: 685b ldr r3, [r3, #4] + 8009d64: 2b00 cmp r3, #0 + 8009d66: d00b beq.n 8009d80 { pbuf = pdev->pDesc->GetLangIDStrDescriptor(pdev->dev_speed, &len); - 8009990: 687b ldr r3, [r7, #4] - 8009992: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009996: 685b ldr r3, [r3, #4] - 8009998: 687a ldr r2, [r7, #4] - 800999a: 7c12 ldrb r2, [r2, #16] - 800999c: f107 0108 add.w r1, r7, #8 - 80099a0: 4610 mov r0, r2 - 80099a2: 4798 blx r3 - 80099a4: 60f8 str r0, [r7, #12] + 8009d68: 687b ldr r3, [r7, #4] + 8009d6a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009d6e: 685b ldr r3, [r3, #4] + 8009d70: 687a ldr r2, [r7, #4] + 8009d72: 7c12 ldrb r2, [r2, #16] + 8009d74: f107 0108 add.w r1, r7, #8 + 8009d78: 4610 mov r0, r2 + 8009d7a: 4798 blx r3 + 8009d7c: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 80099a6: e091 b.n 8009acc + 8009d7e: e091 b.n 8009ea4 USBD_CtlError(pdev, req); - 80099a8: 6839 ldr r1, [r7, #0] - 80099aa: 6878 ldr r0, [r7, #4] - 80099ac: f000 facb bl 8009f46 + 8009d80: 6839 ldr r1, [r7, #0] + 8009d82: 6878 ldr r0, [r7, #4] + 8009d84: f000 facb bl 800a31e err++; - 80099b0: 7afb ldrb r3, [r7, #11] - 80099b2: 3301 adds r3, #1 - 80099b4: 72fb strb r3, [r7, #11] + 8009d88: 7afb ldrb r3, [r7, #11] + 8009d8a: 3301 adds r3, #1 + 8009d8c: 72fb strb r3, [r7, #11] break; - 80099b6: e089 b.n 8009acc + 8009d8e: e089 b.n 8009ea4 case USBD_IDX_MFC_STR: if (pdev->pDesc->GetManufacturerStrDescriptor != NULL) - 80099b8: 687b ldr r3, [r7, #4] - 80099ba: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099be: 689b ldr r3, [r3, #8] - 80099c0: 2b00 cmp r3, #0 - 80099c2: d00b beq.n 80099dc + 8009d90: 687b ldr r3, [r7, #4] + 8009d92: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009d96: 689b ldr r3, [r3, #8] + 8009d98: 2b00 cmp r3, #0 + 8009d9a: d00b beq.n 8009db4 { pbuf = pdev->pDesc->GetManufacturerStrDescriptor(pdev->dev_speed, &len); - 80099c4: 687b ldr r3, [r7, #4] - 80099c6: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099ca: 689b ldr r3, [r3, #8] - 80099cc: 687a ldr r2, [r7, #4] - 80099ce: 7c12 ldrb r2, [r2, #16] - 80099d0: f107 0108 add.w r1, r7, #8 - 80099d4: 4610 mov r0, r2 - 80099d6: 4798 blx r3 - 80099d8: 60f8 str r0, [r7, #12] + 8009d9c: 687b ldr r3, [r7, #4] + 8009d9e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009da2: 689b ldr r3, [r3, #8] + 8009da4: 687a ldr r2, [r7, #4] + 8009da6: 7c12 ldrb r2, [r2, #16] + 8009da8: f107 0108 add.w r1, r7, #8 + 8009dac: 4610 mov r0, r2 + 8009dae: 4798 blx r3 + 8009db0: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 80099da: e077 b.n 8009acc + 8009db2: e077 b.n 8009ea4 USBD_CtlError(pdev, req); - 80099dc: 6839 ldr r1, [r7, #0] - 80099de: 6878 ldr r0, [r7, #4] - 80099e0: f000 fab1 bl 8009f46 + 8009db4: 6839 ldr r1, [r7, #0] + 8009db6: 6878 ldr r0, [r7, #4] + 8009db8: f000 fab1 bl 800a31e err++; - 80099e4: 7afb ldrb r3, [r7, #11] - 80099e6: 3301 adds r3, #1 - 80099e8: 72fb strb r3, [r7, #11] + 8009dbc: 7afb ldrb r3, [r7, #11] + 8009dbe: 3301 adds r3, #1 + 8009dc0: 72fb strb r3, [r7, #11] break; - 80099ea: e06f b.n 8009acc + 8009dc2: e06f b.n 8009ea4 case USBD_IDX_PRODUCT_STR: if (pdev->pDesc->GetProductStrDescriptor != NULL) - 80099ec: 687b ldr r3, [r7, #4] - 80099ee: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099f2: 68db ldr r3, [r3, #12] - 80099f4: 2b00 cmp r3, #0 - 80099f6: d00b beq.n 8009a10 + 8009dc4: 687b ldr r3, [r7, #4] + 8009dc6: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009dca: 68db ldr r3, [r3, #12] + 8009dcc: 2b00 cmp r3, #0 + 8009dce: d00b beq.n 8009de8 { pbuf = pdev->pDesc->GetProductStrDescriptor(pdev->dev_speed, &len); - 80099f8: 687b ldr r3, [r7, #4] - 80099fa: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099fe: 68db ldr r3, [r3, #12] - 8009a00: 687a ldr r2, [r7, #4] - 8009a02: 7c12 ldrb r2, [r2, #16] - 8009a04: f107 0108 add.w r1, r7, #8 - 8009a08: 4610 mov r0, r2 - 8009a0a: 4798 blx r3 - 8009a0c: 60f8 str r0, [r7, #12] + 8009dd0: 687b ldr r3, [r7, #4] + 8009dd2: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009dd6: 68db ldr r3, [r3, #12] + 8009dd8: 687a ldr r2, [r7, #4] + 8009dda: 7c12 ldrb r2, [r2, #16] + 8009ddc: f107 0108 add.w r1, r7, #8 + 8009de0: 4610 mov r0, r2 + 8009de2: 4798 blx r3 + 8009de4: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009a0e: e05d b.n 8009acc + 8009de6: e05d b.n 8009ea4 USBD_CtlError(pdev, req); - 8009a10: 6839 ldr r1, [r7, #0] - 8009a12: 6878 ldr r0, [r7, #4] - 8009a14: f000 fa97 bl 8009f46 + 8009de8: 6839 ldr r1, [r7, #0] + 8009dea: 6878 ldr r0, [r7, #4] + 8009dec: f000 fa97 bl 800a31e err++; - 8009a18: 7afb ldrb r3, [r7, #11] - 8009a1a: 3301 adds r3, #1 - 8009a1c: 72fb strb r3, [r7, #11] + 8009df0: 7afb ldrb r3, [r7, #11] + 8009df2: 3301 adds r3, #1 + 8009df4: 72fb strb r3, [r7, #11] break; - 8009a1e: e055 b.n 8009acc + 8009df6: e055 b.n 8009ea4 case USBD_IDX_SERIAL_STR: if (pdev->pDesc->GetSerialStrDescriptor != NULL) - 8009a20: 687b ldr r3, [r7, #4] - 8009a22: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a26: 691b ldr r3, [r3, #16] - 8009a28: 2b00 cmp r3, #0 - 8009a2a: d00b beq.n 8009a44 + 8009df8: 687b ldr r3, [r7, #4] + 8009dfa: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009dfe: 691b ldr r3, [r3, #16] + 8009e00: 2b00 cmp r3, #0 + 8009e02: d00b beq.n 8009e1c { pbuf = pdev->pDesc->GetSerialStrDescriptor(pdev->dev_speed, &len); - 8009a2c: 687b ldr r3, [r7, #4] - 8009a2e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a32: 691b ldr r3, [r3, #16] - 8009a34: 687a ldr r2, [r7, #4] - 8009a36: 7c12 ldrb r2, [r2, #16] - 8009a38: f107 0108 add.w r1, r7, #8 - 8009a3c: 4610 mov r0, r2 - 8009a3e: 4798 blx r3 - 8009a40: 60f8 str r0, [r7, #12] + 8009e04: 687b ldr r3, [r7, #4] + 8009e06: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009e0a: 691b ldr r3, [r3, #16] + 8009e0c: 687a ldr r2, [r7, #4] + 8009e0e: 7c12 ldrb r2, [r2, #16] + 8009e10: f107 0108 add.w r1, r7, #8 + 8009e14: 4610 mov r0, r2 + 8009e16: 4798 blx r3 + 8009e18: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009a42: e043 b.n 8009acc + 8009e1a: e043 b.n 8009ea4 USBD_CtlError(pdev, req); - 8009a44: 6839 ldr r1, [r7, #0] - 8009a46: 6878 ldr r0, [r7, #4] - 8009a48: f000 fa7d bl 8009f46 + 8009e1c: 6839 ldr r1, [r7, #0] + 8009e1e: 6878 ldr r0, [r7, #4] + 8009e20: f000 fa7d bl 800a31e err++; - 8009a4c: 7afb ldrb r3, [r7, #11] - 8009a4e: 3301 adds r3, #1 - 8009a50: 72fb strb r3, [r7, #11] + 8009e24: 7afb ldrb r3, [r7, #11] + 8009e26: 3301 adds r3, #1 + 8009e28: 72fb strb r3, [r7, #11] break; - 8009a52: e03b b.n 8009acc + 8009e2a: e03b b.n 8009ea4 case USBD_IDX_CONFIG_STR: if (pdev->pDesc->GetConfigurationStrDescriptor != NULL) - 8009a54: 687b ldr r3, [r7, #4] - 8009a56: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a5a: 695b ldr r3, [r3, #20] - 8009a5c: 2b00 cmp r3, #0 - 8009a5e: d00b beq.n 8009a78 + 8009e2c: 687b ldr r3, [r7, #4] + 8009e2e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009e32: 695b ldr r3, [r3, #20] + 8009e34: 2b00 cmp r3, #0 + 8009e36: d00b beq.n 8009e50 { pbuf = pdev->pDesc->GetConfigurationStrDescriptor(pdev->dev_speed, &len); - 8009a60: 687b ldr r3, [r7, #4] - 8009a62: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a66: 695b ldr r3, [r3, #20] - 8009a68: 687a ldr r2, [r7, #4] - 8009a6a: 7c12 ldrb r2, [r2, #16] - 8009a6c: f107 0108 add.w r1, r7, #8 - 8009a70: 4610 mov r0, r2 - 8009a72: 4798 blx r3 - 8009a74: 60f8 str r0, [r7, #12] + 8009e38: 687b ldr r3, [r7, #4] + 8009e3a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009e3e: 695b ldr r3, [r3, #20] + 8009e40: 687a ldr r2, [r7, #4] + 8009e42: 7c12 ldrb r2, [r2, #16] + 8009e44: f107 0108 add.w r1, r7, #8 + 8009e48: 4610 mov r0, r2 + 8009e4a: 4798 blx r3 + 8009e4c: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009a76: e029 b.n 8009acc + 8009e4e: e029 b.n 8009ea4 USBD_CtlError(pdev, req); - 8009a78: 6839 ldr r1, [r7, #0] - 8009a7a: 6878 ldr r0, [r7, #4] - 8009a7c: f000 fa63 bl 8009f46 + 8009e50: 6839 ldr r1, [r7, #0] + 8009e52: 6878 ldr r0, [r7, #4] + 8009e54: f000 fa63 bl 800a31e err++; - 8009a80: 7afb ldrb r3, [r7, #11] - 8009a82: 3301 adds r3, #1 - 8009a84: 72fb strb r3, [r7, #11] + 8009e58: 7afb ldrb r3, [r7, #11] + 8009e5a: 3301 adds r3, #1 + 8009e5c: 72fb strb r3, [r7, #11] break; - 8009a86: e021 b.n 8009acc + 8009e5e: e021 b.n 8009ea4 case USBD_IDX_INTERFACE_STR: if (pdev->pDesc->GetInterfaceStrDescriptor != NULL) - 8009a88: 687b ldr r3, [r7, #4] - 8009a8a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a8e: 699b ldr r3, [r3, #24] - 8009a90: 2b00 cmp r3, #0 - 8009a92: d00b beq.n 8009aac + 8009e60: 687b ldr r3, [r7, #4] + 8009e62: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009e66: 699b ldr r3, [r3, #24] + 8009e68: 2b00 cmp r3, #0 + 8009e6a: d00b beq.n 8009e84 { pbuf = pdev->pDesc->GetInterfaceStrDescriptor(pdev->dev_speed, &len); - 8009a94: 687b ldr r3, [r7, #4] - 8009a96: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a9a: 699b ldr r3, [r3, #24] - 8009a9c: 687a ldr r2, [r7, #4] - 8009a9e: 7c12 ldrb r2, [r2, #16] - 8009aa0: f107 0108 add.w r1, r7, #8 - 8009aa4: 4610 mov r0, r2 - 8009aa6: 4798 blx r3 - 8009aa8: 60f8 str r0, [r7, #12] + 8009e6c: 687b ldr r3, [r7, #4] + 8009e6e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009e72: 699b ldr r3, [r3, #24] + 8009e74: 687a ldr r2, [r7, #4] + 8009e76: 7c12 ldrb r2, [r2, #16] + 8009e78: f107 0108 add.w r1, r7, #8 + 8009e7c: 4610 mov r0, r2 + 8009e7e: 4798 blx r3 + 8009e80: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009aaa: e00f b.n 8009acc + 8009e82: e00f b.n 8009ea4 USBD_CtlError(pdev, req); - 8009aac: 6839 ldr r1, [r7, #0] - 8009aae: 6878 ldr r0, [r7, #4] - 8009ab0: f000 fa49 bl 8009f46 + 8009e84: 6839 ldr r1, [r7, #0] + 8009e86: 6878 ldr r0, [r7, #4] + 8009e88: f000 fa49 bl 800a31e err++; - 8009ab4: 7afb ldrb r3, [r7, #11] - 8009ab6: 3301 adds r3, #1 - 8009ab8: 72fb strb r3, [r7, #11] + 8009e8c: 7afb ldrb r3, [r7, #11] + 8009e8e: 3301 adds r3, #1 + 8009e90: 72fb strb r3, [r7, #11] break; - 8009aba: e007 b.n 8009acc + 8009e92: e007 b.n 8009ea4 err++; } #endif /* USBD_SUPPORT_USER_STRING_DESC */ #if ((USBD_CLASS_USER_STRING_DESC == 0U) && (USBD_SUPPORT_USER_STRING_DESC == 0U)) USBD_CtlError(pdev, req); - 8009abc: 6839 ldr r1, [r7, #0] - 8009abe: 6878 ldr r0, [r7, #4] - 8009ac0: f000 fa41 bl 8009f46 + 8009e94: 6839 ldr r1, [r7, #0] + 8009e96: 6878 ldr r0, [r7, #4] + 8009e98: f000 fa41 bl 800a31e err++; - 8009ac4: 7afb ldrb r3, [r7, #11] - 8009ac6: 3301 adds r3, #1 - 8009ac8: 72fb strb r3, [r7, #11] + 8009e9c: 7afb ldrb r3, [r7, #11] + 8009e9e: 3301 adds r3, #1 + 8009ea0: 72fb strb r3, [r7, #11] #endif /* (USBD_CLASS_USER_STRING_DESC == 0U) && (USBD_SUPPORT_USER_STRING_DESC == 0U) */ break; - 8009aca: bf00 nop + 8009ea2: bf00 nop } break; - 8009acc: e037 b.n 8009b3e + 8009ea4: e037 b.n 8009f16 case USB_DESC_TYPE_DEVICE_QUALIFIER: if (pdev->dev_speed == USBD_SPEED_HIGH) - 8009ace: 687b ldr r3, [r7, #4] - 8009ad0: 7c1b ldrb r3, [r3, #16] - 8009ad2: 2b00 cmp r3, #0 - 8009ad4: d109 bne.n 8009aea + 8009ea6: 687b ldr r3, [r7, #4] + 8009ea8: 7c1b ldrb r3, [r3, #16] + 8009eaa: 2b00 cmp r3, #0 + 8009eac: d109 bne.n 8009ec2 pbuf = (uint8_t *)USBD_CMPSIT.GetDeviceQualifierDescriptor(&len); } else #endif /* USE_USBD_COMPOSITE */ { pbuf = (uint8_t *)pdev->pClass[0]->GetDeviceQualifierDescriptor(&len); - 8009ad6: 687b ldr r3, [r7, #4] - 8009ad8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009adc: 6b5b ldr r3, [r3, #52] @ 0x34 - 8009ade: f107 0208 add.w r2, r7, #8 - 8009ae2: 4610 mov r0, r2 - 8009ae4: 4798 blx r3 - 8009ae6: 60f8 str r0, [r7, #12] + 8009eae: 687b ldr r3, [r7, #4] + 8009eb0: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8009eb4: 6b5b ldr r3, [r3, #52] @ 0x34 + 8009eb6: f107 0208 add.w r2, r7, #8 + 8009eba: 4610 mov r0, r2 + 8009ebc: 4798 blx r3 + 8009ebe: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009ae8: e029 b.n 8009b3e + 8009ec0: e029 b.n 8009f16 USBD_CtlError(pdev, req); - 8009aea: 6839 ldr r1, [r7, #0] - 8009aec: 6878 ldr r0, [r7, #4] - 8009aee: f000 fa2a bl 8009f46 + 8009ec2: 6839 ldr r1, [r7, #0] + 8009ec4: 6878 ldr r0, [r7, #4] + 8009ec6: f000 fa2a bl 800a31e err++; - 8009af2: 7afb ldrb r3, [r7, #11] - 8009af4: 3301 adds r3, #1 - 8009af6: 72fb strb r3, [r7, #11] + 8009eca: 7afb ldrb r3, [r7, #11] + 8009ecc: 3301 adds r3, #1 + 8009ece: 72fb strb r3, [r7, #11] break; - 8009af8: e021 b.n 8009b3e + 8009ed0: e021 b.n 8009f16 case USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION: if (pdev->dev_speed == USBD_SPEED_HIGH) - 8009afa: 687b ldr r3, [r7, #4] - 8009afc: 7c1b ldrb r3, [r3, #16] - 8009afe: 2b00 cmp r3, #0 - 8009b00: d10d bne.n 8009b1e + 8009ed2: 687b ldr r3, [r7, #4] + 8009ed4: 7c1b ldrb r3, [r3, #16] + 8009ed6: 2b00 cmp r3, #0 + 8009ed8: d10d bne.n 8009ef6 pbuf = (uint8_t *)USBD_CMPSIT.GetOtherSpeedConfigDescriptor(&len); } else #endif /* USE_USBD_COMPOSITE */ { pbuf = (uint8_t *)pdev->pClass[0]->GetOtherSpeedConfigDescriptor(&len); - 8009b02: 687b ldr r3, [r7, #4] - 8009b04: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009b08: 6b1b ldr r3, [r3, #48] @ 0x30 - 8009b0a: f107 0208 add.w r2, r7, #8 - 8009b0e: 4610 mov r0, r2 - 8009b10: 4798 blx r3 - 8009b12: 60f8 str r0, [r7, #12] + 8009eda: 687b ldr r3, [r7, #4] + 8009edc: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8009ee0: 6b1b ldr r3, [r3, #48] @ 0x30 + 8009ee2: f107 0208 add.w r2, r7, #8 + 8009ee6: 4610 mov r0, r2 + 8009ee8: 4798 blx r3 + 8009eea: 60f8 str r0, [r7, #12] } pbuf[1] = USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION; - 8009b14: 68fb ldr r3, [r7, #12] - 8009b16: 3301 adds r3, #1 - 8009b18: 2207 movs r2, #7 - 8009b1a: 701a strb r2, [r3, #0] + 8009eec: 68fb ldr r3, [r7, #12] + 8009eee: 3301 adds r3, #1 + 8009ef0: 2207 movs r2, #7 + 8009ef2: 701a strb r2, [r3, #0] else { USBD_CtlError(pdev, req); err++; } break; - 8009b1c: e00f b.n 8009b3e + 8009ef4: e00f b.n 8009f16 USBD_CtlError(pdev, req); - 8009b1e: 6839 ldr r1, [r7, #0] - 8009b20: 6878 ldr r0, [r7, #4] - 8009b22: f000 fa10 bl 8009f46 + 8009ef6: 6839 ldr r1, [r7, #0] + 8009ef8: 6878 ldr r0, [r7, #4] + 8009efa: f000 fa10 bl 800a31e err++; - 8009b26: 7afb ldrb r3, [r7, #11] - 8009b28: 3301 adds r3, #1 - 8009b2a: 72fb strb r3, [r7, #11] + 8009efe: 7afb ldrb r3, [r7, #11] + 8009f00: 3301 adds r3, #1 + 8009f02: 72fb strb r3, [r7, #11] break; - 8009b2c: e007 b.n 8009b3e + 8009f04: e007 b.n 8009f16 default: USBD_CtlError(pdev, req); - 8009b2e: 6839 ldr r1, [r7, #0] - 8009b30: 6878 ldr r0, [r7, #4] - 8009b32: f000 fa08 bl 8009f46 + 8009f06: 6839 ldr r1, [r7, #0] + 8009f08: 6878 ldr r0, [r7, #4] + 8009f0a: f000 fa08 bl 800a31e err++; - 8009b36: 7afb ldrb r3, [r7, #11] - 8009b38: 3301 adds r3, #1 - 8009b3a: 72fb strb r3, [r7, #11] + 8009f0e: 7afb ldrb r3, [r7, #11] + 8009f10: 3301 adds r3, #1 + 8009f12: 72fb strb r3, [r7, #11] break; - 8009b3c: bf00 nop + 8009f14: bf00 nop } if (err != 0U) - 8009b3e: 7afb ldrb r3, [r7, #11] - 8009b40: 2b00 cmp r3, #0 - 8009b42: d11e bne.n 8009b82 + 8009f16: 7afb ldrb r3, [r7, #11] + 8009f18: 2b00 cmp r3, #0 + 8009f1a: d11e bne.n 8009f5a { return; } if (req->wLength != 0U) - 8009b44: 683b ldr r3, [r7, #0] - 8009b46: 88db ldrh r3, [r3, #6] - 8009b48: 2b00 cmp r3, #0 - 8009b4a: d016 beq.n 8009b7a + 8009f1c: 683b ldr r3, [r7, #0] + 8009f1e: 88db ldrh r3, [r3, #6] + 8009f20: 2b00 cmp r3, #0 + 8009f22: d016 beq.n 8009f52 { if (len != 0U) - 8009b4c: 893b ldrh r3, [r7, #8] - 8009b4e: 2b00 cmp r3, #0 - 8009b50: d00e beq.n 8009b70 + 8009f24: 893b ldrh r3, [r7, #8] + 8009f26: 2b00 cmp r3, #0 + 8009f28: d00e beq.n 8009f48 { len = MIN(len, req->wLength); - 8009b52: 683b ldr r3, [r7, #0] - 8009b54: 88da ldrh r2, [r3, #6] - 8009b56: 893b ldrh r3, [r7, #8] - 8009b58: 4293 cmp r3, r2 - 8009b5a: bf28 it cs - 8009b5c: 4613 movcs r3, r2 - 8009b5e: b29b uxth r3, r3 - 8009b60: 813b strh r3, [r7, #8] + 8009f2a: 683b ldr r3, [r7, #0] + 8009f2c: 88da ldrh r2, [r3, #6] + 8009f2e: 893b ldrh r3, [r7, #8] + 8009f30: 4293 cmp r3, r2 + 8009f32: bf28 it cs + 8009f34: 4613 movcs r3, r2 + 8009f36: b29b uxth r3, r3 + 8009f38: 813b strh r3, [r7, #8] (void)USBD_CtlSendData(pdev, pbuf, len); - 8009b62: 893b ldrh r3, [r7, #8] - 8009b64: 461a mov r2, r3 - 8009b66: 68f9 ldr r1, [r7, #12] - 8009b68: 6878 ldr r0, [r7, #4] - 8009b6a: f000 fa69 bl 800a040 - 8009b6e: e009 b.n 8009b84 + 8009f3a: 893b ldrh r3, [r7, #8] + 8009f3c: 461a mov r2, r3 + 8009f3e: 68f9 ldr r1, [r7, #12] + 8009f40: 6878 ldr r0, [r7, #4] + 8009f42: f000 fa69 bl 800a418 + 8009f46: e009 b.n 8009f5c } else { USBD_CtlError(pdev, req); - 8009b70: 6839 ldr r1, [r7, #0] - 8009b72: 6878 ldr r0, [r7, #4] - 8009b74: f000 f9e7 bl 8009f46 - 8009b78: e004 b.n 8009b84 + 8009f48: 6839 ldr r1, [r7, #0] + 8009f4a: 6878 ldr r0, [r7, #4] + 8009f4c: f000 f9e7 bl 800a31e + 8009f50: e004 b.n 8009f5c } } else { (void)USBD_CtlSendStatus(pdev); - 8009b7a: 6878 ldr r0, [r7, #4] - 8009b7c: f000 faa0 bl 800a0c0 - 8009b80: e000 b.n 8009b84 + 8009f52: 6878 ldr r0, [r7, #4] + 8009f54: f000 faa0 bl 800a498 + 8009f58: e000 b.n 8009f5c return; - 8009b82: bf00 nop + 8009f5a: bf00 nop } } - 8009b84: 3710 adds r7, #16 - 8009b86: 46bd mov sp, r7 - 8009b88: bd80 pop {r7, pc} - 8009b8a: bf00 nop + 8009f5c: 3710 adds r7, #16 + 8009f5e: 46bd mov sp, r7 + 8009f60: bd80 pop {r7, pc} + 8009f62: bf00 nop -08009b8c : +08009f64 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_SetAddress(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009b8c: b580 push {r7, lr} - 8009b8e: b084 sub sp, #16 - 8009b90: af00 add r7, sp, #0 - 8009b92: 6078 str r0, [r7, #4] - 8009b94: 6039 str r1, [r7, #0] + 8009f64: b580 push {r7, lr} + 8009f66: b084 sub sp, #16 + 8009f68: af00 add r7, sp, #0 + 8009f6a: 6078 str r0, [r7, #4] + 8009f6c: 6039 str r1, [r7, #0] uint8_t dev_addr; if ((req->wIndex == 0U) && (req->wLength == 0U) && (req->wValue < 128U)) - 8009b96: 683b ldr r3, [r7, #0] - 8009b98: 889b ldrh r3, [r3, #4] - 8009b9a: 2b00 cmp r3, #0 - 8009b9c: d131 bne.n 8009c02 - 8009b9e: 683b ldr r3, [r7, #0] - 8009ba0: 88db ldrh r3, [r3, #6] - 8009ba2: 2b00 cmp r3, #0 - 8009ba4: d12d bne.n 8009c02 - 8009ba6: 683b ldr r3, [r7, #0] - 8009ba8: 885b ldrh r3, [r3, #2] - 8009baa: 2b7f cmp r3, #127 @ 0x7f - 8009bac: d829 bhi.n 8009c02 + 8009f6e: 683b ldr r3, [r7, #0] + 8009f70: 889b ldrh r3, [r3, #4] + 8009f72: 2b00 cmp r3, #0 + 8009f74: d131 bne.n 8009fda + 8009f76: 683b ldr r3, [r7, #0] + 8009f78: 88db ldrh r3, [r3, #6] + 8009f7a: 2b00 cmp r3, #0 + 8009f7c: d12d bne.n 8009fda + 8009f7e: 683b ldr r3, [r7, #0] + 8009f80: 885b ldrh r3, [r3, #2] + 8009f82: 2b7f cmp r3, #127 @ 0x7f + 8009f84: d829 bhi.n 8009fda { dev_addr = (uint8_t)(req->wValue) & 0x7FU; - 8009bae: 683b ldr r3, [r7, #0] - 8009bb0: 885b ldrh r3, [r3, #2] - 8009bb2: b2db uxtb r3, r3 - 8009bb4: f003 037f and.w r3, r3, #127 @ 0x7f - 8009bb8: 73fb strb r3, [r7, #15] + 8009f86: 683b ldr r3, [r7, #0] + 8009f88: 885b ldrh r3, [r3, #2] + 8009f8a: b2db uxtb r3, r3 + 8009f8c: f003 037f and.w r3, r3, #127 @ 0x7f + 8009f90: 73fb strb r3, [r7, #15] if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009bba: 687b ldr r3, [r7, #4] - 8009bbc: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009bc0: b2db uxtb r3, r3 - 8009bc2: 2b03 cmp r3, #3 - 8009bc4: d104 bne.n 8009bd0 + 8009f92: 687b ldr r3, [r7, #4] + 8009f94: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009f98: b2db uxtb r3, r3 + 8009f9a: 2b03 cmp r3, #3 + 8009f9c: d104 bne.n 8009fa8 { USBD_CtlError(pdev, req); - 8009bc6: 6839 ldr r1, [r7, #0] - 8009bc8: 6878 ldr r0, [r7, #4] - 8009bca: f000 f9bc bl 8009f46 + 8009f9e: 6839 ldr r1, [r7, #0] + 8009fa0: 6878 ldr r0, [r7, #4] + 8009fa2: f000 f9bc bl 800a31e if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009bce: e01d b.n 8009c0c + 8009fa6: e01d b.n 8009fe4 } else { pdev->dev_address = dev_addr; - 8009bd0: 687b ldr r3, [r7, #4] - 8009bd2: 7bfa ldrb r2, [r7, #15] - 8009bd4: f883 229e strb.w r2, [r3, #670] @ 0x29e + 8009fa8: 687b ldr r3, [r7, #4] + 8009faa: 7bfa ldrb r2, [r7, #15] + 8009fac: f883 229e strb.w r2, [r3, #670] @ 0x29e (void)USBD_LL_SetUSBAddress(pdev, dev_addr); - 8009bd8: 7bfb ldrb r3, [r7, #15] - 8009bda: 4619 mov r1, r3 - 8009bdc: 6878 ldr r0, [r7, #4] - 8009bde: f000 fe4f bl 800a880 + 8009fb0: 7bfb ldrb r3, [r7, #15] + 8009fb2: 4619 mov r1, r3 + 8009fb4: 6878 ldr r0, [r7, #4] + 8009fb6: f000 fe4f bl 800ac58 (void)USBD_CtlSendStatus(pdev); - 8009be2: 6878 ldr r0, [r7, #4] - 8009be4: f000 fa6c bl 800a0c0 + 8009fba: 6878 ldr r0, [r7, #4] + 8009fbc: f000 fa6c bl 800a498 if (dev_addr != 0U) - 8009be8: 7bfb ldrb r3, [r7, #15] - 8009bea: 2b00 cmp r3, #0 - 8009bec: d004 beq.n 8009bf8 + 8009fc0: 7bfb ldrb r3, [r7, #15] + 8009fc2: 2b00 cmp r3, #0 + 8009fc4: d004 beq.n 8009fd0 { pdev->dev_state = USBD_STATE_ADDRESSED; - 8009bee: 687b ldr r3, [r7, #4] - 8009bf0: 2202 movs r2, #2 - 8009bf2: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009fc6: 687b ldr r3, [r7, #4] + 8009fc8: 2202 movs r2, #2 + 8009fca: f883 229c strb.w r2, [r3, #668] @ 0x29c if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009bf6: e009 b.n 8009c0c + 8009fce: e009 b.n 8009fe4 } else { pdev->dev_state = USBD_STATE_DEFAULT; - 8009bf8: 687b ldr r3, [r7, #4] - 8009bfa: 2201 movs r2, #1 - 8009bfc: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009fd0: 687b ldr r3, [r7, #4] + 8009fd2: 2201 movs r2, #1 + 8009fd4: f883 229c strb.w r2, [r3, #668] @ 0x29c if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009c00: e004 b.n 8009c0c + 8009fd8: e004 b.n 8009fe4 } } } else { USBD_CtlError(pdev, req); - 8009c02: 6839 ldr r1, [r7, #0] - 8009c04: 6878 ldr r0, [r7, #4] - 8009c06: f000 f99e bl 8009f46 + 8009fda: 6839 ldr r1, [r7, #0] + 8009fdc: 6878 ldr r0, [r7, #4] + 8009fde: f000 f99e bl 800a31e } } - 8009c0a: bf00 nop - 8009c0c: bf00 nop - 8009c0e: 3710 adds r7, #16 - 8009c10: 46bd mov sp, r7 - 8009c12: bd80 pop {r7, pc} + 8009fe2: bf00 nop + 8009fe4: bf00 nop + 8009fe6: 3710 adds r7, #16 + 8009fe8: 46bd mov sp, r7 + 8009fea: bd80 pop {r7, pc} -08009c14 : +08009fec : * @param pdev: device instance * @param req: usb request * @retval status */ static USBD_StatusTypeDef USBD_SetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009c14: b580 push {r7, lr} - 8009c16: b084 sub sp, #16 - 8009c18: af00 add r7, sp, #0 - 8009c1a: 6078 str r0, [r7, #4] - 8009c1c: 6039 str r1, [r7, #0] + 8009fec: b580 push {r7, lr} + 8009fee: b084 sub sp, #16 + 8009ff0: af00 add r7, sp, #0 + 8009ff2: 6078 str r0, [r7, #4] + 8009ff4: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret = USBD_OK; - 8009c1e: 2300 movs r3, #0 - 8009c20: 73fb strb r3, [r7, #15] + 8009ff6: 2300 movs r3, #0 + 8009ff8: 73fb strb r3, [r7, #15] static uint8_t cfgidx; cfgidx = (uint8_t)(req->wValue); - 8009c22: 683b ldr r3, [r7, #0] - 8009c24: 885b ldrh r3, [r3, #2] - 8009c26: b2da uxtb r2, r3 - 8009c28: 4b4e ldr r3, [pc, #312] @ (8009d64 ) - 8009c2a: 701a strb r2, [r3, #0] + 8009ffa: 683b ldr r3, [r7, #0] + 8009ffc: 885b ldrh r3, [r3, #2] + 8009ffe: b2da uxtb r2, r3 + 800a000: 4b4e ldr r3, [pc, #312] @ (800a13c ) + 800a002: 701a strb r2, [r3, #0] if (cfgidx > USBD_MAX_NUM_CONFIGURATION) - 8009c2c: 4b4d ldr r3, [pc, #308] @ (8009d64 ) - 8009c2e: 781b ldrb r3, [r3, #0] - 8009c30: 2b01 cmp r3, #1 - 8009c32: d905 bls.n 8009c40 + 800a004: 4b4d ldr r3, [pc, #308] @ (800a13c ) + 800a006: 781b ldrb r3, [r3, #0] + 800a008: 2b01 cmp r3, #1 + 800a00a: d905 bls.n 800a018 { USBD_CtlError(pdev, req); - 8009c34: 6839 ldr r1, [r7, #0] - 8009c36: 6878 ldr r0, [r7, #4] - 8009c38: f000 f985 bl 8009f46 + 800a00c: 6839 ldr r1, [r7, #0] + 800a00e: 6878 ldr r0, [r7, #4] + 800a010: f000 f985 bl 800a31e return USBD_FAIL; - 8009c3c: 2303 movs r3, #3 - 8009c3e: e08c b.n 8009d5a + 800a014: 2303 movs r3, #3 + 800a016: e08c b.n 800a132 } switch (pdev->dev_state) - 8009c40: 687b ldr r3, [r7, #4] - 8009c42: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009c46: b2db uxtb r3, r3 - 8009c48: 2b02 cmp r3, #2 - 8009c4a: d002 beq.n 8009c52 - 8009c4c: 2b03 cmp r3, #3 - 8009c4e: d029 beq.n 8009ca4 - 8009c50: e075 b.n 8009d3e + 800a018: 687b ldr r3, [r7, #4] + 800a01a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800a01e: b2db uxtb r3, r3 + 800a020: 2b02 cmp r3, #2 + 800a022: d002 beq.n 800a02a + 800a024: 2b03 cmp r3, #3 + 800a026: d029 beq.n 800a07c + 800a028: e075 b.n 800a116 { case USBD_STATE_ADDRESSED: if (cfgidx != 0U) - 8009c52: 4b44 ldr r3, [pc, #272] @ (8009d64 ) - 8009c54: 781b ldrb r3, [r3, #0] - 8009c56: 2b00 cmp r3, #0 - 8009c58: d020 beq.n 8009c9c + 800a02a: 4b44 ldr r3, [pc, #272] @ (800a13c ) + 800a02c: 781b ldrb r3, [r3, #0] + 800a02e: 2b00 cmp r3, #0 + 800a030: d020 beq.n 800a074 { pdev->dev_config = cfgidx; - 8009c5a: 4b42 ldr r3, [pc, #264] @ (8009d64 ) - 8009c5c: 781b ldrb r3, [r3, #0] - 8009c5e: 461a mov r2, r3 - 8009c60: 687b ldr r3, [r7, #4] - 8009c62: 605a str r2, [r3, #4] + 800a032: 4b42 ldr r3, [pc, #264] @ (800a13c ) + 800a034: 781b ldrb r3, [r3, #0] + 800a036: 461a mov r2, r3 + 800a038: 687b ldr r3, [r7, #4] + 800a03a: 605a str r2, [r3, #4] ret = USBD_SetClassConfig(pdev, cfgidx); - 8009c64: 4b3f ldr r3, [pc, #252] @ (8009d64 ) - 8009c66: 781b ldrb r3, [r3, #0] - 8009c68: 4619 mov r1, r3 - 8009c6a: 6878 ldr r0, [r7, #4] - 8009c6c: f7fe ffa3 bl 8008bb6 - 8009c70: 4603 mov r3, r0 - 8009c72: 73fb strb r3, [r7, #15] + 800a03c: 4b3f ldr r3, [pc, #252] @ (800a13c ) + 800a03e: 781b ldrb r3, [r3, #0] + 800a040: 4619 mov r1, r3 + 800a042: 6878 ldr r0, [r7, #4] + 800a044: f7fe ffa3 bl 8008f8e + 800a048: 4603 mov r3, r0 + 800a04a: 73fb strb r3, [r7, #15] if (ret != USBD_OK) - 8009c74: 7bfb ldrb r3, [r7, #15] - 8009c76: 2b00 cmp r3, #0 - 8009c78: d008 beq.n 8009c8c + 800a04c: 7bfb ldrb r3, [r7, #15] + 800a04e: 2b00 cmp r3, #0 + 800a050: d008 beq.n 800a064 { USBD_CtlError(pdev, req); - 8009c7a: 6839 ldr r1, [r7, #0] - 8009c7c: 6878 ldr r0, [r7, #4] - 8009c7e: f000 f962 bl 8009f46 + 800a052: 6839 ldr r1, [r7, #0] + 800a054: 6878 ldr r0, [r7, #4] + 800a056: f000 f962 bl 800a31e pdev->dev_state = USBD_STATE_ADDRESSED; - 8009c82: 687b ldr r3, [r7, #4] - 8009c84: 2202 movs r2, #2 - 8009c86: f883 229c strb.w r2, [r3, #668] @ 0x29c + 800a05a: 687b ldr r3, [r7, #4] + 800a05c: 2202 movs r2, #2 + 800a05e: f883 229c strb.w r2, [r3, #668] @ 0x29c } else { (void)USBD_CtlSendStatus(pdev); } break; - 8009c8a: e065 b.n 8009d58 + 800a062: e065 b.n 800a130 (void)USBD_CtlSendStatus(pdev); - 8009c8c: 6878 ldr r0, [r7, #4] - 8009c8e: f000 fa17 bl 800a0c0 + 800a064: 6878 ldr r0, [r7, #4] + 800a066: f000 fa17 bl 800a498 pdev->dev_state = USBD_STATE_CONFIGURED; - 8009c92: 687b ldr r3, [r7, #4] - 8009c94: 2203 movs r2, #3 - 8009c96: f883 229c strb.w r2, [r3, #668] @ 0x29c + 800a06a: 687b ldr r3, [r7, #4] + 800a06c: 2203 movs r2, #3 + 800a06e: f883 229c strb.w r2, [r3, #668] @ 0x29c break; - 8009c9a: e05d b.n 8009d58 + 800a072: e05d b.n 800a130 (void)USBD_CtlSendStatus(pdev); - 8009c9c: 6878 ldr r0, [r7, #4] - 8009c9e: f000 fa0f bl 800a0c0 + 800a074: 6878 ldr r0, [r7, #4] + 800a076: f000 fa0f bl 800a498 break; - 8009ca2: e059 b.n 8009d58 + 800a07a: e059 b.n 800a130 case USBD_STATE_CONFIGURED: if (cfgidx == 0U) - 8009ca4: 4b2f ldr r3, [pc, #188] @ (8009d64 ) - 8009ca6: 781b ldrb r3, [r3, #0] - 8009ca8: 2b00 cmp r3, #0 - 8009caa: d112 bne.n 8009cd2 + 800a07c: 4b2f ldr r3, [pc, #188] @ (800a13c ) + 800a07e: 781b ldrb r3, [r3, #0] + 800a080: 2b00 cmp r3, #0 + 800a082: d112 bne.n 800a0aa { pdev->dev_state = USBD_STATE_ADDRESSED; - 8009cac: 687b ldr r3, [r7, #4] - 8009cae: 2202 movs r2, #2 - 8009cb0: f883 229c strb.w r2, [r3, #668] @ 0x29c + 800a084: 687b ldr r3, [r7, #4] + 800a086: 2202 movs r2, #2 + 800a088: f883 229c strb.w r2, [r3, #668] @ 0x29c pdev->dev_config = cfgidx; - 8009cb4: 4b2b ldr r3, [pc, #172] @ (8009d64 ) - 8009cb6: 781b ldrb r3, [r3, #0] - 8009cb8: 461a mov r2, r3 - 8009cba: 687b ldr r3, [r7, #4] - 8009cbc: 605a str r2, [r3, #4] + 800a08c: 4b2b ldr r3, [pc, #172] @ (800a13c ) + 800a08e: 781b ldrb r3, [r3, #0] + 800a090: 461a mov r2, r3 + 800a092: 687b ldr r3, [r7, #4] + 800a094: 605a str r2, [r3, #4] (void)USBD_ClrClassConfig(pdev, cfgidx); - 8009cbe: 4b29 ldr r3, [pc, #164] @ (8009d64 ) - 8009cc0: 781b ldrb r3, [r3, #0] - 8009cc2: 4619 mov r1, r3 - 8009cc4: 6878 ldr r0, [r7, #4] - 8009cc6: f7fe ff92 bl 8008bee + 800a096: 4b29 ldr r3, [pc, #164] @ (800a13c ) + 800a098: 781b ldrb r3, [r3, #0] + 800a09a: 4619 mov r1, r3 + 800a09c: 6878 ldr r0, [r7, #4] + 800a09e: f7fe ff92 bl 8008fc6 (void)USBD_CtlSendStatus(pdev); - 8009cca: 6878 ldr r0, [r7, #4] - 8009ccc: f000 f9f8 bl 800a0c0 + 800a0a2: 6878 ldr r0, [r7, #4] + 800a0a4: f000 f9f8 bl 800a498 } else { (void)USBD_CtlSendStatus(pdev); } break; - 8009cd0: e042 b.n 8009d58 + 800a0a8: e042 b.n 800a130 else if (cfgidx != pdev->dev_config) - 8009cd2: 4b24 ldr r3, [pc, #144] @ (8009d64 ) - 8009cd4: 781b ldrb r3, [r3, #0] - 8009cd6: 461a mov r2, r3 - 8009cd8: 687b ldr r3, [r7, #4] - 8009cda: 685b ldr r3, [r3, #4] - 8009cdc: 429a cmp r2, r3 - 8009cde: d02a beq.n 8009d36 + 800a0aa: 4b24 ldr r3, [pc, #144] @ (800a13c ) + 800a0ac: 781b ldrb r3, [r3, #0] + 800a0ae: 461a mov r2, r3 + 800a0b0: 687b ldr r3, [r7, #4] + 800a0b2: 685b ldr r3, [r3, #4] + 800a0b4: 429a cmp r2, r3 + 800a0b6: d02a beq.n 800a10e (void)USBD_ClrClassConfig(pdev, (uint8_t)pdev->dev_config); - 8009ce0: 687b ldr r3, [r7, #4] - 8009ce2: 685b ldr r3, [r3, #4] - 8009ce4: b2db uxtb r3, r3 - 8009ce6: 4619 mov r1, r3 - 8009ce8: 6878 ldr r0, [r7, #4] - 8009cea: f7fe ff80 bl 8008bee + 800a0b8: 687b ldr r3, [r7, #4] + 800a0ba: 685b ldr r3, [r3, #4] + 800a0bc: b2db uxtb r3, r3 + 800a0be: 4619 mov r1, r3 + 800a0c0: 6878 ldr r0, [r7, #4] + 800a0c2: f7fe ff80 bl 8008fc6 pdev->dev_config = cfgidx; - 8009cee: 4b1d ldr r3, [pc, #116] @ (8009d64 ) - 8009cf0: 781b ldrb r3, [r3, #0] - 8009cf2: 461a mov r2, r3 - 8009cf4: 687b ldr r3, [r7, #4] - 8009cf6: 605a str r2, [r3, #4] + 800a0c6: 4b1d ldr r3, [pc, #116] @ (800a13c ) + 800a0c8: 781b ldrb r3, [r3, #0] + 800a0ca: 461a mov r2, r3 + 800a0cc: 687b ldr r3, [r7, #4] + 800a0ce: 605a str r2, [r3, #4] ret = USBD_SetClassConfig(pdev, cfgidx); - 8009cf8: 4b1a ldr r3, [pc, #104] @ (8009d64 ) - 8009cfa: 781b ldrb r3, [r3, #0] - 8009cfc: 4619 mov r1, r3 - 8009cfe: 6878 ldr r0, [r7, #4] - 8009d00: f7fe ff59 bl 8008bb6 - 8009d04: 4603 mov r3, r0 - 8009d06: 73fb strb r3, [r7, #15] + 800a0d0: 4b1a ldr r3, [pc, #104] @ (800a13c ) + 800a0d2: 781b ldrb r3, [r3, #0] + 800a0d4: 4619 mov r1, r3 + 800a0d6: 6878 ldr r0, [r7, #4] + 800a0d8: f7fe ff59 bl 8008f8e + 800a0dc: 4603 mov r3, r0 + 800a0de: 73fb strb r3, [r7, #15] if (ret != USBD_OK) - 8009d08: 7bfb ldrb r3, [r7, #15] - 8009d0a: 2b00 cmp r3, #0 - 8009d0c: d00f beq.n 8009d2e + 800a0e0: 7bfb ldrb r3, [r7, #15] + 800a0e2: 2b00 cmp r3, #0 + 800a0e4: d00f beq.n 800a106 USBD_CtlError(pdev, req); - 8009d0e: 6839 ldr r1, [r7, #0] - 8009d10: 6878 ldr r0, [r7, #4] - 8009d12: f000 f918 bl 8009f46 + 800a0e6: 6839 ldr r1, [r7, #0] + 800a0e8: 6878 ldr r0, [r7, #4] + 800a0ea: f000 f918 bl 800a31e (void)USBD_ClrClassConfig(pdev, (uint8_t)pdev->dev_config); - 8009d16: 687b ldr r3, [r7, #4] - 8009d18: 685b ldr r3, [r3, #4] - 8009d1a: b2db uxtb r3, r3 - 8009d1c: 4619 mov r1, r3 - 8009d1e: 6878 ldr r0, [r7, #4] - 8009d20: f7fe ff65 bl 8008bee + 800a0ee: 687b ldr r3, [r7, #4] + 800a0f0: 685b ldr r3, [r3, #4] + 800a0f2: b2db uxtb r3, r3 + 800a0f4: 4619 mov r1, r3 + 800a0f6: 6878 ldr r0, [r7, #4] + 800a0f8: f7fe ff65 bl 8008fc6 pdev->dev_state = USBD_STATE_ADDRESSED; - 8009d24: 687b ldr r3, [r7, #4] - 8009d26: 2202 movs r2, #2 - 8009d28: f883 229c strb.w r2, [r3, #668] @ 0x29c + 800a0fc: 687b ldr r3, [r7, #4] + 800a0fe: 2202 movs r2, #2 + 800a100: f883 229c strb.w r2, [r3, #668] @ 0x29c break; - 8009d2c: e014 b.n 8009d58 + 800a104: e014 b.n 800a130 (void)USBD_CtlSendStatus(pdev); - 8009d2e: 6878 ldr r0, [r7, #4] - 8009d30: f000 f9c6 bl 800a0c0 + 800a106: 6878 ldr r0, [r7, #4] + 800a108: f000 f9c6 bl 800a498 break; - 8009d34: e010 b.n 8009d58 + 800a10c: e010 b.n 800a130 (void)USBD_CtlSendStatus(pdev); - 8009d36: 6878 ldr r0, [r7, #4] - 8009d38: f000 f9c2 bl 800a0c0 + 800a10e: 6878 ldr r0, [r7, #4] + 800a110: f000 f9c2 bl 800a498 break; - 8009d3c: e00c b.n 8009d58 + 800a114: e00c b.n 800a130 default: USBD_CtlError(pdev, req); - 8009d3e: 6839 ldr r1, [r7, #0] - 8009d40: 6878 ldr r0, [r7, #4] - 8009d42: f000 f900 bl 8009f46 + 800a116: 6839 ldr r1, [r7, #0] + 800a118: 6878 ldr r0, [r7, #4] + 800a11a: f000 f900 bl 800a31e (void)USBD_ClrClassConfig(pdev, cfgidx); - 8009d46: 4b07 ldr r3, [pc, #28] @ (8009d64 ) - 8009d48: 781b ldrb r3, [r3, #0] - 8009d4a: 4619 mov r1, r3 - 8009d4c: 6878 ldr r0, [r7, #4] - 8009d4e: f7fe ff4e bl 8008bee + 800a11e: 4b07 ldr r3, [pc, #28] @ (800a13c ) + 800a120: 781b ldrb r3, [r3, #0] + 800a122: 4619 mov r1, r3 + 800a124: 6878 ldr r0, [r7, #4] + 800a126: f7fe ff4e bl 8008fc6 ret = USBD_FAIL; - 8009d52: 2303 movs r3, #3 - 8009d54: 73fb strb r3, [r7, #15] + 800a12a: 2303 movs r3, #3 + 800a12c: 73fb strb r3, [r7, #15] break; - 8009d56: bf00 nop + 800a12e: bf00 nop } return ret; - 8009d58: 7bfb ldrb r3, [r7, #15] + 800a130: 7bfb ldrb r3, [r7, #15] } - 8009d5a: 4618 mov r0, r3 - 8009d5c: 3710 adds r7, #16 - 8009d5e: 46bd mov sp, r7 - 8009d60: bd80 pop {r7, pc} - 8009d62: bf00 nop - 8009d64: 20000734 .word 0x20000734 + 800a132: 4618 mov r0, r3 + 800a134: 3710 adds r7, #16 + 800a136: 46bd mov sp, r7 + 800a138: bd80 pop {r7, pc} + 800a13a: bf00 nop + 800a13c: 20000d84 .word 0x20000d84 -08009d68 : +0800a140 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_GetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009d68: b580 push {r7, lr} - 8009d6a: b082 sub sp, #8 - 8009d6c: af00 add r7, sp, #0 - 8009d6e: 6078 str r0, [r7, #4] - 8009d70: 6039 str r1, [r7, #0] + 800a140: b580 push {r7, lr} + 800a142: b082 sub sp, #8 + 800a144: af00 add r7, sp, #0 + 800a146: 6078 str r0, [r7, #4] + 800a148: 6039 str r1, [r7, #0] if (req->wLength != 1U) - 8009d72: 683b ldr r3, [r7, #0] - 8009d74: 88db ldrh r3, [r3, #6] - 8009d76: 2b01 cmp r3, #1 - 8009d78: d004 beq.n 8009d84 + 800a14a: 683b ldr r3, [r7, #0] + 800a14c: 88db ldrh r3, [r3, #6] + 800a14e: 2b01 cmp r3, #1 + 800a150: d004 beq.n 800a15c { USBD_CtlError(pdev, req); - 8009d7a: 6839 ldr r1, [r7, #0] - 8009d7c: 6878 ldr r0, [r7, #4] - 8009d7e: f000 f8e2 bl 8009f46 + 800a152: 6839 ldr r1, [r7, #0] + 800a154: 6878 ldr r0, [r7, #4] + 800a156: f000 f8e2 bl 800a31e default: USBD_CtlError(pdev, req); break; } } } - 8009d82: e023 b.n 8009dcc + 800a15a: e023 b.n 800a1a4 switch (pdev->dev_state) - 8009d84: 687b ldr r3, [r7, #4] - 8009d86: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009d8a: b2db uxtb r3, r3 - 8009d8c: 2b02 cmp r3, #2 - 8009d8e: dc02 bgt.n 8009d96 - 8009d90: 2b00 cmp r3, #0 - 8009d92: dc03 bgt.n 8009d9c - 8009d94: e015 b.n 8009dc2 - 8009d96: 2b03 cmp r3, #3 - 8009d98: d00b beq.n 8009db2 - 8009d9a: e012 b.n 8009dc2 + 800a15c: 687b ldr r3, [r7, #4] + 800a15e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800a162: b2db uxtb r3, r3 + 800a164: 2b02 cmp r3, #2 + 800a166: dc02 bgt.n 800a16e + 800a168: 2b00 cmp r3, #0 + 800a16a: dc03 bgt.n 800a174 + 800a16c: e015 b.n 800a19a + 800a16e: 2b03 cmp r3, #3 + 800a170: d00b beq.n 800a18a + 800a172: e012 b.n 800a19a pdev->dev_default_config = 0U; - 8009d9c: 687b ldr r3, [r7, #4] - 8009d9e: 2200 movs r2, #0 - 8009da0: 609a str r2, [r3, #8] + 800a174: 687b ldr r3, [r7, #4] + 800a176: 2200 movs r2, #0 + 800a178: 609a str r2, [r3, #8] (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_default_config, 1U); - 8009da2: 687b ldr r3, [r7, #4] - 8009da4: 3308 adds r3, #8 - 8009da6: 2201 movs r2, #1 - 8009da8: 4619 mov r1, r3 - 8009daa: 6878 ldr r0, [r7, #4] - 8009dac: f000 f948 bl 800a040 + 800a17a: 687b ldr r3, [r7, #4] + 800a17c: 3308 adds r3, #8 + 800a17e: 2201 movs r2, #1 + 800a180: 4619 mov r1, r3 + 800a182: 6878 ldr r0, [r7, #4] + 800a184: f000 f948 bl 800a418 break; - 8009db0: e00c b.n 8009dcc + 800a188: e00c b.n 800a1a4 (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_config, 1U); - 8009db2: 687b ldr r3, [r7, #4] - 8009db4: 3304 adds r3, #4 - 8009db6: 2201 movs r2, #1 - 8009db8: 4619 mov r1, r3 - 8009dba: 6878 ldr r0, [r7, #4] - 8009dbc: f000 f940 bl 800a040 + 800a18a: 687b ldr r3, [r7, #4] + 800a18c: 3304 adds r3, #4 + 800a18e: 2201 movs r2, #1 + 800a190: 4619 mov r1, r3 + 800a192: 6878 ldr r0, [r7, #4] + 800a194: f000 f940 bl 800a418 break; - 8009dc0: e004 b.n 8009dcc + 800a198: e004 b.n 800a1a4 USBD_CtlError(pdev, req); - 8009dc2: 6839 ldr r1, [r7, #0] - 8009dc4: 6878 ldr r0, [r7, #4] - 8009dc6: f000 f8be bl 8009f46 + 800a19a: 6839 ldr r1, [r7, #0] + 800a19c: 6878 ldr r0, [r7, #4] + 800a19e: f000 f8be bl 800a31e break; - 8009dca: bf00 nop + 800a1a2: bf00 nop } - 8009dcc: bf00 nop - 8009dce: 3708 adds r7, #8 - 8009dd0: 46bd mov sp, r7 - 8009dd2: bd80 pop {r7, pc} + 800a1a4: bf00 nop + 800a1a6: 3708 adds r7, #8 + 800a1a8: 46bd mov sp, r7 + 800a1aa: bd80 pop {r7, pc} -08009dd4 : +0800a1ac : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_GetStatus(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009dd4: b580 push {r7, lr} - 8009dd6: b082 sub sp, #8 - 8009dd8: af00 add r7, sp, #0 - 8009dda: 6078 str r0, [r7, #4] - 8009ddc: 6039 str r1, [r7, #0] + 800a1ac: b580 push {r7, lr} + 800a1ae: b082 sub sp, #8 + 800a1b0: af00 add r7, sp, #0 + 800a1b2: 6078 str r0, [r7, #4] + 800a1b4: 6039 str r1, [r7, #0] switch (pdev->dev_state) - 8009dde: 687b ldr r3, [r7, #4] - 8009de0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009de4: b2db uxtb r3, r3 - 8009de6: 3b01 subs r3, #1 - 8009de8: 2b02 cmp r3, #2 - 8009dea: d81e bhi.n 8009e2a + 800a1b6: 687b ldr r3, [r7, #4] + 800a1b8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800a1bc: b2db uxtb r3, r3 + 800a1be: 3b01 subs r3, #1 + 800a1c0: 2b02 cmp r3, #2 + 800a1c2: d81e bhi.n 800a202 { case USBD_STATE_DEFAULT: case USBD_STATE_ADDRESSED: case USBD_STATE_CONFIGURED: if (req->wLength != 0x2U) - 8009dec: 683b ldr r3, [r7, #0] - 8009dee: 88db ldrh r3, [r3, #6] - 8009df0: 2b02 cmp r3, #2 - 8009df2: d004 beq.n 8009dfe + 800a1c4: 683b ldr r3, [r7, #0] + 800a1c6: 88db ldrh r3, [r3, #6] + 800a1c8: 2b02 cmp r3, #2 + 800a1ca: d004 beq.n 800a1d6 { USBD_CtlError(pdev, req); - 8009df4: 6839 ldr r1, [r7, #0] - 8009df6: 6878 ldr r0, [r7, #4] - 8009df8: f000 f8a5 bl 8009f46 + 800a1cc: 6839 ldr r1, [r7, #0] + 800a1ce: 6878 ldr r0, [r7, #4] + 800a1d0: f000 f8a5 bl 800a31e break; - 8009dfc: e01a b.n 8009e34 + 800a1d4: e01a b.n 800a20c } #if (USBD_SELF_POWERED == 1U) pdev->dev_config_status = USB_CONFIG_SELF_POWERED; - 8009dfe: 687b ldr r3, [r7, #4] - 8009e00: 2201 movs r2, #1 - 8009e02: 60da str r2, [r3, #12] + 800a1d6: 687b ldr r3, [r7, #4] + 800a1d8: 2201 movs r2, #1 + 800a1da: 60da str r2, [r3, #12] #else pdev->dev_config_status = 0U; #endif /* USBD_SELF_POWERED */ if (pdev->dev_remote_wakeup != 0U) - 8009e04: 687b ldr r3, [r7, #4] - 8009e06: f8d3 32a4 ldr.w r3, [r3, #676] @ 0x2a4 - 8009e0a: 2b00 cmp r3, #0 - 8009e0c: d005 beq.n 8009e1a + 800a1dc: 687b ldr r3, [r7, #4] + 800a1de: f8d3 32a4 ldr.w r3, [r3, #676] @ 0x2a4 + 800a1e2: 2b00 cmp r3, #0 + 800a1e4: d005 beq.n 800a1f2 { pdev->dev_config_status |= USB_CONFIG_REMOTE_WAKEUP; - 8009e0e: 687b ldr r3, [r7, #4] - 8009e10: 68db ldr r3, [r3, #12] - 8009e12: f043 0202 orr.w r2, r3, #2 - 8009e16: 687b ldr r3, [r7, #4] - 8009e18: 60da str r2, [r3, #12] + 800a1e6: 687b ldr r3, [r7, #4] + 800a1e8: 68db ldr r3, [r3, #12] + 800a1ea: f043 0202 orr.w r2, r3, #2 + 800a1ee: 687b ldr r3, [r7, #4] + 800a1f0: 60da str r2, [r3, #12] } (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_config_status, 2U); - 8009e1a: 687b ldr r3, [r7, #4] - 8009e1c: 330c adds r3, #12 - 8009e1e: 2202 movs r2, #2 - 8009e20: 4619 mov r1, r3 - 8009e22: 6878 ldr r0, [r7, #4] - 8009e24: f000 f90c bl 800a040 + 800a1f2: 687b ldr r3, [r7, #4] + 800a1f4: 330c adds r3, #12 + 800a1f6: 2202 movs r2, #2 + 800a1f8: 4619 mov r1, r3 + 800a1fa: 6878 ldr r0, [r7, #4] + 800a1fc: f000 f90c bl 800a418 break; - 8009e28: e004 b.n 8009e34 + 800a200: e004 b.n 800a20c default: USBD_CtlError(pdev, req); - 8009e2a: 6839 ldr r1, [r7, #0] - 8009e2c: 6878 ldr r0, [r7, #4] - 8009e2e: f000 f88a bl 8009f46 + 800a202: 6839 ldr r1, [r7, #0] + 800a204: 6878 ldr r0, [r7, #4] + 800a206: f000 f88a bl 800a31e break; - 8009e32: bf00 nop + 800a20a: bf00 nop } } - 8009e34: bf00 nop - 8009e36: 3708 adds r7, #8 - 8009e38: 46bd mov sp, r7 - 8009e3a: bd80 pop {r7, pc} + 800a20c: bf00 nop + 800a20e: 3708 adds r7, #8 + 800a210: 46bd mov sp, r7 + 800a212: bd80 pop {r7, pc} -08009e3c : +0800a214 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_SetFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009e3c: b580 push {r7, lr} - 8009e3e: b082 sub sp, #8 - 8009e40: af00 add r7, sp, #0 - 8009e42: 6078 str r0, [r7, #4] - 8009e44: 6039 str r1, [r7, #0] + 800a214: b580 push {r7, lr} + 800a216: b082 sub sp, #8 + 800a218: af00 add r7, sp, #0 + 800a21a: 6078 str r0, [r7, #4] + 800a21c: 6039 str r1, [r7, #0] if (req->wValue == USB_FEATURE_REMOTE_WAKEUP) - 8009e46: 683b ldr r3, [r7, #0] - 8009e48: 885b ldrh r3, [r3, #2] - 8009e4a: 2b01 cmp r3, #1 - 8009e4c: d107 bne.n 8009e5e + 800a21e: 683b ldr r3, [r7, #0] + 800a220: 885b ldrh r3, [r3, #2] + 800a222: 2b01 cmp r3, #1 + 800a224: d107 bne.n 800a236 { pdev->dev_remote_wakeup = 1U; - 8009e4e: 687b ldr r3, [r7, #4] - 8009e50: 2201 movs r2, #1 - 8009e52: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 + 800a226: 687b ldr r3, [r7, #4] + 800a228: 2201 movs r2, #1 + 800a22a: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 (void)USBD_CtlSendStatus(pdev); - 8009e56: 6878 ldr r0, [r7, #4] - 8009e58: f000 f932 bl 800a0c0 + 800a22e: 6878 ldr r0, [r7, #4] + 800a230: f000 f932 bl 800a498 } else { USBD_CtlError(pdev, req); } } - 8009e5c: e013 b.n 8009e86 + 800a234: e013 b.n 800a25e else if (req->wValue == USB_FEATURE_TEST_MODE) - 8009e5e: 683b ldr r3, [r7, #0] - 8009e60: 885b ldrh r3, [r3, #2] - 8009e62: 2b02 cmp r3, #2 - 8009e64: d10b bne.n 8009e7e + 800a236: 683b ldr r3, [r7, #0] + 800a238: 885b ldrh r3, [r3, #2] + 800a23a: 2b02 cmp r3, #2 + 800a23c: d10b bne.n 800a256 pdev->dev_test_mode = (uint8_t)(req->wIndex >> 8); - 8009e66: 683b ldr r3, [r7, #0] - 8009e68: 889b ldrh r3, [r3, #4] - 8009e6a: 0a1b lsrs r3, r3, #8 - 8009e6c: b29b uxth r3, r3 - 8009e6e: b2da uxtb r2, r3 - 8009e70: 687b ldr r3, [r7, #4] - 8009e72: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 + 800a23e: 683b ldr r3, [r7, #0] + 800a240: 889b ldrh r3, [r3, #4] + 800a242: 0a1b lsrs r3, r3, #8 + 800a244: b29b uxth r3, r3 + 800a246: b2da uxtb r2, r3 + 800a248: 687b ldr r3, [r7, #4] + 800a24a: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 (void)USBD_CtlSendStatus(pdev); - 8009e76: 6878 ldr r0, [r7, #4] - 8009e78: f000 f922 bl 800a0c0 + 800a24e: 6878 ldr r0, [r7, #4] + 800a250: f000 f922 bl 800a498 } - 8009e7c: e003 b.n 8009e86 + 800a254: e003 b.n 800a25e USBD_CtlError(pdev, req); - 8009e7e: 6839 ldr r1, [r7, #0] - 8009e80: 6878 ldr r0, [r7, #4] - 8009e82: f000 f860 bl 8009f46 + 800a256: 6839 ldr r1, [r7, #0] + 800a258: 6878 ldr r0, [r7, #4] + 800a25a: f000 f860 bl 800a31e } - 8009e86: bf00 nop - 8009e88: 3708 adds r7, #8 - 8009e8a: 46bd mov sp, r7 - 8009e8c: bd80 pop {r7, pc} + 800a25e: bf00 nop + 800a260: 3708 adds r7, #8 + 800a262: 46bd mov sp, r7 + 800a264: bd80 pop {r7, pc} -08009e8e : +0800a266 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_ClrFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009e8e: b580 push {r7, lr} - 8009e90: b082 sub sp, #8 - 8009e92: af00 add r7, sp, #0 - 8009e94: 6078 str r0, [r7, #4] - 8009e96: 6039 str r1, [r7, #0] + 800a266: b580 push {r7, lr} + 800a268: b082 sub sp, #8 + 800a26a: af00 add r7, sp, #0 + 800a26c: 6078 str r0, [r7, #4] + 800a26e: 6039 str r1, [r7, #0] switch (pdev->dev_state) - 8009e98: 687b ldr r3, [r7, #4] - 8009e9a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009e9e: b2db uxtb r3, r3 - 8009ea0: 3b01 subs r3, #1 - 8009ea2: 2b02 cmp r3, #2 - 8009ea4: d80b bhi.n 8009ebe + 800a270: 687b ldr r3, [r7, #4] + 800a272: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 800a276: b2db uxtb r3, r3 + 800a278: 3b01 subs r3, #1 + 800a27a: 2b02 cmp r3, #2 + 800a27c: d80b bhi.n 800a296 { case USBD_STATE_DEFAULT: case USBD_STATE_ADDRESSED: case USBD_STATE_CONFIGURED: if (req->wValue == USB_FEATURE_REMOTE_WAKEUP) - 8009ea6: 683b ldr r3, [r7, #0] - 8009ea8: 885b ldrh r3, [r3, #2] - 8009eaa: 2b01 cmp r3, #1 - 8009eac: d10c bne.n 8009ec8 + 800a27e: 683b ldr r3, [r7, #0] + 800a280: 885b ldrh r3, [r3, #2] + 800a282: 2b01 cmp r3, #1 + 800a284: d10c bne.n 800a2a0 { pdev->dev_remote_wakeup = 0U; - 8009eae: 687b ldr r3, [r7, #4] - 8009eb0: 2200 movs r2, #0 - 8009eb2: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 + 800a286: 687b ldr r3, [r7, #4] + 800a288: 2200 movs r2, #0 + 800a28a: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 (void)USBD_CtlSendStatus(pdev); - 8009eb6: 6878 ldr r0, [r7, #4] - 8009eb8: f000 f902 bl 800a0c0 + 800a28e: 6878 ldr r0, [r7, #4] + 800a290: f000 f902 bl 800a498 } break; - 8009ebc: e004 b.n 8009ec8 + 800a294: e004 b.n 800a2a0 default: USBD_CtlError(pdev, req); - 8009ebe: 6839 ldr r1, [r7, #0] - 8009ec0: 6878 ldr r0, [r7, #4] - 8009ec2: f000 f840 bl 8009f46 + 800a296: 6839 ldr r1, [r7, #0] + 800a298: 6878 ldr r0, [r7, #4] + 800a29a: f000 f840 bl 800a31e break; - 8009ec6: e000 b.n 8009eca + 800a29e: e000 b.n 800a2a2 break; - 8009ec8: bf00 nop + 800a2a0: bf00 nop } } - 8009eca: bf00 nop - 8009ecc: 3708 adds r7, #8 - 8009ece: 46bd mov sp, r7 - 8009ed0: bd80 pop {r7, pc} + 800a2a2: bf00 nop + 800a2a4: 3708 adds r7, #8 + 800a2a6: 46bd mov sp, r7 + 800a2a8: bd80 pop {r7, pc} -08009ed2 : +0800a2aa : * @param req: usb request * @param pdata: setup data pointer * @retval None */ void USBD_ParseSetupRequest(USBD_SetupReqTypedef *req, uint8_t *pdata) { - 8009ed2: b580 push {r7, lr} - 8009ed4: b084 sub sp, #16 - 8009ed6: af00 add r7, sp, #0 - 8009ed8: 6078 str r0, [r7, #4] - 8009eda: 6039 str r1, [r7, #0] + 800a2aa: b580 push {r7, lr} + 800a2ac: b084 sub sp, #16 + 800a2ae: af00 add r7, sp, #0 + 800a2b0: 6078 str r0, [r7, #4] + 800a2b2: 6039 str r1, [r7, #0] uint8_t *pbuff = pdata; - 8009edc: 683b ldr r3, [r7, #0] - 8009ede: 60fb str r3, [r7, #12] + 800a2b4: 683b ldr r3, [r7, #0] + 800a2b6: 60fb str r3, [r7, #12] req->bmRequest = *(uint8_t *)(pbuff); - 8009ee0: 68fb ldr r3, [r7, #12] - 8009ee2: 781a ldrb r2, [r3, #0] - 8009ee4: 687b ldr r3, [r7, #4] - 8009ee6: 701a strb r2, [r3, #0] + 800a2b8: 68fb ldr r3, [r7, #12] + 800a2ba: 781a ldrb r2, [r3, #0] + 800a2bc: 687b ldr r3, [r7, #4] + 800a2be: 701a strb r2, [r3, #0] pbuff++; - 8009ee8: 68fb ldr r3, [r7, #12] - 8009eea: 3301 adds r3, #1 - 8009eec: 60fb str r3, [r7, #12] + 800a2c0: 68fb ldr r3, [r7, #12] + 800a2c2: 3301 adds r3, #1 + 800a2c4: 60fb str r3, [r7, #12] req->bRequest = *(uint8_t *)(pbuff); - 8009eee: 68fb ldr r3, [r7, #12] - 8009ef0: 781a ldrb r2, [r3, #0] - 8009ef2: 687b ldr r3, [r7, #4] - 8009ef4: 705a strb r2, [r3, #1] + 800a2c6: 68fb ldr r3, [r7, #12] + 800a2c8: 781a ldrb r2, [r3, #0] + 800a2ca: 687b ldr r3, [r7, #4] + 800a2cc: 705a strb r2, [r3, #1] pbuff++; - 8009ef6: 68fb ldr r3, [r7, #12] - 8009ef8: 3301 adds r3, #1 - 8009efa: 60fb str r3, [r7, #12] + 800a2ce: 68fb ldr r3, [r7, #12] + 800a2d0: 3301 adds r3, #1 + 800a2d2: 60fb str r3, [r7, #12] req->wValue = SWAPBYTE(pbuff); - 8009efc: 68f8 ldr r0, [r7, #12] - 8009efe: f7ff fa13 bl 8009328 - 8009f02: 4603 mov r3, r0 - 8009f04: 461a mov r2, r3 - 8009f06: 687b ldr r3, [r7, #4] - 8009f08: 805a strh r2, [r3, #2] + 800a2d4: 68f8 ldr r0, [r7, #12] + 800a2d6: f7ff fa13 bl 8009700 + 800a2da: 4603 mov r3, r0 + 800a2dc: 461a mov r2, r3 + 800a2de: 687b ldr r3, [r7, #4] + 800a2e0: 805a strh r2, [r3, #2] pbuff++; - 8009f0a: 68fb ldr r3, [r7, #12] - 8009f0c: 3301 adds r3, #1 - 8009f0e: 60fb str r3, [r7, #12] + 800a2e2: 68fb ldr r3, [r7, #12] + 800a2e4: 3301 adds r3, #1 + 800a2e6: 60fb str r3, [r7, #12] pbuff++; - 8009f10: 68fb ldr r3, [r7, #12] - 8009f12: 3301 adds r3, #1 - 8009f14: 60fb str r3, [r7, #12] + 800a2e8: 68fb ldr r3, [r7, #12] + 800a2ea: 3301 adds r3, #1 + 800a2ec: 60fb str r3, [r7, #12] req->wIndex = SWAPBYTE(pbuff); - 8009f16: 68f8 ldr r0, [r7, #12] - 8009f18: f7ff fa06 bl 8009328 - 8009f1c: 4603 mov r3, r0 - 8009f1e: 461a mov r2, r3 - 8009f20: 687b ldr r3, [r7, #4] - 8009f22: 809a strh r2, [r3, #4] + 800a2ee: 68f8 ldr r0, [r7, #12] + 800a2f0: f7ff fa06 bl 8009700 + 800a2f4: 4603 mov r3, r0 + 800a2f6: 461a mov r2, r3 + 800a2f8: 687b ldr r3, [r7, #4] + 800a2fa: 809a strh r2, [r3, #4] pbuff++; - 8009f24: 68fb ldr r3, [r7, #12] - 8009f26: 3301 adds r3, #1 - 8009f28: 60fb str r3, [r7, #12] + 800a2fc: 68fb ldr r3, [r7, #12] + 800a2fe: 3301 adds r3, #1 + 800a300: 60fb str r3, [r7, #12] pbuff++; - 8009f2a: 68fb ldr r3, [r7, #12] - 8009f2c: 3301 adds r3, #1 - 8009f2e: 60fb str r3, [r7, #12] + 800a302: 68fb ldr r3, [r7, #12] + 800a304: 3301 adds r3, #1 + 800a306: 60fb str r3, [r7, #12] req->wLength = SWAPBYTE(pbuff); - 8009f30: 68f8 ldr r0, [r7, #12] - 8009f32: f7ff f9f9 bl 8009328 - 8009f36: 4603 mov r3, r0 - 8009f38: 461a mov r2, r3 - 8009f3a: 687b ldr r3, [r7, #4] - 8009f3c: 80da strh r2, [r3, #6] + 800a308: 68f8 ldr r0, [r7, #12] + 800a30a: f7ff f9f9 bl 8009700 + 800a30e: 4603 mov r3, r0 + 800a310: 461a mov r2, r3 + 800a312: 687b ldr r3, [r7, #4] + 800a314: 80da strh r2, [r3, #6] } - 8009f3e: bf00 nop - 8009f40: 3710 adds r7, #16 - 8009f42: 46bd mov sp, r7 - 8009f44: bd80 pop {r7, pc} + 800a316: bf00 nop + 800a318: 3710 adds r7, #16 + 800a31a: 46bd mov sp, r7 + 800a31c: bd80 pop {r7, pc} -08009f46 : +0800a31e : * @param pdev: device instance * @param req: usb request * @retval None */ void USBD_CtlError(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009f46: b580 push {r7, lr} - 8009f48: b082 sub sp, #8 - 8009f4a: af00 add r7, sp, #0 - 8009f4c: 6078 str r0, [r7, #4] - 8009f4e: 6039 str r1, [r7, #0] + 800a31e: b580 push {r7, lr} + 800a320: b082 sub sp, #8 + 800a322: af00 add r7, sp, #0 + 800a324: 6078 str r0, [r7, #4] + 800a326: 6039 str r1, [r7, #0] UNUSED(req); (void)USBD_LL_StallEP(pdev, 0x80U); - 8009f50: 2180 movs r1, #128 @ 0x80 - 8009f52: 6878 ldr r0, [r7, #4] - 8009f54: f000 fc2a bl 800a7ac + 800a328: 2180 movs r1, #128 @ 0x80 + 800a32a: 6878 ldr r0, [r7, #4] + 800a32c: f000 fc2a bl 800ab84 (void)USBD_LL_StallEP(pdev, 0U); - 8009f58: 2100 movs r1, #0 - 8009f5a: 6878 ldr r0, [r7, #4] - 8009f5c: f000 fc26 bl 800a7ac + 800a330: 2100 movs r1, #0 + 800a332: 6878 ldr r0, [r7, #4] + 800a334: f000 fc26 bl 800ab84 } - 8009f60: bf00 nop - 8009f62: 3708 adds r7, #8 - 8009f64: 46bd mov sp, r7 - 8009f66: bd80 pop {r7, pc} + 800a338: bf00 nop + 800a33a: 3708 adds r7, #8 + 800a33c: 46bd mov sp, r7 + 800a33e: bd80 pop {r7, pc} -08009f68 : +0800a340 : * @param unicode : Formatted string buffer (unicode) * @param len : descriptor length * @retval None */ void USBD_GetString(uint8_t *desc, uint8_t *unicode, uint16_t *len) { - 8009f68: b580 push {r7, lr} - 8009f6a: b086 sub sp, #24 - 8009f6c: af00 add r7, sp, #0 - 8009f6e: 60f8 str r0, [r7, #12] - 8009f70: 60b9 str r1, [r7, #8] - 8009f72: 607a str r2, [r7, #4] + 800a340: b580 push {r7, lr} + 800a342: b086 sub sp, #24 + 800a344: af00 add r7, sp, #0 + 800a346: 60f8 str r0, [r7, #12] + 800a348: 60b9 str r1, [r7, #8] + 800a34a: 607a str r2, [r7, #4] uint8_t idx = 0U; - 8009f74: 2300 movs r3, #0 - 8009f76: 75fb strb r3, [r7, #23] + 800a34c: 2300 movs r3, #0 + 800a34e: 75fb strb r3, [r7, #23] uint8_t *pdesc; if (desc == NULL) - 8009f78: 68fb ldr r3, [r7, #12] - 8009f7a: 2b00 cmp r3, #0 - 8009f7c: d042 beq.n 800a004 + 800a350: 68fb ldr r3, [r7, #12] + 800a352: 2b00 cmp r3, #0 + 800a354: d042 beq.n 800a3dc { return; } pdesc = desc; - 8009f7e: 68fb ldr r3, [r7, #12] - 8009f80: 613b str r3, [r7, #16] + 800a356: 68fb ldr r3, [r7, #12] + 800a358: 613b str r3, [r7, #16] *len = MIN(USBD_MAX_STR_DESC_SIZ, ((uint16_t)USBD_GetLen(pdesc) * 2U) + 2U); - 8009f82: 6938 ldr r0, [r7, #16] - 8009f84: f000 f842 bl 800a00c - 8009f88: 4603 mov r3, r0 - 8009f8a: 3301 adds r3, #1 - 8009f8c: 005b lsls r3, r3, #1 - 8009f8e: f5b3 7f00 cmp.w r3, #512 @ 0x200 - 8009f92: d808 bhi.n 8009fa6 - 8009f94: 6938 ldr r0, [r7, #16] - 8009f96: f000 f839 bl 800a00c - 8009f9a: 4603 mov r3, r0 - 8009f9c: 3301 adds r3, #1 - 8009f9e: b29b uxth r3, r3 - 8009fa0: 005b lsls r3, r3, #1 - 8009fa2: b29a uxth r2, r3 - 8009fa4: e001 b.n 8009faa - 8009fa6: f44f 7200 mov.w r2, #512 @ 0x200 - 8009faa: 687b ldr r3, [r7, #4] - 8009fac: 801a strh r2, [r3, #0] + 800a35a: 6938 ldr r0, [r7, #16] + 800a35c: f000 f842 bl 800a3e4 + 800a360: 4603 mov r3, r0 + 800a362: 3301 adds r3, #1 + 800a364: 005b lsls r3, r3, #1 + 800a366: f5b3 7f00 cmp.w r3, #512 @ 0x200 + 800a36a: d808 bhi.n 800a37e + 800a36c: 6938 ldr r0, [r7, #16] + 800a36e: f000 f839 bl 800a3e4 + 800a372: 4603 mov r3, r0 + 800a374: 3301 adds r3, #1 + 800a376: b29b uxth r3, r3 + 800a378: 005b lsls r3, r3, #1 + 800a37a: b29a uxth r2, r3 + 800a37c: e001 b.n 800a382 + 800a37e: f44f 7200 mov.w r2, #512 @ 0x200 + 800a382: 687b ldr r3, [r7, #4] + 800a384: 801a strh r2, [r3, #0] unicode[idx] = *(uint8_t *)len; - 8009fae: 7dfb ldrb r3, [r7, #23] - 8009fb0: 68ba ldr r2, [r7, #8] - 8009fb2: 4413 add r3, r2 - 8009fb4: 687a ldr r2, [r7, #4] - 8009fb6: 7812 ldrb r2, [r2, #0] - 8009fb8: 701a strb r2, [r3, #0] + 800a386: 7dfb ldrb r3, [r7, #23] + 800a388: 68ba ldr r2, [r7, #8] + 800a38a: 4413 add r3, r2 + 800a38c: 687a ldr r2, [r7, #4] + 800a38e: 7812 ldrb r2, [r2, #0] + 800a390: 701a strb r2, [r3, #0] idx++; - 8009fba: 7dfb ldrb r3, [r7, #23] - 8009fbc: 3301 adds r3, #1 - 8009fbe: 75fb strb r3, [r7, #23] + 800a392: 7dfb ldrb r3, [r7, #23] + 800a394: 3301 adds r3, #1 + 800a396: 75fb strb r3, [r7, #23] unicode[idx] = USB_DESC_TYPE_STRING; - 8009fc0: 7dfb ldrb r3, [r7, #23] - 8009fc2: 68ba ldr r2, [r7, #8] - 8009fc4: 4413 add r3, r2 - 8009fc6: 2203 movs r2, #3 - 8009fc8: 701a strb r2, [r3, #0] + 800a398: 7dfb ldrb r3, [r7, #23] + 800a39a: 68ba ldr r2, [r7, #8] + 800a39c: 4413 add r3, r2 + 800a39e: 2203 movs r2, #3 + 800a3a0: 701a strb r2, [r3, #0] idx++; - 8009fca: 7dfb ldrb r3, [r7, #23] - 8009fcc: 3301 adds r3, #1 - 8009fce: 75fb strb r3, [r7, #23] + 800a3a2: 7dfb ldrb r3, [r7, #23] + 800a3a4: 3301 adds r3, #1 + 800a3a6: 75fb strb r3, [r7, #23] while (*pdesc != (uint8_t)'\0') - 8009fd0: e013 b.n 8009ffa + 800a3a8: e013 b.n 800a3d2 { unicode[idx] = *pdesc; - 8009fd2: 7dfb ldrb r3, [r7, #23] - 8009fd4: 68ba ldr r2, [r7, #8] - 8009fd6: 4413 add r3, r2 - 8009fd8: 693a ldr r2, [r7, #16] - 8009fda: 7812 ldrb r2, [r2, #0] - 8009fdc: 701a strb r2, [r3, #0] + 800a3aa: 7dfb ldrb r3, [r7, #23] + 800a3ac: 68ba ldr r2, [r7, #8] + 800a3ae: 4413 add r3, r2 + 800a3b0: 693a ldr r2, [r7, #16] + 800a3b2: 7812 ldrb r2, [r2, #0] + 800a3b4: 701a strb r2, [r3, #0] pdesc++; - 8009fde: 693b ldr r3, [r7, #16] - 8009fe0: 3301 adds r3, #1 - 8009fe2: 613b str r3, [r7, #16] + 800a3b6: 693b ldr r3, [r7, #16] + 800a3b8: 3301 adds r3, #1 + 800a3ba: 613b str r3, [r7, #16] idx++; - 8009fe4: 7dfb ldrb r3, [r7, #23] - 8009fe6: 3301 adds r3, #1 - 8009fe8: 75fb strb r3, [r7, #23] + 800a3bc: 7dfb ldrb r3, [r7, #23] + 800a3be: 3301 adds r3, #1 + 800a3c0: 75fb strb r3, [r7, #23] unicode[idx] = 0U; - 8009fea: 7dfb ldrb r3, [r7, #23] - 8009fec: 68ba ldr r2, [r7, #8] - 8009fee: 4413 add r3, r2 - 8009ff0: 2200 movs r2, #0 - 8009ff2: 701a strb r2, [r3, #0] + 800a3c2: 7dfb ldrb r3, [r7, #23] + 800a3c4: 68ba ldr r2, [r7, #8] + 800a3c6: 4413 add r3, r2 + 800a3c8: 2200 movs r2, #0 + 800a3ca: 701a strb r2, [r3, #0] idx++; - 8009ff4: 7dfb ldrb r3, [r7, #23] - 8009ff6: 3301 adds r3, #1 - 8009ff8: 75fb strb r3, [r7, #23] + 800a3cc: 7dfb ldrb r3, [r7, #23] + 800a3ce: 3301 adds r3, #1 + 800a3d0: 75fb strb r3, [r7, #23] while (*pdesc != (uint8_t)'\0') - 8009ffa: 693b ldr r3, [r7, #16] - 8009ffc: 781b ldrb r3, [r3, #0] - 8009ffe: 2b00 cmp r3, #0 - 800a000: d1e7 bne.n 8009fd2 - 800a002: e000 b.n 800a006 + 800a3d2: 693b ldr r3, [r7, #16] + 800a3d4: 781b ldrb r3, [r3, #0] + 800a3d6: 2b00 cmp r3, #0 + 800a3d8: d1e7 bne.n 800a3aa + 800a3da: e000 b.n 800a3de return; - 800a004: bf00 nop + 800a3dc: bf00 nop } } - 800a006: 3718 adds r7, #24 - 800a008: 46bd mov sp, r7 - 800a00a: bd80 pop {r7, pc} + 800a3de: 3718 adds r7, #24 + 800a3e0: 46bd mov sp, r7 + 800a3e2: bd80 pop {r7, pc} -0800a00c : +0800a3e4 : * return the string length * @param buf : pointer to the ascii string buffer * @retval string length */ static uint8_t USBD_GetLen(uint8_t *buf) { - 800a00c: b480 push {r7} - 800a00e: b085 sub sp, #20 - 800a010: af00 add r7, sp, #0 - 800a012: 6078 str r0, [r7, #4] + 800a3e4: b480 push {r7} + 800a3e6: b085 sub sp, #20 + 800a3e8: af00 add r7, sp, #0 + 800a3ea: 6078 str r0, [r7, #4] uint8_t len = 0U; - 800a014: 2300 movs r3, #0 - 800a016: 73fb strb r3, [r7, #15] + 800a3ec: 2300 movs r3, #0 + 800a3ee: 73fb strb r3, [r7, #15] uint8_t *pbuff = buf; - 800a018: 687b ldr r3, [r7, #4] - 800a01a: 60bb str r3, [r7, #8] + 800a3f0: 687b ldr r3, [r7, #4] + 800a3f2: 60bb str r3, [r7, #8] while (*pbuff != (uint8_t)'\0') - 800a01c: e005 b.n 800a02a + 800a3f4: e005 b.n 800a402 { len++; - 800a01e: 7bfb ldrb r3, [r7, #15] - 800a020: 3301 adds r3, #1 - 800a022: 73fb strb r3, [r7, #15] + 800a3f6: 7bfb ldrb r3, [r7, #15] + 800a3f8: 3301 adds r3, #1 + 800a3fa: 73fb strb r3, [r7, #15] pbuff++; - 800a024: 68bb ldr r3, [r7, #8] - 800a026: 3301 adds r3, #1 - 800a028: 60bb str r3, [r7, #8] + 800a3fc: 68bb ldr r3, [r7, #8] + 800a3fe: 3301 adds r3, #1 + 800a400: 60bb str r3, [r7, #8] while (*pbuff != (uint8_t)'\0') - 800a02a: 68bb ldr r3, [r7, #8] - 800a02c: 781b ldrb r3, [r3, #0] - 800a02e: 2b00 cmp r3, #0 - 800a030: d1f5 bne.n 800a01e + 800a402: 68bb ldr r3, [r7, #8] + 800a404: 781b ldrb r3, [r3, #0] + 800a406: 2b00 cmp r3, #0 + 800a408: d1f5 bne.n 800a3f6 } return len; - 800a032: 7bfb ldrb r3, [r7, #15] + 800a40a: 7bfb ldrb r3, [r7, #15] } - 800a034: 4618 mov r0, r3 - 800a036: 3714 adds r7, #20 - 800a038: 46bd mov sp, r7 - 800a03a: f85d 7b04 ldr.w r7, [sp], #4 - 800a03e: 4770 bx lr + 800a40c: 4618 mov r0, r3 + 800a40e: 3714 adds r7, #20 + 800a410: 46bd mov sp, r7 + 800a412: f85d 7b04 ldr.w r7, [sp], #4 + 800a416: 4770 bx lr -0800a040 : +0800a418 : * @param len: length of data to be sent * @retval status */ USBD_StatusTypeDef USBD_CtlSendData(USBD_HandleTypeDef *pdev, uint8_t *pbuf, uint32_t len) { - 800a040: b580 push {r7, lr} - 800a042: b084 sub sp, #16 - 800a044: af00 add r7, sp, #0 - 800a046: 60f8 str r0, [r7, #12] - 800a048: 60b9 str r1, [r7, #8] - 800a04a: 607a str r2, [r7, #4] + 800a418: b580 push {r7, lr} + 800a41a: b084 sub sp, #16 + 800a41c: af00 add r7, sp, #0 + 800a41e: 60f8 str r0, [r7, #12] + 800a420: 60b9 str r1, [r7, #8] + 800a422: 607a str r2, [r7, #4] /* Set EP0 State */ pdev->ep0_state = USBD_EP0_DATA_IN; - 800a04c: 68fb ldr r3, [r7, #12] - 800a04e: 2202 movs r2, #2 - 800a050: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 800a424: 68fb ldr r3, [r7, #12] + 800a426: 2202 movs r2, #2 + 800a428: f8c3 2294 str.w r2, [r3, #660] @ 0x294 pdev->ep_in[0].total_length = len; - 800a054: 68fb ldr r3, [r7, #12] - 800a056: 687a ldr r2, [r7, #4] - 800a058: 615a str r2, [r3, #20] + 800a42c: 68fb ldr r3, [r7, #12] + 800a42e: 687a ldr r2, [r7, #4] + 800a430: 615a str r2, [r3, #20] pdev->ep_in[0].pbuffer = pbuf; - 800a05a: 68fb ldr r3, [r7, #12] - 800a05c: 68ba ldr r2, [r7, #8] - 800a05e: 625a str r2, [r3, #36] @ 0x24 + 800a432: 68fb ldr r3, [r7, #12] + 800a434: 68ba ldr r2, [r7, #8] + 800a436: 625a str r2, [r3, #36] @ 0x24 #ifdef USBD_AVOID_PACKET_SPLIT_MPS pdev->ep_in[0].rem_length = 0U; #else pdev->ep_in[0].rem_length = len; - 800a060: 68fb ldr r3, [r7, #12] - 800a062: 687a ldr r2, [r7, #4] - 800a064: 619a str r2, [r3, #24] + 800a438: 68fb ldr r3, [r7, #12] + 800a43a: 687a ldr r2, [r7, #4] + 800a43c: 619a str r2, [r3, #24] #endif /* USBD_AVOID_PACKET_SPLIT_MPS */ /* Start the transfer */ (void)USBD_LL_Transmit(pdev, 0x00U, pbuf, len); - 800a066: 687b ldr r3, [r7, #4] - 800a068: 68ba ldr r2, [r7, #8] - 800a06a: 2100 movs r1, #0 - 800a06c: 68f8 ldr r0, [r7, #12] - 800a06e: f000 fc26 bl 800a8be + 800a43e: 687b ldr r3, [r7, #4] + 800a440: 68ba ldr r2, [r7, #8] + 800a442: 2100 movs r1, #0 + 800a444: 68f8 ldr r0, [r7, #12] + 800a446: f000 fc26 bl 800ac96 return USBD_OK; - 800a072: 2300 movs r3, #0 + 800a44a: 2300 movs r3, #0 } - 800a074: 4618 mov r0, r3 - 800a076: 3710 adds r7, #16 - 800a078: 46bd mov sp, r7 - 800a07a: bd80 pop {r7, pc} + 800a44c: 4618 mov r0, r3 + 800a44e: 3710 adds r7, #16 + 800a450: 46bd mov sp, r7 + 800a452: bd80 pop {r7, pc} -0800a07c : +0800a454 : * @param len: length of data to be sent * @retval status */ USBD_StatusTypeDef USBD_CtlContinueSendData(USBD_HandleTypeDef *pdev, uint8_t *pbuf, uint32_t len) { - 800a07c: b580 push {r7, lr} - 800a07e: b084 sub sp, #16 - 800a080: af00 add r7, sp, #0 - 800a082: 60f8 str r0, [r7, #12] - 800a084: 60b9 str r1, [r7, #8] - 800a086: 607a str r2, [r7, #4] + 800a454: b580 push {r7, lr} + 800a456: b084 sub sp, #16 + 800a458: af00 add r7, sp, #0 + 800a45a: 60f8 str r0, [r7, #12] + 800a45c: 60b9 str r1, [r7, #8] + 800a45e: 607a str r2, [r7, #4] /* Start the next transfer */ (void)USBD_LL_Transmit(pdev, 0x00U, pbuf, len); - 800a088: 687b ldr r3, [r7, #4] - 800a08a: 68ba ldr r2, [r7, #8] - 800a08c: 2100 movs r1, #0 - 800a08e: 68f8 ldr r0, [r7, #12] - 800a090: f000 fc15 bl 800a8be + 800a460: 687b ldr r3, [r7, #4] + 800a462: 68ba ldr r2, [r7, #8] + 800a464: 2100 movs r1, #0 + 800a466: 68f8 ldr r0, [r7, #12] + 800a468: f000 fc15 bl 800ac96 return USBD_OK; - 800a094: 2300 movs r3, #0 + 800a46c: 2300 movs r3, #0 } - 800a096: 4618 mov r0, r3 - 800a098: 3710 adds r7, #16 - 800a09a: 46bd mov sp, r7 - 800a09c: bd80 pop {r7, pc} + 800a46e: 4618 mov r0, r3 + 800a470: 3710 adds r7, #16 + 800a472: 46bd mov sp, r7 + 800a474: bd80 pop {r7, pc} -0800a09e : +0800a476 : * @param len: length of data to be received * @retval status */ USBD_StatusTypeDef USBD_CtlContinueRx(USBD_HandleTypeDef *pdev, uint8_t *pbuf, uint32_t len) { - 800a09e: b580 push {r7, lr} - 800a0a0: b084 sub sp, #16 - 800a0a2: af00 add r7, sp, #0 - 800a0a4: 60f8 str r0, [r7, #12] - 800a0a6: 60b9 str r1, [r7, #8] - 800a0a8: 607a str r2, [r7, #4] + 800a476: b580 push {r7, lr} + 800a478: b084 sub sp, #16 + 800a47a: af00 add r7, sp, #0 + 800a47c: 60f8 str r0, [r7, #12] + 800a47e: 60b9 str r1, [r7, #8] + 800a480: 607a str r2, [r7, #4] (void)USBD_LL_PrepareReceive(pdev, 0U, pbuf, len); - 800a0aa: 687b ldr r3, [r7, #4] - 800a0ac: 68ba ldr r2, [r7, #8] - 800a0ae: 2100 movs r1, #0 - 800a0b0: 68f8 ldr r0, [r7, #12] - 800a0b2: f000 fc25 bl 800a900 + 800a482: 687b ldr r3, [r7, #4] + 800a484: 68ba ldr r2, [r7, #8] + 800a486: 2100 movs r1, #0 + 800a488: 68f8 ldr r0, [r7, #12] + 800a48a: f000 fc25 bl 800acd8 return USBD_OK; - 800a0b6: 2300 movs r3, #0 + 800a48e: 2300 movs r3, #0 } - 800a0b8: 4618 mov r0, r3 - 800a0ba: 3710 adds r7, #16 - 800a0bc: 46bd mov sp, r7 - 800a0be: bd80 pop {r7, pc} + 800a490: 4618 mov r0, r3 + 800a492: 3710 adds r7, #16 + 800a494: 46bd mov sp, r7 + 800a496: bd80 pop {r7, pc} -0800a0c0 : +0800a498 : * send zero lzngth packet on the ctl pipe * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_CtlSendStatus(USBD_HandleTypeDef *pdev) { - 800a0c0: b580 push {r7, lr} - 800a0c2: b082 sub sp, #8 - 800a0c4: af00 add r7, sp, #0 - 800a0c6: 6078 str r0, [r7, #4] + 800a498: b580 push {r7, lr} + 800a49a: b082 sub sp, #8 + 800a49c: af00 add r7, sp, #0 + 800a49e: 6078 str r0, [r7, #4] /* Set EP0 State */ pdev->ep0_state = USBD_EP0_STATUS_IN; - 800a0c8: 687b ldr r3, [r7, #4] - 800a0ca: 2204 movs r2, #4 - 800a0cc: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 800a4a0: 687b ldr r3, [r7, #4] + 800a4a2: 2204 movs r2, #4 + 800a4a4: f8c3 2294 str.w r2, [r3, #660] @ 0x294 /* Start the transfer */ (void)USBD_LL_Transmit(pdev, 0x00U, NULL, 0U); - 800a0d0: 2300 movs r3, #0 - 800a0d2: 2200 movs r2, #0 - 800a0d4: 2100 movs r1, #0 - 800a0d6: 6878 ldr r0, [r7, #4] - 800a0d8: f000 fbf1 bl 800a8be + 800a4a8: 2300 movs r3, #0 + 800a4aa: 2200 movs r2, #0 + 800a4ac: 2100 movs r1, #0 + 800a4ae: 6878 ldr r0, [r7, #4] + 800a4b0: f000 fbf1 bl 800ac96 return USBD_OK; - 800a0dc: 2300 movs r3, #0 + 800a4b4: 2300 movs r3, #0 } - 800a0de: 4618 mov r0, r3 - 800a0e0: 3708 adds r7, #8 - 800a0e2: 46bd mov sp, r7 - 800a0e4: bd80 pop {r7, pc} + 800a4b6: 4618 mov r0, r3 + 800a4b8: 3708 adds r7, #8 + 800a4ba: 46bd mov sp, r7 + 800a4bc: bd80 pop {r7, pc} -0800a0e6 : +0800a4be : * receive zero lzngth packet on the ctl pipe * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_CtlReceiveStatus(USBD_HandleTypeDef *pdev) { - 800a0e6: b580 push {r7, lr} - 800a0e8: b082 sub sp, #8 - 800a0ea: af00 add r7, sp, #0 - 800a0ec: 6078 str r0, [r7, #4] + 800a4be: b580 push {r7, lr} + 800a4c0: b082 sub sp, #8 + 800a4c2: af00 add r7, sp, #0 + 800a4c4: 6078 str r0, [r7, #4] /* Set EP0 State */ pdev->ep0_state = USBD_EP0_STATUS_OUT; - 800a0ee: 687b ldr r3, [r7, #4] - 800a0f0: 2205 movs r2, #5 - 800a0f2: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 800a4c6: 687b ldr r3, [r7, #4] + 800a4c8: 2205 movs r2, #5 + 800a4ca: f8c3 2294 str.w r2, [r3, #660] @ 0x294 /* Start the transfer */ (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); - 800a0f6: 2300 movs r3, #0 - 800a0f8: 2200 movs r2, #0 - 800a0fa: 2100 movs r1, #0 - 800a0fc: 6878 ldr r0, [r7, #4] - 800a0fe: f000 fbff bl 800a900 + 800a4ce: 2300 movs r3, #0 + 800a4d0: 2200 movs r2, #0 + 800a4d2: 2100 movs r1, #0 + 800a4d4: 6878 ldr r0, [r7, #4] + 800a4d6: f000 fbff bl 800acd8 return USBD_OK; - 800a102: 2300 movs r3, #0 + 800a4da: 2300 movs r3, #0 } - 800a104: 4618 mov r0, r3 - 800a106: 3708 adds r7, #8 - 800a108: 46bd mov sp, r7 - 800a10a: bd80 pop {r7, pc} + 800a4dc: 4618 mov r0, r3 + 800a4de: 3708 adds r7, #8 + 800a4e0: 46bd mov sp, r7 + 800a4e2: bd80 pop {r7, pc} -0800a10c : +0800a4e4 : /** * Init USB device Library, add supported class and start the library * @retval None */ void MX_USB_DEVICE_Init(void) { - 800a10c: b580 push {r7, lr} - 800a10e: af00 add r7, sp, #0 + 800a4e4: b580 push {r7, lr} + 800a4e6: af00 add r7, sp, #0 /* USER CODE BEGIN USB_DEVICE_Init_PreTreatment */ /* USER CODE END USB_DEVICE_Init_PreTreatment */ /* Init Device Library, add supported class and start the library. */ if (USBD_Init(&hUsbDeviceFS, &FS_Desc, DEVICE_FS) != USBD_OK) - 800a110: 2200 movs r2, #0 - 800a112: 490e ldr r1, [pc, #56] @ (800a14c ) - 800a114: 480e ldr r0, [pc, #56] @ (800a150 ) - 800a116: f7fe fcd1 bl 8008abc - 800a11a: 4603 mov r3, r0 - 800a11c: 2b00 cmp r3, #0 - 800a11e: d001 beq.n 800a124 + 800a4e8: 2200 movs r2, #0 + 800a4ea: 490e ldr r1, [pc, #56] @ (800a524 ) + 800a4ec: 480e ldr r0, [pc, #56] @ (800a528 ) + 800a4ee: f7fe fcd1 bl 8008e94 + 800a4f2: 4603 mov r3, r0 + 800a4f4: 2b00 cmp r3, #0 + 800a4f6: d001 beq.n 800a4fc { Error_Handler(); - 800a120: f7f6 feec bl 8000efc + 800a4f8: f7f6 fe38 bl 800116c } if (USBD_RegisterClass(&hUsbDeviceFS, &USBD_HID) != USBD_OK) - 800a124: 490b ldr r1, [pc, #44] @ (800a154 ) - 800a126: 480a ldr r0, [pc, #40] @ (800a150 ) - 800a128: f7fe fcf8 bl 8008b1c - 800a12c: 4603 mov r3, r0 - 800a12e: 2b00 cmp r3, #0 - 800a130: d001 beq.n 800a136 + 800a4fc: 490b ldr r1, [pc, #44] @ (800a52c ) + 800a4fe: 480a ldr r0, [pc, #40] @ (800a528 ) + 800a500: f7fe fcf8 bl 8008ef4 + 800a504: 4603 mov r3, r0 + 800a506: 2b00 cmp r3, #0 + 800a508: d001 beq.n 800a50e { Error_Handler(); - 800a132: f7f6 fee3 bl 8000efc + 800a50a: f7f6 fe2f bl 800116c } if (USBD_Start(&hUsbDeviceFS) != USBD_OK) - 800a136: 4806 ldr r0, [pc, #24] @ (800a150 ) - 800a138: f7fe fd26 bl 8008b88 - 800a13c: 4603 mov r3, r0 - 800a13e: 2b00 cmp r3, #0 - 800a140: d001 beq.n 800a146 + 800a50e: 4806 ldr r0, [pc, #24] @ (800a528 ) + 800a510: f7fe fd26 bl 8008f60 + 800a514: 4603 mov r3, r0 + 800a516: 2b00 cmp r3, #0 + 800a518: d001 beq.n 800a51e { Error_Handler(); - 800a142: f7f6 fedb bl 8000efc + 800a51a: f7f6 fe27 bl 800116c } /* USER CODE BEGIN USB_DEVICE_Init_PostTreatment */ /* USER CODE END USB_DEVICE_Init_PostTreatment */ } - 800a146: bf00 nop - 800a148: bd80 pop {r7, pc} - 800a14a: bf00 nop - 800a14c: 20000140 .word 0x20000140 - 800a150: 20000738 .word 0x20000738 - 800a154: 2000009c .word 0x2000009c + 800a51e: bf00 nop + 800a520: bd80 pop {r7, pc} + 800a522: bf00 nop + 800a524: 20000140 .word 0x20000140 + 800a528: 20000d88 .word 0x20000d88 + 800a52c: 2000009c .word 0x2000009c -0800a158 : +0800a530 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_DeviceDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a158: b480 push {r7} - 800a15a: b083 sub sp, #12 - 800a15c: af00 add r7, sp, #0 - 800a15e: 4603 mov r3, r0 - 800a160: 6039 str r1, [r7, #0] - 800a162: 71fb strb r3, [r7, #7] + 800a530: b480 push {r7} + 800a532: b083 sub sp, #12 + 800a534: af00 add r7, sp, #0 + 800a536: 4603 mov r3, r0 + 800a538: 6039 str r1, [r7, #0] + 800a53a: 71fb strb r3, [r7, #7] UNUSED(speed); *length = sizeof(USBD_FS_DeviceDesc); - 800a164: 683b ldr r3, [r7, #0] - 800a166: 2212 movs r2, #18 - 800a168: 801a strh r2, [r3, #0] + 800a53c: 683b ldr r3, [r7, #0] + 800a53e: 2212 movs r2, #18 + 800a540: 801a strh r2, [r3, #0] return USBD_FS_DeviceDesc; - 800a16a: 4b03 ldr r3, [pc, #12] @ (800a178 ) + 800a542: 4b03 ldr r3, [pc, #12] @ (800a550 ) } - 800a16c: 4618 mov r0, r3 - 800a16e: 370c adds r7, #12 - 800a170: 46bd mov sp, r7 - 800a172: f85d 7b04 ldr.w r7, [sp], #4 - 800a176: 4770 bx lr - 800a178: 20000160 .word 0x20000160 + 800a544: 4618 mov r0, r3 + 800a546: 370c adds r7, #12 + 800a548: 46bd mov sp, r7 + 800a54a: f85d 7b04 ldr.w r7, [sp], #4 + 800a54e: 4770 bx lr + 800a550: 20000160 .word 0x20000160 -0800a17c : +0800a554 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_LangIDStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a17c: b480 push {r7} - 800a17e: b083 sub sp, #12 - 800a180: af00 add r7, sp, #0 - 800a182: 4603 mov r3, r0 - 800a184: 6039 str r1, [r7, #0] - 800a186: 71fb strb r3, [r7, #7] + 800a554: b480 push {r7} + 800a556: b083 sub sp, #12 + 800a558: af00 add r7, sp, #0 + 800a55a: 4603 mov r3, r0 + 800a55c: 6039 str r1, [r7, #0] + 800a55e: 71fb strb r3, [r7, #7] UNUSED(speed); *length = sizeof(USBD_LangIDDesc); - 800a188: 683b ldr r3, [r7, #0] - 800a18a: 2204 movs r2, #4 - 800a18c: 801a strh r2, [r3, #0] + 800a560: 683b ldr r3, [r7, #0] + 800a562: 2204 movs r2, #4 + 800a564: 801a strh r2, [r3, #0] return USBD_LangIDDesc; - 800a18e: 4b03 ldr r3, [pc, #12] @ (800a19c ) + 800a566: 4b03 ldr r3, [pc, #12] @ (800a574 ) } - 800a190: 4618 mov r0, r3 - 800a192: 370c adds r7, #12 - 800a194: 46bd mov sp, r7 - 800a196: f85d 7b04 ldr.w r7, [sp], #4 - 800a19a: 4770 bx lr - 800a19c: 20000180 .word 0x20000180 + 800a568: 4618 mov r0, r3 + 800a56a: 370c adds r7, #12 + 800a56c: 46bd mov sp, r7 + 800a56e: f85d 7b04 ldr.w r7, [sp], #4 + 800a572: 4770 bx lr + 800a574: 20000180 .word 0x20000180 -0800a1a0 : +0800a578 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_ProductStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a1a0: b580 push {r7, lr} - 800a1a2: b082 sub sp, #8 - 800a1a4: af00 add r7, sp, #0 - 800a1a6: 4603 mov r3, r0 - 800a1a8: 6039 str r1, [r7, #0] - 800a1aa: 71fb strb r3, [r7, #7] + 800a578: b580 push {r7, lr} + 800a57a: b082 sub sp, #8 + 800a57c: af00 add r7, sp, #0 + 800a57e: 4603 mov r3, r0 + 800a580: 6039 str r1, [r7, #0] + 800a582: 71fb strb r3, [r7, #7] if(speed == 0) - 800a1ac: 79fb ldrb r3, [r7, #7] - 800a1ae: 2b00 cmp r3, #0 - 800a1b0: d105 bne.n 800a1be + 800a584: 79fb ldrb r3, [r7, #7] + 800a586: 2b00 cmp r3, #0 + 800a588: d105 bne.n 800a596 { USBD_GetString((uint8_t *)USBD_PRODUCT_STRING_FS, USBD_StrDesc, length); - 800a1b2: 683a ldr r2, [r7, #0] - 800a1b4: 4907 ldr r1, [pc, #28] @ (800a1d4 ) - 800a1b6: 4808 ldr r0, [pc, #32] @ (800a1d8 ) - 800a1b8: f7ff fed6 bl 8009f68 - 800a1bc: e004 b.n 800a1c8 + 800a58a: 683a ldr r2, [r7, #0] + 800a58c: 4907 ldr r1, [pc, #28] @ (800a5ac ) + 800a58e: 4808 ldr r0, [pc, #32] @ (800a5b0 ) + 800a590: f7ff fed6 bl 800a340 + 800a594: e004 b.n 800a5a0 } else { USBD_GetString((uint8_t *)USBD_PRODUCT_STRING_FS, USBD_StrDesc, length); - 800a1be: 683a ldr r2, [r7, #0] - 800a1c0: 4904 ldr r1, [pc, #16] @ (800a1d4 ) - 800a1c2: 4805 ldr r0, [pc, #20] @ (800a1d8 ) - 800a1c4: f7ff fed0 bl 8009f68 + 800a596: 683a ldr r2, [r7, #0] + 800a598: 4904 ldr r1, [pc, #16] @ (800a5ac ) + 800a59a: 4805 ldr r0, [pc, #20] @ (800a5b0 ) + 800a59c: f7ff fed0 bl 800a340 } return USBD_StrDesc; - 800a1c8: 4b02 ldr r3, [pc, #8] @ (800a1d4 ) + 800a5a0: 4b02 ldr r3, [pc, #8] @ (800a5ac ) } - 800a1ca: 4618 mov r0, r3 - 800a1cc: 3708 adds r7, #8 - 800a1ce: 46bd mov sp, r7 - 800a1d0: bd80 pop {r7, pc} - 800a1d2: bf00 nop - 800a1d4: 20000a14 .word 0x20000a14 - 800a1d8: 0800aad8 .word 0x0800aad8 + 800a5a2: 4618 mov r0, r3 + 800a5a4: 3708 adds r7, #8 + 800a5a6: 46bd mov sp, r7 + 800a5a8: bd80 pop {r7, pc} + 800a5aa: bf00 nop + 800a5ac: 20001064 .word 0x20001064 + 800a5b0: 0800aecc .word 0x0800aecc -0800a1dc : +0800a5b4 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_ManufacturerStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a1dc: b580 push {r7, lr} - 800a1de: b082 sub sp, #8 - 800a1e0: af00 add r7, sp, #0 - 800a1e2: 4603 mov r3, r0 - 800a1e4: 6039 str r1, [r7, #0] - 800a1e6: 71fb strb r3, [r7, #7] + 800a5b4: b580 push {r7, lr} + 800a5b6: b082 sub sp, #8 + 800a5b8: af00 add r7, sp, #0 + 800a5ba: 4603 mov r3, r0 + 800a5bc: 6039 str r1, [r7, #0] + 800a5be: 71fb strb r3, [r7, #7] UNUSED(speed); USBD_GetString((uint8_t *)USBD_MANUFACTURER_STRING, USBD_StrDesc, length); - 800a1e8: 683a ldr r2, [r7, #0] - 800a1ea: 4904 ldr r1, [pc, #16] @ (800a1fc ) - 800a1ec: 4804 ldr r0, [pc, #16] @ (800a200 ) - 800a1ee: f7ff febb bl 8009f68 + 800a5c0: 683a ldr r2, [r7, #0] + 800a5c2: 4904 ldr r1, [pc, #16] @ (800a5d4 ) + 800a5c4: 4804 ldr r0, [pc, #16] @ (800a5d8 ) + 800a5c6: f7ff febb bl 800a340 return USBD_StrDesc; - 800a1f2: 4b02 ldr r3, [pc, #8] @ (800a1fc ) + 800a5ca: 4b02 ldr r3, [pc, #8] @ (800a5d4 ) } - 800a1f4: 4618 mov r0, r3 - 800a1f6: 3708 adds r7, #8 - 800a1f8: 46bd mov sp, r7 - 800a1fa: bd80 pop {r7, pc} - 800a1fc: 20000a14 .word 0x20000a14 - 800a200: 0800aaec .word 0x0800aaec + 800a5cc: 4618 mov r0, r3 + 800a5ce: 3708 adds r7, #8 + 800a5d0: 46bd mov sp, r7 + 800a5d2: bd80 pop {r7, pc} + 800a5d4: 20001064 .word 0x20001064 + 800a5d8: 0800aee0 .word 0x0800aee0 -0800a204 : +0800a5dc : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_SerialStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a204: b580 push {r7, lr} - 800a206: b082 sub sp, #8 - 800a208: af00 add r7, sp, #0 - 800a20a: 4603 mov r3, r0 - 800a20c: 6039 str r1, [r7, #0] - 800a20e: 71fb strb r3, [r7, #7] + 800a5dc: b580 push {r7, lr} + 800a5de: b082 sub sp, #8 + 800a5e0: af00 add r7, sp, #0 + 800a5e2: 4603 mov r3, r0 + 800a5e4: 6039 str r1, [r7, #0] + 800a5e6: 71fb strb r3, [r7, #7] UNUSED(speed); *length = USB_SIZ_STRING_SERIAL; - 800a210: 683b ldr r3, [r7, #0] - 800a212: 221a movs r2, #26 - 800a214: 801a strh r2, [r3, #0] + 800a5e8: 683b ldr r3, [r7, #0] + 800a5ea: 221a movs r2, #26 + 800a5ec: 801a strh r2, [r3, #0] /* Update the serial number string descriptor with the data from the unique * ID */ Get_SerialNum(); - 800a216: f000 f855 bl 800a2c4 + 800a5ee: f000 f855 bl 800a69c /* USER CODE BEGIN USBD_FS_SerialStrDescriptor */ /* USER CODE END USBD_FS_SerialStrDescriptor */ return (uint8_t *) USBD_StringSerial; - 800a21a: 4b02 ldr r3, [pc, #8] @ (800a224 ) + 800a5f2: 4b02 ldr r3, [pc, #8] @ (800a5fc ) } - 800a21c: 4618 mov r0, r3 - 800a21e: 3708 adds r7, #8 - 800a220: 46bd mov sp, r7 - 800a222: bd80 pop {r7, pc} - 800a224: 20000184 .word 0x20000184 + 800a5f4: 4618 mov r0, r3 + 800a5f6: 3708 adds r7, #8 + 800a5f8: 46bd mov sp, r7 + 800a5fa: bd80 pop {r7, pc} + 800a5fc: 20000184 .word 0x20000184 -0800a228 : +0800a600 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_ConfigStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a228: b580 push {r7, lr} - 800a22a: b082 sub sp, #8 - 800a22c: af00 add r7, sp, #0 - 800a22e: 4603 mov r3, r0 - 800a230: 6039 str r1, [r7, #0] - 800a232: 71fb strb r3, [r7, #7] + 800a600: b580 push {r7, lr} + 800a602: b082 sub sp, #8 + 800a604: af00 add r7, sp, #0 + 800a606: 4603 mov r3, r0 + 800a608: 6039 str r1, [r7, #0] + 800a60a: 71fb strb r3, [r7, #7] if(speed == USBD_SPEED_HIGH) - 800a234: 79fb ldrb r3, [r7, #7] - 800a236: 2b00 cmp r3, #0 - 800a238: d105 bne.n 800a246 + 800a60c: 79fb ldrb r3, [r7, #7] + 800a60e: 2b00 cmp r3, #0 + 800a610: d105 bne.n 800a61e { USBD_GetString((uint8_t *)USBD_CONFIGURATION_STRING_FS, USBD_StrDesc, length); - 800a23a: 683a ldr r2, [r7, #0] - 800a23c: 4907 ldr r1, [pc, #28] @ (800a25c ) - 800a23e: 4808 ldr r0, [pc, #32] @ (800a260 ) - 800a240: f7ff fe92 bl 8009f68 - 800a244: e004 b.n 800a250 + 800a612: 683a ldr r2, [r7, #0] + 800a614: 4907 ldr r1, [pc, #28] @ (800a634 ) + 800a616: 4808 ldr r0, [pc, #32] @ (800a638 ) + 800a618: f7ff fe92 bl 800a340 + 800a61c: e004 b.n 800a628 } else { USBD_GetString((uint8_t *)USBD_CONFIGURATION_STRING_FS, USBD_StrDesc, length); - 800a246: 683a ldr r2, [r7, #0] - 800a248: 4904 ldr r1, [pc, #16] @ (800a25c ) - 800a24a: 4805 ldr r0, [pc, #20] @ (800a260 ) - 800a24c: f7ff fe8c bl 8009f68 + 800a61e: 683a ldr r2, [r7, #0] + 800a620: 4904 ldr r1, [pc, #16] @ (800a634 ) + 800a622: 4805 ldr r0, [pc, #20] @ (800a638 ) + 800a624: f7ff fe8c bl 800a340 } return USBD_StrDesc; - 800a250: 4b02 ldr r3, [pc, #8] @ (800a25c ) + 800a628: 4b02 ldr r3, [pc, #8] @ (800a634 ) } - 800a252: 4618 mov r0, r3 - 800a254: 3708 adds r7, #8 - 800a256: 46bd mov sp, r7 - 800a258: bd80 pop {r7, pc} - 800a25a: bf00 nop - 800a25c: 20000a14 .word 0x20000a14 - 800a260: 0800aaf8 .word 0x0800aaf8 + 800a62a: 4618 mov r0, r3 + 800a62c: 3708 adds r7, #8 + 800a62e: 46bd mov sp, r7 + 800a630: bd80 pop {r7, pc} + 800a632: bf00 nop + 800a634: 20001064 .word 0x20001064 + 800a638: 0800aeec .word 0x0800aeec -0800a264 : +0800a63c : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_InterfaceStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a264: b580 push {r7, lr} - 800a266: b082 sub sp, #8 - 800a268: af00 add r7, sp, #0 - 800a26a: 4603 mov r3, r0 - 800a26c: 6039 str r1, [r7, #0] - 800a26e: 71fb strb r3, [r7, #7] + 800a63c: b580 push {r7, lr} + 800a63e: b082 sub sp, #8 + 800a640: af00 add r7, sp, #0 + 800a642: 4603 mov r3, r0 + 800a644: 6039 str r1, [r7, #0] + 800a646: 71fb strb r3, [r7, #7] if(speed == 0) - 800a270: 79fb ldrb r3, [r7, #7] - 800a272: 2b00 cmp r3, #0 - 800a274: d105 bne.n 800a282 + 800a648: 79fb ldrb r3, [r7, #7] + 800a64a: 2b00 cmp r3, #0 + 800a64c: d105 bne.n 800a65a { USBD_GetString((uint8_t *)USBD_INTERFACE_STRING_FS, USBD_StrDesc, length); - 800a276: 683a ldr r2, [r7, #0] - 800a278: 4907 ldr r1, [pc, #28] @ (800a298 ) - 800a27a: 4808 ldr r0, [pc, #32] @ (800a29c ) - 800a27c: f7ff fe74 bl 8009f68 - 800a280: e004 b.n 800a28c + 800a64e: 683a ldr r2, [r7, #0] + 800a650: 4907 ldr r1, [pc, #28] @ (800a670 ) + 800a652: 4808 ldr r0, [pc, #32] @ (800a674 ) + 800a654: f7ff fe74 bl 800a340 + 800a658: e004 b.n 800a664 } else { USBD_GetString((uint8_t *)USBD_INTERFACE_STRING_FS, USBD_StrDesc, length); - 800a282: 683a ldr r2, [r7, #0] - 800a284: 4904 ldr r1, [pc, #16] @ (800a298 ) - 800a286: 4805 ldr r0, [pc, #20] @ (800a29c ) - 800a288: f7ff fe6e bl 8009f68 + 800a65a: 683a ldr r2, [r7, #0] + 800a65c: 4904 ldr r1, [pc, #16] @ (800a670 ) + 800a65e: 4805 ldr r0, [pc, #20] @ (800a674 ) + 800a660: f7ff fe6e bl 800a340 } return USBD_StrDesc; - 800a28c: 4b02 ldr r3, [pc, #8] @ (800a298 ) + 800a664: 4b02 ldr r3, [pc, #8] @ (800a670 ) } - 800a28e: 4618 mov r0, r3 - 800a290: 3708 adds r7, #8 - 800a292: 46bd mov sp, r7 - 800a294: bd80 pop {r7, pc} - 800a296: bf00 nop - 800a298: 20000a14 .word 0x20000a14 - 800a29c: 0800ab04 .word 0x0800ab04 + 800a666: 4618 mov r0, r3 + 800a668: 3708 adds r7, #8 + 800a66a: 46bd mov sp, r7 + 800a66c: bd80 pop {r7, pc} + 800a66e: bf00 nop + 800a670: 20001064 .word 0x20001064 + 800a674: 0800aef8 .word 0x0800aef8 -0800a2a0 : +0800a678 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_USR_BOSDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a2a0: b480 push {r7} - 800a2a2: b083 sub sp, #12 - 800a2a4: af00 add r7, sp, #0 - 800a2a6: 4603 mov r3, r0 - 800a2a8: 6039 str r1, [r7, #0] - 800a2aa: 71fb strb r3, [r7, #7] + 800a678: b480 push {r7} + 800a67a: b083 sub sp, #12 + 800a67c: af00 add r7, sp, #0 + 800a67e: 4603 mov r3, r0 + 800a680: 6039 str r1, [r7, #0] + 800a682: 71fb strb r3, [r7, #7] UNUSED(speed); *length = sizeof(USBD_FS_BOSDesc); - 800a2ac: 683b ldr r3, [r7, #0] - 800a2ae: 220c movs r2, #12 - 800a2b0: 801a strh r2, [r3, #0] + 800a684: 683b ldr r3, [r7, #0] + 800a686: 220c movs r2, #12 + 800a688: 801a strh r2, [r3, #0] return (uint8_t*)USBD_FS_BOSDesc; - 800a2b2: 4b03 ldr r3, [pc, #12] @ (800a2c0 ) + 800a68a: 4b03 ldr r3, [pc, #12] @ (800a698 ) } - 800a2b4: 4618 mov r0, r3 - 800a2b6: 370c adds r7, #12 - 800a2b8: 46bd mov sp, r7 - 800a2ba: f85d 7b04 ldr.w r7, [sp], #4 - 800a2be: 4770 bx lr - 800a2c0: 20000174 .word 0x20000174 + 800a68c: 4618 mov r0, r3 + 800a68e: 370c adds r7, #12 + 800a690: 46bd mov sp, r7 + 800a692: f85d 7b04 ldr.w r7, [sp], #4 + 800a696: 4770 bx lr + 800a698: 20000174 .word 0x20000174 -0800a2c4 : +0800a69c : * @brief Create the serial number string descriptor * @param None * @retval None */ static void Get_SerialNum(void) { - 800a2c4: b580 push {r7, lr} - 800a2c6: b084 sub sp, #16 - 800a2c8: af00 add r7, sp, #0 + 800a69c: b580 push {r7, lr} + 800a69e: b084 sub sp, #16 + 800a6a0: af00 add r7, sp, #0 uint32_t deviceserial0; uint32_t deviceserial1; uint32_t deviceserial2; deviceserial0 = *(uint32_t *) DEVICE_ID1; - 800a2ca: 4b0f ldr r3, [pc, #60] @ (800a308 ) - 800a2cc: 681b ldr r3, [r3, #0] - 800a2ce: 60fb str r3, [r7, #12] + 800a6a2: 4b0f ldr r3, [pc, #60] @ (800a6e0 ) + 800a6a4: 681b ldr r3, [r3, #0] + 800a6a6: 60fb str r3, [r7, #12] deviceserial1 = *(uint32_t *) DEVICE_ID2; - 800a2d0: 4b0e ldr r3, [pc, #56] @ (800a30c ) - 800a2d2: 681b ldr r3, [r3, #0] - 800a2d4: 60bb str r3, [r7, #8] + 800a6a8: 4b0e ldr r3, [pc, #56] @ (800a6e4 ) + 800a6aa: 681b ldr r3, [r3, #0] + 800a6ac: 60bb str r3, [r7, #8] deviceserial2 = *(uint32_t *) DEVICE_ID3; - 800a2d6: 4b0e ldr r3, [pc, #56] @ (800a310 ) - 800a2d8: 681b ldr r3, [r3, #0] - 800a2da: 607b str r3, [r7, #4] + 800a6ae: 4b0e ldr r3, [pc, #56] @ (800a6e8 ) + 800a6b0: 681b ldr r3, [r3, #0] + 800a6b2: 607b str r3, [r7, #4] deviceserial0 += deviceserial2; - 800a2dc: 68fa ldr r2, [r7, #12] - 800a2de: 687b ldr r3, [r7, #4] - 800a2e0: 4413 add r3, r2 - 800a2e2: 60fb str r3, [r7, #12] + 800a6b4: 68fa ldr r2, [r7, #12] + 800a6b6: 687b ldr r3, [r7, #4] + 800a6b8: 4413 add r3, r2 + 800a6ba: 60fb str r3, [r7, #12] if (deviceserial0 != 0) - 800a2e4: 68fb ldr r3, [r7, #12] - 800a2e6: 2b00 cmp r3, #0 - 800a2e8: d009 beq.n 800a2fe + 800a6bc: 68fb ldr r3, [r7, #12] + 800a6be: 2b00 cmp r3, #0 + 800a6c0: d009 beq.n 800a6d6 { IntToUnicode(deviceserial0, &USBD_StringSerial[2], 8); - 800a2ea: 2208 movs r2, #8 - 800a2ec: 4909 ldr r1, [pc, #36] @ (800a314 ) - 800a2ee: 68f8 ldr r0, [r7, #12] - 800a2f0: f000 f814 bl 800a31c + 800a6c2: 2208 movs r2, #8 + 800a6c4: 4909 ldr r1, [pc, #36] @ (800a6ec ) + 800a6c6: 68f8 ldr r0, [r7, #12] + 800a6c8: f000 f814 bl 800a6f4 IntToUnicode(deviceserial1, &USBD_StringSerial[18], 4); - 800a2f4: 2204 movs r2, #4 - 800a2f6: 4908 ldr r1, [pc, #32] @ (800a318 ) - 800a2f8: 68b8 ldr r0, [r7, #8] - 800a2fa: f000 f80f bl 800a31c + 800a6cc: 2204 movs r2, #4 + 800a6ce: 4908 ldr r1, [pc, #32] @ (800a6f0 ) + 800a6d0: 68b8 ldr r0, [r7, #8] + 800a6d2: f000 f80f bl 800a6f4 } } - 800a2fe: bf00 nop - 800a300: 3710 adds r7, #16 - 800a302: 46bd mov sp, r7 - 800a304: bd80 pop {r7, pc} - 800a306: bf00 nop - 800a308: 1fff7a10 .word 0x1fff7a10 - 800a30c: 1fff7a14 .word 0x1fff7a14 - 800a310: 1fff7a18 .word 0x1fff7a18 - 800a314: 20000186 .word 0x20000186 - 800a318: 20000196 .word 0x20000196 + 800a6d6: bf00 nop + 800a6d8: 3710 adds r7, #16 + 800a6da: 46bd mov sp, r7 + 800a6dc: bd80 pop {r7, pc} + 800a6de: bf00 nop + 800a6e0: 1fff7a10 .word 0x1fff7a10 + 800a6e4: 1fff7a14 .word 0x1fff7a14 + 800a6e8: 1fff7a18 .word 0x1fff7a18 + 800a6ec: 20000186 .word 0x20000186 + 800a6f0: 20000196 .word 0x20000196 -0800a31c : +0800a6f4 : * @param pbuf: pointer to the buffer * @param len: buffer length * @retval None */ static void IntToUnicode(uint32_t value, uint8_t * pbuf, uint8_t len) { - 800a31c: b480 push {r7} - 800a31e: b087 sub sp, #28 - 800a320: af00 add r7, sp, #0 - 800a322: 60f8 str r0, [r7, #12] - 800a324: 60b9 str r1, [r7, #8] - 800a326: 4613 mov r3, r2 - 800a328: 71fb strb r3, [r7, #7] + 800a6f4: b480 push {r7} + 800a6f6: b087 sub sp, #28 + 800a6f8: af00 add r7, sp, #0 + 800a6fa: 60f8 str r0, [r7, #12] + 800a6fc: 60b9 str r1, [r7, #8] + 800a6fe: 4613 mov r3, r2 + 800a700: 71fb strb r3, [r7, #7] uint8_t idx = 0; - 800a32a: 2300 movs r3, #0 - 800a32c: 75fb strb r3, [r7, #23] + 800a702: 2300 movs r3, #0 + 800a704: 75fb strb r3, [r7, #23] for (idx = 0; idx < len; idx++) - 800a32e: 2300 movs r3, #0 - 800a330: 75fb strb r3, [r7, #23] - 800a332: e027 b.n 800a384 + 800a706: 2300 movs r3, #0 + 800a708: 75fb strb r3, [r7, #23] + 800a70a: e027 b.n 800a75c { if (((value >> 28)) < 0xA) - 800a334: 68fb ldr r3, [r7, #12] - 800a336: 0f1b lsrs r3, r3, #28 - 800a338: 2b09 cmp r3, #9 - 800a33a: d80b bhi.n 800a354 + 800a70c: 68fb ldr r3, [r7, #12] + 800a70e: 0f1b lsrs r3, r3, #28 + 800a710: 2b09 cmp r3, #9 + 800a712: d80b bhi.n 800a72c { pbuf[2 * idx] = (value >> 28) + '0'; - 800a33c: 68fb ldr r3, [r7, #12] - 800a33e: 0f1b lsrs r3, r3, #28 - 800a340: b2da uxtb r2, r3 - 800a342: 7dfb ldrb r3, [r7, #23] - 800a344: 005b lsls r3, r3, #1 - 800a346: 4619 mov r1, r3 - 800a348: 68bb ldr r3, [r7, #8] - 800a34a: 440b add r3, r1 - 800a34c: 3230 adds r2, #48 @ 0x30 - 800a34e: b2d2 uxtb r2, r2 - 800a350: 701a strb r2, [r3, #0] - 800a352: e00a b.n 800a36a + 800a714: 68fb ldr r3, [r7, #12] + 800a716: 0f1b lsrs r3, r3, #28 + 800a718: b2da uxtb r2, r3 + 800a71a: 7dfb ldrb r3, [r7, #23] + 800a71c: 005b lsls r3, r3, #1 + 800a71e: 4619 mov r1, r3 + 800a720: 68bb ldr r3, [r7, #8] + 800a722: 440b add r3, r1 + 800a724: 3230 adds r2, #48 @ 0x30 + 800a726: b2d2 uxtb r2, r2 + 800a728: 701a strb r2, [r3, #0] + 800a72a: e00a b.n 800a742 } else { pbuf[2 * idx] = (value >> 28) + 'A' - 10; - 800a354: 68fb ldr r3, [r7, #12] - 800a356: 0f1b lsrs r3, r3, #28 - 800a358: b2da uxtb r2, r3 - 800a35a: 7dfb ldrb r3, [r7, #23] - 800a35c: 005b lsls r3, r3, #1 - 800a35e: 4619 mov r1, r3 - 800a360: 68bb ldr r3, [r7, #8] - 800a362: 440b add r3, r1 - 800a364: 3237 adds r2, #55 @ 0x37 - 800a366: b2d2 uxtb r2, r2 - 800a368: 701a strb r2, [r3, #0] + 800a72c: 68fb ldr r3, [r7, #12] + 800a72e: 0f1b lsrs r3, r3, #28 + 800a730: b2da uxtb r2, r3 + 800a732: 7dfb ldrb r3, [r7, #23] + 800a734: 005b lsls r3, r3, #1 + 800a736: 4619 mov r1, r3 + 800a738: 68bb ldr r3, [r7, #8] + 800a73a: 440b add r3, r1 + 800a73c: 3237 adds r2, #55 @ 0x37 + 800a73e: b2d2 uxtb r2, r2 + 800a740: 701a strb r2, [r3, #0] } value = value << 4; - 800a36a: 68fb ldr r3, [r7, #12] - 800a36c: 011b lsls r3, r3, #4 - 800a36e: 60fb str r3, [r7, #12] + 800a742: 68fb ldr r3, [r7, #12] + 800a744: 011b lsls r3, r3, #4 + 800a746: 60fb str r3, [r7, #12] pbuf[2 * idx + 1] = 0; - 800a370: 7dfb ldrb r3, [r7, #23] - 800a372: 005b lsls r3, r3, #1 - 800a374: 3301 adds r3, #1 - 800a376: 68ba ldr r2, [r7, #8] - 800a378: 4413 add r3, r2 - 800a37a: 2200 movs r2, #0 - 800a37c: 701a strb r2, [r3, #0] + 800a748: 7dfb ldrb r3, [r7, #23] + 800a74a: 005b lsls r3, r3, #1 + 800a74c: 3301 adds r3, #1 + 800a74e: 68ba ldr r2, [r7, #8] + 800a750: 4413 add r3, r2 + 800a752: 2200 movs r2, #0 + 800a754: 701a strb r2, [r3, #0] for (idx = 0; idx < len; idx++) - 800a37e: 7dfb ldrb r3, [r7, #23] - 800a380: 3301 adds r3, #1 - 800a382: 75fb strb r3, [r7, #23] - 800a384: 7dfa ldrb r2, [r7, #23] - 800a386: 79fb ldrb r3, [r7, #7] - 800a388: 429a cmp r2, r3 - 800a38a: d3d3 bcc.n 800a334 + 800a756: 7dfb ldrb r3, [r7, #23] + 800a758: 3301 adds r3, #1 + 800a75a: 75fb strb r3, [r7, #23] + 800a75c: 7dfa ldrb r2, [r7, #23] + 800a75e: 79fb ldrb r3, [r7, #7] + 800a760: 429a cmp r2, r3 + 800a762: d3d3 bcc.n 800a70c } } - 800a38c: bf00 nop - 800a38e: bf00 nop - 800a390: 371c adds r7, #28 - 800a392: 46bd mov sp, r7 - 800a394: f85d 7b04 ldr.w r7, [sp], #4 - 800a398: 4770 bx lr + 800a764: bf00 nop + 800a766: bf00 nop + 800a768: 371c adds r7, #28 + 800a76a: 46bd mov sp, r7 + 800a76c: f85d 7b04 ldr.w r7, [sp], #4 + 800a770: 4770 bx lr ... -0800a39c : +0800a774 : LL Driver Callbacks (PCD -> USB Device Library) *******************************************************************************/ /* MSP Init */ void HAL_PCD_MspInit(PCD_HandleTypeDef* pcdHandle) { - 800a39c: b580 push {r7, lr} - 800a39e: b0a0 sub sp, #128 @ 0x80 - 800a3a0: af00 add r7, sp, #0 - 800a3a2: 6078 str r0, [r7, #4] + 800a774: b580 push {r7, lr} + 800a776: b0a0 sub sp, #128 @ 0x80 + 800a778: af00 add r7, sp, #0 + 800a77a: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800a3a4: f107 036c add.w r3, r7, #108 @ 0x6c - 800a3a8: 2200 movs r2, #0 - 800a3aa: 601a str r2, [r3, #0] - 800a3ac: 605a str r2, [r3, #4] - 800a3ae: 609a str r2, [r3, #8] - 800a3b0: 60da str r2, [r3, #12] - 800a3b2: 611a str r2, [r3, #16] + 800a77c: f107 036c add.w r3, r7, #108 @ 0x6c + 800a780: 2200 movs r2, #0 + 800a782: 601a str r2, [r3, #0] + 800a784: 605a str r2, [r3, #4] + 800a786: 609a str r2, [r3, #8] + 800a788: 60da str r2, [r3, #12] + 800a78a: 611a str r2, [r3, #16] RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0}; - 800a3b4: f107 0310 add.w r3, r7, #16 - 800a3b8: 225c movs r2, #92 @ 0x5c - 800a3ba: 2100 movs r1, #0 - 800a3bc: 4618 mov r0, r3 - 800a3be: f000 fb53 bl 800aa68 + 800a78c: f107 0310 add.w r3, r7, #16 + 800a790: 225c movs r2, #92 @ 0x5c + 800a792: 2100 movs r1, #0 + 800a794: 4618 mov r0, r3 + 800a796: f000 fb53 bl 800ae40 if(pcdHandle->Instance==USB_OTG_FS) - 800a3c2: 687b ldr r3, [r7, #4] - 800a3c4: 681b ldr r3, [r3, #0] - 800a3c6: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 - 800a3ca: d149 bne.n 800a460 + 800a79a: 687b ldr r3, [r7, #4] + 800a79c: 681b ldr r3, [r3, #0] + 800a79e: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 + 800a7a2: d149 bne.n 800a838 /* USER CODE END USB_OTG_FS_MspInit 0 */ /** Initializes the peripherals clock */ PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_CLK48; - 800a3cc: f44f 7380 mov.w r3, #256 @ 0x100 - 800a3d0: 613b str r3, [r7, #16] + 800a7a4: f44f 7380 mov.w r3, #256 @ 0x100 + 800a7a8: 613b str r3, [r7, #16] PeriphClkInitStruct.Clk48ClockSelection = RCC_CLK48CLKSOURCE_PLLQ; - 800a3d2: 2300 movs r3, #0 - 800a3d4: 667b str r3, [r7, #100] @ 0x64 + 800a7aa: 2300 movs r3, #0 + 800a7ac: 667b str r3, [r7, #100] @ 0x64 if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK) - 800a3d6: f107 0310 add.w r3, r7, #16 - 800a3da: 4618 mov r0, r3 - 800a3dc: f7f9 ffb4 bl 8004348 - 800a3e0: 4603 mov r3, r0 - 800a3e2: 2b00 cmp r3, #0 - 800a3e4: d001 beq.n 800a3ea + 800a7ae: f107 0310 add.w r3, r7, #16 + 800a7b2: 4618 mov r0, r3 + 800a7b4: f7f9 ff00 bl 80045b8 + 800a7b8: 4603 mov r3, r0 + 800a7ba: 2b00 cmp r3, #0 + 800a7bc: d001 beq.n 800a7c2 { Error_Handler(); - 800a3e6: f7f6 fd89 bl 8000efc + 800a7be: f7f6 fcd5 bl 800116c } __HAL_RCC_GPIOA_CLK_ENABLE(); - 800a3ea: 2300 movs r3, #0 - 800a3ec: 60fb str r3, [r7, #12] - 800a3ee: 4b1e ldr r3, [pc, #120] @ (800a468 ) - 800a3f0: 6b1b ldr r3, [r3, #48] @ 0x30 - 800a3f2: 4a1d ldr r2, [pc, #116] @ (800a468 ) - 800a3f4: f043 0301 orr.w r3, r3, #1 - 800a3f8: 6313 str r3, [r2, #48] @ 0x30 - 800a3fa: 4b1b ldr r3, [pc, #108] @ (800a468 ) - 800a3fc: 6b1b ldr r3, [r3, #48] @ 0x30 - 800a3fe: f003 0301 and.w r3, r3, #1 - 800a402: 60fb str r3, [r7, #12] - 800a404: 68fb ldr r3, [r7, #12] + 800a7c2: 2300 movs r3, #0 + 800a7c4: 60fb str r3, [r7, #12] + 800a7c6: 4b1e ldr r3, [pc, #120] @ (800a840 ) + 800a7c8: 6b1b ldr r3, [r3, #48] @ 0x30 + 800a7ca: 4a1d ldr r2, [pc, #116] @ (800a840 ) + 800a7cc: f043 0301 orr.w r3, r3, #1 + 800a7d0: 6313 str r3, [r2, #48] @ 0x30 + 800a7d2: 4b1b ldr r3, [pc, #108] @ (800a840 ) + 800a7d4: 6b1b ldr r3, [r3, #48] @ 0x30 + 800a7d6: f003 0301 and.w r3, r3, #1 + 800a7da: 60fb str r3, [r7, #12] + 800a7dc: 68fb ldr r3, [r7, #12] /**USB_OTG_FS GPIO Configuration PA11 ------> USB_OTG_FS_DM PA12 ------> USB_OTG_FS_DP */ GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12; - 800a406: f44f 53c0 mov.w r3, #6144 @ 0x1800 - 800a40a: 66fb str r3, [r7, #108] @ 0x6c + 800a7de: f44f 53c0 mov.w r3, #6144 @ 0x1800 + 800a7e2: 66fb str r3, [r7, #108] @ 0x6c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800a40c: 2302 movs r3, #2 - 800a40e: 673b str r3, [r7, #112] @ 0x70 + 800a7e4: 2302 movs r3, #2 + 800a7e6: 673b str r3, [r7, #112] @ 0x70 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800a410: 2300 movs r3, #0 - 800a412: 677b str r3, [r7, #116] @ 0x74 + 800a7e8: 2300 movs r3, #0 + 800a7ea: 677b str r3, [r7, #116] @ 0x74 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 800a414: 2303 movs r3, #3 - 800a416: 67bb str r3, [r7, #120] @ 0x78 + 800a7ec: 2303 movs r3, #3 + 800a7ee: 67bb str r3, [r7, #120] @ 0x78 GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; - 800a418: 230a movs r3, #10 - 800a41a: 67fb str r3, [r7, #124] @ 0x7c + 800a7f0: 230a movs r3, #10 + 800a7f2: 67fb str r3, [r7, #124] @ 0x7c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800a41c: f107 036c add.w r3, r7, #108 @ 0x6c - 800a420: 4619 mov r1, r3 - 800a422: 4812 ldr r0, [pc, #72] @ (800a46c ) - 800a424: f7f8 f8e6 bl 80025f4 + 800a7f4: f107 036c add.w r3, r7, #108 @ 0x6c + 800a7f8: 4619 mov r1, r3 + 800a7fa: 4812 ldr r0, [pc, #72] @ (800a844 ) + 800a7fc: f7f8 f832 bl 8002864 /* Peripheral clock enable */ __HAL_RCC_USB_OTG_FS_CLK_ENABLE(); - 800a428: 4b0f ldr r3, [pc, #60] @ (800a468 ) - 800a42a: 6b5b ldr r3, [r3, #52] @ 0x34 - 800a42c: 4a0e ldr r2, [pc, #56] @ (800a468 ) - 800a42e: f043 0380 orr.w r3, r3, #128 @ 0x80 - 800a432: 6353 str r3, [r2, #52] @ 0x34 - 800a434: 2300 movs r3, #0 - 800a436: 60bb str r3, [r7, #8] - 800a438: 4b0b ldr r3, [pc, #44] @ (800a468 ) - 800a43a: 6c5b ldr r3, [r3, #68] @ 0x44 - 800a43c: 4a0a ldr r2, [pc, #40] @ (800a468 ) - 800a43e: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 800a442: 6453 str r3, [r2, #68] @ 0x44 - 800a444: 4b08 ldr r3, [pc, #32] @ (800a468 ) - 800a446: 6c5b ldr r3, [r3, #68] @ 0x44 - 800a448: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 800a44c: 60bb str r3, [r7, #8] - 800a44e: 68bb ldr r3, [r7, #8] + 800a800: 4b0f ldr r3, [pc, #60] @ (800a840 ) + 800a802: 6b5b ldr r3, [r3, #52] @ 0x34 + 800a804: 4a0e ldr r2, [pc, #56] @ (800a840 ) + 800a806: f043 0380 orr.w r3, r3, #128 @ 0x80 + 800a80a: 6353 str r3, [r2, #52] @ 0x34 + 800a80c: 2300 movs r3, #0 + 800a80e: 60bb str r3, [r7, #8] + 800a810: 4b0b ldr r3, [pc, #44] @ (800a840 ) + 800a812: 6c5b ldr r3, [r3, #68] @ 0x44 + 800a814: 4a0a ldr r2, [pc, #40] @ (800a840 ) + 800a816: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 800a81a: 6453 str r3, [r2, #68] @ 0x44 + 800a81c: 4b08 ldr r3, [pc, #32] @ (800a840 ) + 800a81e: 6c5b ldr r3, [r3, #68] @ 0x44 + 800a820: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 800a824: 60bb str r3, [r7, #8] + 800a826: 68bb ldr r3, [r7, #8] /* Peripheral interrupt init */ HAL_NVIC_SetPriority(OTG_FS_IRQn, 0, 0); - 800a450: 2200 movs r2, #0 - 800a452: 2100 movs r1, #0 - 800a454: 2043 movs r0, #67 @ 0x43 - 800a456: f7f7 fc94 bl 8001d82 + 800a828: 2200 movs r2, #0 + 800a82a: 2100 movs r1, #0 + 800a82c: 2043 movs r0, #67 @ 0x43 + 800a82e: f7f7 fbe0 bl 8001ff2 HAL_NVIC_EnableIRQ(OTG_FS_IRQn); - 800a45a: 2043 movs r0, #67 @ 0x43 - 800a45c: f7f7 fcad bl 8001dba + 800a832: 2043 movs r0, #67 @ 0x43 + 800a834: f7f7 fbf9 bl 800202a /* USER CODE BEGIN USB_OTG_FS_MspInit 1 */ /* USER CODE END USB_OTG_FS_MspInit 1 */ } } - 800a460: bf00 nop - 800a462: 3780 adds r7, #128 @ 0x80 - 800a464: 46bd mov sp, r7 - 800a466: bd80 pop {r7, pc} - 800a468: 40023800 .word 0x40023800 - 800a46c: 40020000 .word 0x40020000 + 800a838: bf00 nop + 800a83a: 3780 adds r7, #128 @ 0x80 + 800a83c: 46bd mov sp, r7 + 800a83e: bd80 pop {r7, pc} + 800a840: 40023800 .word 0x40023800 + 800a844: 40020000 .word 0x40020000 -0800a470 : +0800a848 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a470: b580 push {r7, lr} - 800a472: b082 sub sp, #8 - 800a474: af00 add r7, sp, #0 - 800a476: 6078 str r0, [r7, #4] + 800a848: b580 push {r7, lr} + 800a84a: b082 sub sp, #8 + 800a84c: af00 add r7, sp, #0 + 800a84e: 6078 str r0, [r7, #4] USBD_LL_SetupStage((USBD_HandleTypeDef*)hpcd->pData, (uint8_t *)hpcd->Setup); - 800a478: 687b ldr r3, [r7, #4] - 800a47a: f8d3 24e0 ldr.w r2, [r3, #1248] @ 0x4e0 - 800a47e: 687b ldr r3, [r7, #4] - 800a480: f203 439c addw r3, r3, #1180 @ 0x49c - 800a484: 4619 mov r1, r3 - 800a486: 4610 mov r0, r2 - 800a488: f7fe fbcb bl 8008c22 + 800a850: 687b ldr r3, [r7, #4] + 800a852: f8d3 24e0 ldr.w r2, [r3, #1248] @ 0x4e0 + 800a856: 687b ldr r3, [r7, #4] + 800a858: f203 439c addw r3, r3, #1180 @ 0x49c + 800a85c: 4619 mov r1, r3 + 800a85e: 4610 mov r0, r2 + 800a860: f7fe fbcb bl 8008ffa } - 800a48c: bf00 nop - 800a48e: 3708 adds r7, #8 - 800a490: 46bd mov sp, r7 - 800a492: bd80 pop {r7, pc} + 800a864: bf00 nop + 800a866: 3708 adds r7, #8 + 800a868: 46bd mov sp, r7 + 800a86a: bd80 pop {r7, pc} -0800a494 : +0800a86c : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a494: b580 push {r7, lr} - 800a496: b082 sub sp, #8 - 800a498: af00 add r7, sp, #0 - 800a49a: 6078 str r0, [r7, #4] - 800a49c: 460b mov r3, r1 - 800a49e: 70fb strb r3, [r7, #3] + 800a86c: b580 push {r7, lr} + 800a86e: b082 sub sp, #8 + 800a870: af00 add r7, sp, #0 + 800a872: 6078 str r0, [r7, #4] + 800a874: 460b mov r3, r1 + 800a876: 70fb strb r3, [r7, #3] USBD_LL_DataOutStage((USBD_HandleTypeDef*)hpcd->pData, epnum, hpcd->OUT_ep[epnum].xfer_buff); - 800a4a0: 687b ldr r3, [r7, #4] - 800a4a2: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 - 800a4a6: 78fa ldrb r2, [r7, #3] - 800a4a8: 6879 ldr r1, [r7, #4] - 800a4aa: 4613 mov r3, r2 - 800a4ac: 00db lsls r3, r3, #3 - 800a4ae: 4413 add r3, r2 - 800a4b0: 009b lsls r3, r3, #2 - 800a4b2: 440b add r3, r1 - 800a4b4: f503 7318 add.w r3, r3, #608 @ 0x260 - 800a4b8: 681a ldr r2, [r3, #0] - 800a4ba: 78fb ldrb r3, [r7, #3] - 800a4bc: 4619 mov r1, r3 - 800a4be: f7fe fc05 bl 8008ccc + 800a878: 687b ldr r3, [r7, #4] + 800a87a: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 + 800a87e: 78fa ldrb r2, [r7, #3] + 800a880: 6879 ldr r1, [r7, #4] + 800a882: 4613 mov r3, r2 + 800a884: 00db lsls r3, r3, #3 + 800a886: 4413 add r3, r2 + 800a888: 009b lsls r3, r3, #2 + 800a88a: 440b add r3, r1 + 800a88c: f503 7318 add.w r3, r3, #608 @ 0x260 + 800a890: 681a ldr r2, [r3, #0] + 800a892: 78fb ldrb r3, [r7, #3] + 800a894: 4619 mov r1, r3 + 800a896: f7fe fc05 bl 80090a4 } - 800a4c2: bf00 nop - 800a4c4: 3708 adds r7, #8 - 800a4c6: 46bd mov sp, r7 - 800a4c8: bd80 pop {r7, pc} + 800a89a: bf00 nop + 800a89c: 3708 adds r7, #8 + 800a89e: 46bd mov sp, r7 + 800a8a0: bd80 pop {r7, pc} -0800a4ca : +0800a8a2 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a4ca: b580 push {r7, lr} - 800a4cc: b082 sub sp, #8 - 800a4ce: af00 add r7, sp, #0 - 800a4d0: 6078 str r0, [r7, #4] - 800a4d2: 460b mov r3, r1 - 800a4d4: 70fb strb r3, [r7, #3] + 800a8a2: b580 push {r7, lr} + 800a8a4: b082 sub sp, #8 + 800a8a6: af00 add r7, sp, #0 + 800a8a8: 6078 str r0, [r7, #4] + 800a8aa: 460b mov r3, r1 + 800a8ac: 70fb strb r3, [r7, #3] USBD_LL_DataInStage((USBD_HandleTypeDef*)hpcd->pData, epnum, hpcd->IN_ep[epnum].xfer_buff); - 800a4d6: 687b ldr r3, [r7, #4] - 800a4d8: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 - 800a4dc: 78fa ldrb r2, [r7, #3] - 800a4de: 6879 ldr r1, [r7, #4] - 800a4e0: 4613 mov r3, r2 - 800a4e2: 00db lsls r3, r3, #3 - 800a4e4: 4413 add r3, r2 - 800a4e6: 009b lsls r3, r3, #2 - 800a4e8: 440b add r3, r1 - 800a4ea: 3320 adds r3, #32 - 800a4ec: 681a ldr r2, [r3, #0] - 800a4ee: 78fb ldrb r3, [r7, #3] - 800a4f0: 4619 mov r1, r3 - 800a4f2: f7fe fca7 bl 8008e44 + 800a8ae: 687b ldr r3, [r7, #4] + 800a8b0: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 + 800a8b4: 78fa ldrb r2, [r7, #3] + 800a8b6: 6879 ldr r1, [r7, #4] + 800a8b8: 4613 mov r3, r2 + 800a8ba: 00db lsls r3, r3, #3 + 800a8bc: 4413 add r3, r2 + 800a8be: 009b lsls r3, r3, #2 + 800a8c0: 440b add r3, r1 + 800a8c2: 3320 adds r3, #32 + 800a8c4: 681a ldr r2, [r3, #0] + 800a8c6: 78fb ldrb r3, [r7, #3] + 800a8c8: 4619 mov r1, r3 + 800a8ca: f7fe fca7 bl 800921c } - 800a4f6: bf00 nop - 800a4f8: 3708 adds r7, #8 - 800a4fa: 46bd mov sp, r7 - 800a4fc: bd80 pop {r7, pc} + 800a8ce: bf00 nop + 800a8d0: 3708 adds r7, #8 + 800a8d2: 46bd mov sp, r7 + 800a8d4: bd80 pop {r7, pc} -0800a4fe : +0800a8d6 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_SOFCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_SOFCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a4fe: b580 push {r7, lr} - 800a500: b082 sub sp, #8 - 800a502: af00 add r7, sp, #0 - 800a504: 6078 str r0, [r7, #4] + 800a8d6: b580 push {r7, lr} + 800a8d8: b082 sub sp, #8 + 800a8da: af00 add r7, sp, #0 + 800a8dc: 6078 str r0, [r7, #4] USBD_LL_SOF((USBD_HandleTypeDef*)hpcd->pData); - 800a506: 687b ldr r3, [r7, #4] - 800a508: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a50c: 4618 mov r0, r3 - 800a50e: f7fe fdeb bl 80090e8 + 800a8de: 687b ldr r3, [r7, #4] + 800a8e0: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a8e4: 4618 mov r0, r3 + 800a8e6: f7fe fdeb bl 80094c0 } - 800a512: bf00 nop - 800a514: 3708 adds r7, #8 - 800a516: 46bd mov sp, r7 - 800a518: bd80 pop {r7, pc} + 800a8ea: bf00 nop + 800a8ec: 3708 adds r7, #8 + 800a8ee: 46bd mov sp, r7 + 800a8f0: bd80 pop {r7, pc} -0800a51a : +0800a8f2 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ResetCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_ResetCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a51a: b580 push {r7, lr} - 800a51c: b084 sub sp, #16 - 800a51e: af00 add r7, sp, #0 - 800a520: 6078 str r0, [r7, #4] + 800a8f2: b580 push {r7, lr} + 800a8f4: b084 sub sp, #16 + 800a8f6: af00 add r7, sp, #0 + 800a8f8: 6078 str r0, [r7, #4] USBD_SpeedTypeDef speed = USBD_SPEED_FULL; - 800a522: 2301 movs r3, #1 - 800a524: 73fb strb r3, [r7, #15] + 800a8fa: 2301 movs r3, #1 + 800a8fc: 73fb strb r3, [r7, #15] if ( hpcd->Init.speed == PCD_SPEED_HIGH) - 800a526: 687b ldr r3, [r7, #4] - 800a528: 79db ldrb r3, [r3, #7] - 800a52a: 2b00 cmp r3, #0 - 800a52c: d102 bne.n 800a534 + 800a8fe: 687b ldr r3, [r7, #4] + 800a900: 79db ldrb r3, [r3, #7] + 800a902: 2b00 cmp r3, #0 + 800a904: d102 bne.n 800a90c { speed = USBD_SPEED_HIGH; - 800a52e: 2300 movs r3, #0 - 800a530: 73fb strb r3, [r7, #15] - 800a532: e008 b.n 800a546 + 800a906: 2300 movs r3, #0 + 800a908: 73fb strb r3, [r7, #15] + 800a90a: e008 b.n 800a91e } else if ( hpcd->Init.speed == PCD_SPEED_FULL) - 800a534: 687b ldr r3, [r7, #4] - 800a536: 79db ldrb r3, [r3, #7] - 800a538: 2b02 cmp r3, #2 - 800a53a: d102 bne.n 800a542 + 800a90c: 687b ldr r3, [r7, #4] + 800a90e: 79db ldrb r3, [r3, #7] + 800a910: 2b02 cmp r3, #2 + 800a912: d102 bne.n 800a91a { speed = USBD_SPEED_FULL; - 800a53c: 2301 movs r3, #1 - 800a53e: 73fb strb r3, [r7, #15] - 800a540: e001 b.n 800a546 + 800a914: 2301 movs r3, #1 + 800a916: 73fb strb r3, [r7, #15] + 800a918: e001 b.n 800a91e } else { Error_Handler(); - 800a542: f7f6 fcdb bl 8000efc + 800a91a: f7f6 fc27 bl 800116c } /* Set Speed. */ USBD_LL_SetSpeed((USBD_HandleTypeDef*)hpcd->pData, speed); - 800a546: 687b ldr r3, [r7, #4] - 800a548: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a54c: 7bfa ldrb r2, [r7, #15] - 800a54e: 4611 mov r1, r2 - 800a550: 4618 mov r0, r3 - 800a552: f7fe fd85 bl 8009060 + 800a91e: 687b ldr r3, [r7, #4] + 800a920: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a924: 7bfa ldrb r2, [r7, #15] + 800a926: 4611 mov r1, r2 + 800a928: 4618 mov r0, r3 + 800a92a: f7fe fd85 bl 8009438 /* Reset Device. */ USBD_LL_Reset((USBD_HandleTypeDef*)hpcd->pData); - 800a556: 687b ldr r3, [r7, #4] - 800a558: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a55c: 4618 mov r0, r3 - 800a55e: f7fe fd2c bl 8008fba + 800a92e: 687b ldr r3, [r7, #4] + 800a930: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a934: 4618 mov r0, r3 + 800a936: f7fe fd2c bl 8009392 } - 800a562: bf00 nop - 800a564: 3710 adds r7, #16 - 800a566: 46bd mov sp, r7 - 800a568: bd80 pop {r7, pc} + 800a93a: bf00 nop + 800a93c: 3710 adds r7, #16 + 800a93e: 46bd mov sp, r7 + 800a940: bd80 pop {r7, pc} ... -0800a56c : +0800a944 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_SuspendCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_SuspendCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a56c: b580 push {r7, lr} - 800a56e: b082 sub sp, #8 - 800a570: af00 add r7, sp, #0 - 800a572: 6078 str r0, [r7, #4] + 800a944: b580 push {r7, lr} + 800a946: b082 sub sp, #8 + 800a948: af00 add r7, sp, #0 + 800a94a: 6078 str r0, [r7, #4] /* Inform USB library that core enters in suspend Mode. */ USBD_LL_Suspend((USBD_HandleTypeDef*)hpcd->pData); - 800a574: 687b ldr r3, [r7, #4] - 800a576: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a57a: 4618 mov r0, r3 - 800a57c: f7fe fd80 bl 8009080 + 800a94c: 687b ldr r3, [r7, #4] + 800a94e: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a952: 4618 mov r0, r3 + 800a954: f7fe fd80 bl 8009458 __HAL_PCD_GATE_PHYCLOCK(hpcd); - 800a580: 687b ldr r3, [r7, #4] - 800a582: 681b ldr r3, [r3, #0] - 800a584: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800a588: 681b ldr r3, [r3, #0] - 800a58a: 687a ldr r2, [r7, #4] - 800a58c: 6812 ldr r2, [r2, #0] - 800a58e: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800a592: f043 0301 orr.w r3, r3, #1 - 800a596: 6013 str r3, [r2, #0] + 800a958: 687b ldr r3, [r7, #4] + 800a95a: 681b ldr r3, [r3, #0] + 800a95c: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 800a960: 681b ldr r3, [r3, #0] + 800a962: 687a ldr r2, [r7, #4] + 800a964: 6812 ldr r2, [r2, #0] + 800a966: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 800a96a: f043 0301 orr.w r3, r3, #1 + 800a96e: 6013 str r3, [r2, #0] /* Enter in STOP mode. */ /* USER CODE BEGIN 2 */ if (hpcd->Init.low_power_enable) - 800a598: 687b ldr r3, [r7, #4] - 800a59a: 7adb ldrb r3, [r3, #11] - 800a59c: 2b00 cmp r3, #0 - 800a59e: d005 beq.n 800a5ac + 800a970: 687b ldr r3, [r7, #4] + 800a972: 7adb ldrb r3, [r3, #11] + 800a974: 2b00 cmp r3, #0 + 800a976: d005 beq.n 800a984 { /* Set SLEEPDEEP bit and SleepOnExit of Cortex System Control Register. */ SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); - 800a5a0: 4b04 ldr r3, [pc, #16] @ (800a5b4 ) - 800a5a2: 691b ldr r3, [r3, #16] - 800a5a4: 4a03 ldr r2, [pc, #12] @ (800a5b4 ) - 800a5a6: f043 0306 orr.w r3, r3, #6 - 800a5aa: 6113 str r3, [r2, #16] + 800a978: 4b04 ldr r3, [pc, #16] @ (800a98c ) + 800a97a: 691b ldr r3, [r3, #16] + 800a97c: 4a03 ldr r2, [pc, #12] @ (800a98c ) + 800a97e: f043 0306 orr.w r3, r3, #6 + 800a982: 6113 str r3, [r2, #16] } /* USER CODE END 2 */ } - 800a5ac: bf00 nop - 800a5ae: 3708 adds r7, #8 - 800a5b0: 46bd mov sp, r7 - 800a5b2: bd80 pop {r7, pc} - 800a5b4: e000ed00 .word 0xe000ed00 + 800a984: bf00 nop + 800a986: 3708 adds r7, #8 + 800a988: 46bd mov sp, r7 + 800a98a: bd80 pop {r7, pc} + 800a98c: e000ed00 .word 0xe000ed00 -0800a5b8 : +0800a990 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ResumeCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_ResumeCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a5b8: b580 push {r7, lr} - 800a5ba: b082 sub sp, #8 - 800a5bc: af00 add r7, sp, #0 - 800a5be: 6078 str r0, [r7, #4] + 800a990: b580 push {r7, lr} + 800a992: b082 sub sp, #8 + 800a994: af00 add r7, sp, #0 + 800a996: 6078 str r0, [r7, #4] /* USER CODE BEGIN 3 */ /* USER CODE END 3 */ USBD_LL_Resume((USBD_HandleTypeDef*)hpcd->pData); - 800a5c0: 687b ldr r3, [r7, #4] - 800a5c2: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a5c6: 4618 mov r0, r3 - 800a5c8: f7fe fd76 bl 80090b8 + 800a998: 687b ldr r3, [r7, #4] + 800a99a: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a99e: 4618 mov r0, r3 + 800a9a0: f7fe fd76 bl 8009490 } - 800a5cc: bf00 nop - 800a5ce: 3708 adds r7, #8 - 800a5d0: 46bd mov sp, r7 - 800a5d2: bd80 pop {r7, pc} + 800a9a4: bf00 nop + 800a9a6: 3708 adds r7, #8 + 800a9a8: 46bd mov sp, r7 + 800a9aa: bd80 pop {r7, pc} -0800a5d4 : +0800a9ac : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a5d4: b580 push {r7, lr} - 800a5d6: b082 sub sp, #8 - 800a5d8: af00 add r7, sp, #0 - 800a5da: 6078 str r0, [r7, #4] - 800a5dc: 460b mov r3, r1 - 800a5de: 70fb strb r3, [r7, #3] + 800a9ac: b580 push {r7, lr} + 800a9ae: b082 sub sp, #8 + 800a9b0: af00 add r7, sp, #0 + 800a9b2: 6078 str r0, [r7, #4] + 800a9b4: 460b mov r3, r1 + 800a9b6: 70fb strb r3, [r7, #3] USBD_LL_IsoOUTIncomplete((USBD_HandleTypeDef*)hpcd->pData, epnum); - 800a5e0: 687b ldr r3, [r7, #4] - 800a5e2: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a5e6: 78fa ldrb r2, [r7, #3] - 800a5e8: 4611 mov r1, r2 - 800a5ea: 4618 mov r0, r3 - 800a5ec: f7fe fdce bl 800918c + 800a9b8: 687b ldr r3, [r7, #4] + 800a9ba: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a9be: 78fa ldrb r2, [r7, #3] + 800a9c0: 4611 mov r1, r2 + 800a9c2: 4618 mov r0, r3 + 800a9c4: f7fe fdce bl 8009564 } - 800a5f0: bf00 nop - 800a5f2: 3708 adds r7, #8 - 800a5f4: 46bd mov sp, r7 - 800a5f6: bd80 pop {r7, pc} + 800a9c8: bf00 nop + 800a9ca: 3708 adds r7, #8 + 800a9cc: 46bd mov sp, r7 + 800a9ce: bd80 pop {r7, pc} -0800a5f8 : +0800a9d0 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a5f8: b580 push {r7, lr} - 800a5fa: b082 sub sp, #8 - 800a5fc: af00 add r7, sp, #0 - 800a5fe: 6078 str r0, [r7, #4] - 800a600: 460b mov r3, r1 - 800a602: 70fb strb r3, [r7, #3] + 800a9d0: b580 push {r7, lr} + 800a9d2: b082 sub sp, #8 + 800a9d4: af00 add r7, sp, #0 + 800a9d6: 6078 str r0, [r7, #4] + 800a9d8: 460b mov r3, r1 + 800a9da: 70fb strb r3, [r7, #3] USBD_LL_IsoINIncomplete((USBD_HandleTypeDef*)hpcd->pData, epnum); - 800a604: 687b ldr r3, [r7, #4] - 800a606: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a60a: 78fa ldrb r2, [r7, #3] - 800a60c: 4611 mov r1, r2 - 800a60e: 4618 mov r0, r3 - 800a610: f7fe fd8a bl 8009128 + 800a9dc: 687b ldr r3, [r7, #4] + 800a9de: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a9e2: 78fa ldrb r2, [r7, #3] + 800a9e4: 4611 mov r1, r2 + 800a9e6: 4618 mov r0, r3 + 800a9e8: f7fe fd8a bl 8009500 } - 800a614: bf00 nop - 800a616: 3708 adds r7, #8 - 800a618: 46bd mov sp, r7 - 800a61a: bd80 pop {r7, pc} + 800a9ec: bf00 nop + 800a9ee: 3708 adds r7, #8 + 800a9f0: 46bd mov sp, r7 + 800a9f2: bd80 pop {r7, pc} -0800a61c : +0800a9f4 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ConnectCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_ConnectCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a61c: b580 push {r7, lr} - 800a61e: b082 sub sp, #8 - 800a620: af00 add r7, sp, #0 - 800a622: 6078 str r0, [r7, #4] + 800a9f4: b580 push {r7, lr} + 800a9f6: b082 sub sp, #8 + 800a9f8: af00 add r7, sp, #0 + 800a9fa: 6078 str r0, [r7, #4] USBD_LL_DevConnected((USBD_HandleTypeDef*)hpcd->pData); - 800a624: 687b ldr r3, [r7, #4] - 800a626: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a62a: 4618 mov r0, r3 - 800a62c: f7fe fde0 bl 80091f0 + 800a9fc: 687b ldr r3, [r7, #4] + 800a9fe: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800aa02: 4618 mov r0, r3 + 800aa04: f7fe fde0 bl 80095c8 } - 800a630: bf00 nop - 800a632: 3708 adds r7, #8 - 800a634: 46bd mov sp, r7 - 800a636: bd80 pop {r7, pc} + 800aa08: bf00 nop + 800aa0a: 3708 adds r7, #8 + 800aa0c: 46bd mov sp, r7 + 800aa0e: bd80 pop {r7, pc} -0800a638 : +0800aa10 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a638: b580 push {r7, lr} - 800a63a: b082 sub sp, #8 - 800a63c: af00 add r7, sp, #0 - 800a63e: 6078 str r0, [r7, #4] + 800aa10: b580 push {r7, lr} + 800aa12: b082 sub sp, #8 + 800aa14: af00 add r7, sp, #0 + 800aa16: 6078 str r0, [r7, #4] USBD_LL_DevDisconnected((USBD_HandleTypeDef*)hpcd->pData); - 800a640: 687b ldr r3, [r7, #4] - 800a642: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a646: 4618 mov r0, r3 - 800a648: f7fe fddd bl 8009206 + 800aa18: 687b ldr r3, [r7, #4] + 800aa1a: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800aa1e: 4618 mov r0, r3 + 800aa20: f7fe fddd bl 80095de } - 800a64c: bf00 nop - 800a64e: 3708 adds r7, #8 - 800a650: 46bd mov sp, r7 - 800a652: bd80 pop {r7, pc} + 800aa24: bf00 nop + 800aa26: 3708 adds r7, #8 + 800aa28: 46bd mov sp, r7 + 800aa2a: bd80 pop {r7, pc} -0800a654 : +0800aa2c : * @brief Initializes the low level portion of the device driver. * @param pdev: Device handle * @retval USBD status */ USBD_StatusTypeDef USBD_LL_Init(USBD_HandleTypeDef *pdev) { - 800a654: b580 push {r7, lr} - 800a656: b082 sub sp, #8 - 800a658: af00 add r7, sp, #0 - 800a65a: 6078 str r0, [r7, #4] + 800aa2c: b580 push {r7, lr} + 800aa2e: b082 sub sp, #8 + 800aa30: af00 add r7, sp, #0 + 800aa32: 6078 str r0, [r7, #4] /* Init USB Ip. */ if (pdev->id == DEVICE_FS) { - 800a65c: 687b ldr r3, [r7, #4] - 800a65e: 781b ldrb r3, [r3, #0] - 800a660: 2b00 cmp r3, #0 - 800a662: d13c bne.n 800a6de + 800aa34: 687b ldr r3, [r7, #4] + 800aa36: 781b ldrb r3, [r3, #0] + 800aa38: 2b00 cmp r3, #0 + 800aa3a: d13c bne.n 800aab6 /* Link the driver to the stack. */ hpcd_USB_OTG_FS.pData = pdev; - 800a664: 4a20 ldr r2, [pc, #128] @ (800a6e8 ) - 800a666: 687b ldr r3, [r7, #4] - 800a668: f8c2 34e0 str.w r3, [r2, #1248] @ 0x4e0 + 800aa3c: 4a20 ldr r2, [pc, #128] @ (800aac0 ) + 800aa3e: 687b ldr r3, [r7, #4] + 800aa40: f8c2 34e0 str.w r3, [r2, #1248] @ 0x4e0 pdev->pData = &hpcd_USB_OTG_FS; - 800a66c: 687b ldr r3, [r7, #4] - 800a66e: 4a1e ldr r2, [pc, #120] @ (800a6e8 ) - 800a670: f8c3 22c8 str.w r2, [r3, #712] @ 0x2c8 + 800aa44: 687b ldr r3, [r7, #4] + 800aa46: 4a1e ldr r2, [pc, #120] @ (800aac0 ) + 800aa48: f8c3 22c8 str.w r2, [r3, #712] @ 0x2c8 hpcd_USB_OTG_FS.Instance = USB_OTG_FS; - 800a674: 4b1c ldr r3, [pc, #112] @ (800a6e8 ) - 800a676: f04f 42a0 mov.w r2, #1342177280 @ 0x50000000 - 800a67a: 601a str r2, [r3, #0] + 800aa4c: 4b1c ldr r3, [pc, #112] @ (800aac0 ) + 800aa4e: f04f 42a0 mov.w r2, #1342177280 @ 0x50000000 + 800aa52: 601a str r2, [r3, #0] hpcd_USB_OTG_FS.Init.dev_endpoints = 6; - 800a67c: 4b1a ldr r3, [pc, #104] @ (800a6e8 ) - 800a67e: 2206 movs r2, #6 - 800a680: 711a strb r2, [r3, #4] + 800aa54: 4b1a ldr r3, [pc, #104] @ (800aac0 ) + 800aa56: 2206 movs r2, #6 + 800aa58: 711a strb r2, [r3, #4] hpcd_USB_OTG_FS.Init.speed = PCD_SPEED_FULL; - 800a682: 4b19 ldr r3, [pc, #100] @ (800a6e8 ) - 800a684: 2202 movs r2, #2 - 800a686: 71da strb r2, [r3, #7] + 800aa5a: 4b19 ldr r3, [pc, #100] @ (800aac0 ) + 800aa5c: 2202 movs r2, #2 + 800aa5e: 71da strb r2, [r3, #7] hpcd_USB_OTG_FS.Init.dma_enable = DISABLE; - 800a688: 4b17 ldr r3, [pc, #92] @ (800a6e8 ) - 800a68a: 2200 movs r2, #0 - 800a68c: 719a strb r2, [r3, #6] + 800aa60: 4b17 ldr r3, [pc, #92] @ (800aac0 ) + 800aa62: 2200 movs r2, #0 + 800aa64: 719a strb r2, [r3, #6] hpcd_USB_OTG_FS.Init.phy_itface = PCD_PHY_EMBEDDED; - 800a68e: 4b16 ldr r3, [pc, #88] @ (800a6e8 ) - 800a690: 2202 movs r2, #2 - 800a692: 725a strb r2, [r3, #9] + 800aa66: 4b16 ldr r3, [pc, #88] @ (800aac0 ) + 800aa68: 2202 movs r2, #2 + 800aa6a: 725a strb r2, [r3, #9] hpcd_USB_OTG_FS.Init.Sof_enable = DISABLE; - 800a694: 4b14 ldr r3, [pc, #80] @ (800a6e8 ) - 800a696: 2200 movs r2, #0 - 800a698: 729a strb r2, [r3, #10] + 800aa6c: 4b14 ldr r3, [pc, #80] @ (800aac0 ) + 800aa6e: 2200 movs r2, #0 + 800aa70: 729a strb r2, [r3, #10] hpcd_USB_OTG_FS.Init.low_power_enable = DISABLE; - 800a69a: 4b13 ldr r3, [pc, #76] @ (800a6e8 ) - 800a69c: 2200 movs r2, #0 - 800a69e: 72da strb r2, [r3, #11] + 800aa72: 4b13 ldr r3, [pc, #76] @ (800aac0 ) + 800aa74: 2200 movs r2, #0 + 800aa76: 72da strb r2, [r3, #11] hpcd_USB_OTG_FS.Init.lpm_enable = DISABLE; - 800a6a0: 4b11 ldr r3, [pc, #68] @ (800a6e8 ) - 800a6a2: 2200 movs r2, #0 - 800a6a4: 731a strb r2, [r3, #12] + 800aa78: 4b11 ldr r3, [pc, #68] @ (800aac0 ) + 800aa7a: 2200 movs r2, #0 + 800aa7c: 731a strb r2, [r3, #12] hpcd_USB_OTG_FS.Init.vbus_sensing_enable = DISABLE; - 800a6a6: 4b10 ldr r3, [pc, #64] @ (800a6e8 ) - 800a6a8: 2200 movs r2, #0 - 800a6aa: 739a strb r2, [r3, #14] + 800aa7e: 4b10 ldr r3, [pc, #64] @ (800aac0 ) + 800aa80: 2200 movs r2, #0 + 800aa82: 739a strb r2, [r3, #14] hpcd_USB_OTG_FS.Init.use_dedicated_ep1 = DISABLE; - 800a6ac: 4b0e ldr r3, [pc, #56] @ (800a6e8 ) - 800a6ae: 2200 movs r2, #0 - 800a6b0: 73da strb r2, [r3, #15] + 800aa84: 4b0e ldr r3, [pc, #56] @ (800aac0 ) + 800aa86: 2200 movs r2, #0 + 800aa88: 73da strb r2, [r3, #15] if (HAL_PCD_Init(&hpcd_USB_OTG_FS) != HAL_OK) - 800a6b2: 480d ldr r0, [pc, #52] @ (800a6e8 ) - 800a6b4: f7f8 faa8 bl 8002c08 - 800a6b8: 4603 mov r3, r0 - 800a6ba: 2b00 cmp r3, #0 - 800a6bc: d001 beq.n 800a6c2 + 800aa8a: 480d ldr r0, [pc, #52] @ (800aac0 ) + 800aa8c: f7f8 f9f4 bl 8002e78 + 800aa90: 4603 mov r3, r0 + 800aa92: 2b00 cmp r3, #0 + 800aa94: d001 beq.n 800aa9a { Error_Handler( ); - 800a6be: f7f6 fc1d bl 8000efc + 800aa96: f7f6 fb69 bl 800116c HAL_PCD_RegisterDataOutStageCallback(&hpcd_USB_OTG_FS, PCD_DataOutStageCallback); HAL_PCD_RegisterDataInStageCallback(&hpcd_USB_OTG_FS, PCD_DataInStageCallback); HAL_PCD_RegisterIsoOutIncpltCallback(&hpcd_USB_OTG_FS, PCD_ISOOUTIncompleteCallback); HAL_PCD_RegisterIsoInIncpltCallback(&hpcd_USB_OTG_FS, PCD_ISOINIncompleteCallback); #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ HAL_PCDEx_SetRxFiFo(&hpcd_USB_OTG_FS, 0x80); - 800a6c2: 2180 movs r1, #128 @ 0x80 - 800a6c4: 4808 ldr r0, [pc, #32] @ (800a6e8 ) - 800a6c6: f7f9 fcf0 bl 80040aa + 800aa9a: 2180 movs r1, #128 @ 0x80 + 800aa9c: 4808 ldr r0, [pc, #32] @ (800aac0 ) + 800aa9e: f7f9 fc3c bl 800431a HAL_PCDEx_SetTxFiFo(&hpcd_USB_OTG_FS, 0, 0x40); - 800a6ca: 2240 movs r2, #64 @ 0x40 - 800a6cc: 2100 movs r1, #0 - 800a6ce: 4806 ldr r0, [pc, #24] @ (800a6e8 ) - 800a6d0: f7f9 fca4 bl 800401c + 800aaa2: 2240 movs r2, #64 @ 0x40 + 800aaa4: 2100 movs r1, #0 + 800aaa6: 4806 ldr r0, [pc, #24] @ (800aac0 ) + 800aaa8: f7f9 fbf0 bl 800428c HAL_PCDEx_SetTxFiFo(&hpcd_USB_OTG_FS, 1, 0x80); - 800a6d4: 2280 movs r2, #128 @ 0x80 - 800a6d6: 2101 movs r1, #1 - 800a6d8: 4803 ldr r0, [pc, #12] @ (800a6e8 ) - 800a6da: f7f9 fc9f bl 800401c + 800aaac: 2280 movs r2, #128 @ 0x80 + 800aaae: 2101 movs r1, #1 + 800aab0: 4803 ldr r0, [pc, #12] @ (800aac0 ) + 800aab2: f7f9 fbeb bl 800428c } return USBD_OK; - 800a6de: 2300 movs r3, #0 + 800aab6: 2300 movs r3, #0 } - 800a6e0: 4618 mov r0, r3 - 800a6e2: 3708 adds r7, #8 - 800a6e4: 46bd mov sp, r7 - 800a6e6: bd80 pop {r7, pc} - 800a6e8: 20000c14 .word 0x20000c14 + 800aab8: 4618 mov r0, r3 + 800aaba: 3708 adds r7, #8 + 800aabc: 46bd mov sp, r7 + 800aabe: bd80 pop {r7, pc} + 800aac0: 20001264 .word 0x20001264 -0800a6ec : +0800aac4 : * @brief Starts the low level portion of the device driver. * @param pdev: Device handle * @retval USBD status */ USBD_StatusTypeDef USBD_LL_Start(USBD_HandleTypeDef *pdev) { - 800a6ec: b580 push {r7, lr} - 800a6ee: b084 sub sp, #16 - 800a6f0: af00 add r7, sp, #0 - 800a6f2: 6078 str r0, [r7, #4] + 800aac4: b580 push {r7, lr} + 800aac6: b084 sub sp, #16 + 800aac8: af00 add r7, sp, #0 + 800aaca: 6078 str r0, [r7, #4] HAL_StatusTypeDef hal_status = HAL_OK; - 800a6f4: 2300 movs r3, #0 - 800a6f6: 73fb strb r3, [r7, #15] + 800aacc: 2300 movs r3, #0 + 800aace: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a6f8: 2300 movs r3, #0 - 800a6fa: 73bb strb r3, [r7, #14] + 800aad0: 2300 movs r3, #0 + 800aad2: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_Start(pdev->pData); - 800a6fc: 687b ldr r3, [r7, #4] - 800a6fe: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a702: 4618 mov r0, r3 - 800a704: f7f8 fb96 bl 8002e34 - 800a708: 4603 mov r3, r0 - 800a70a: 73fb strb r3, [r7, #15] + 800aad4: 687b ldr r3, [r7, #4] + 800aad6: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800aada: 4618 mov r0, r3 + 800aadc: f7f8 fae2 bl 80030a4 + 800aae0: 4603 mov r3, r0 + 800aae2: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a70c: 7bfb ldrb r3, [r7, #15] - 800a70e: 4618 mov r0, r3 - 800a710: f000 f97e bl 800aa10 - 800a714: 4603 mov r3, r0 - 800a716: 73bb strb r3, [r7, #14] + 800aae4: 7bfb ldrb r3, [r7, #15] + 800aae6: 4618 mov r0, r3 + 800aae8: f000 f97e bl 800ade8 + 800aaec: 4603 mov r3, r0 + 800aaee: 73bb strb r3, [r7, #14] return usb_status; - 800a718: 7bbb ldrb r3, [r7, #14] + 800aaf0: 7bbb ldrb r3, [r7, #14] } - 800a71a: 4618 mov r0, r3 - 800a71c: 3710 adds r7, #16 - 800a71e: 46bd mov sp, r7 - 800a720: bd80 pop {r7, pc} + 800aaf2: 4618 mov r0, r3 + 800aaf4: 3710 adds r7, #16 + 800aaf6: 46bd mov sp, r7 + 800aaf8: bd80 pop {r7, pc} -0800a722 : +0800aafa : * @param ep_type: Endpoint type * @param ep_mps: Endpoint max packet size * @retval USBD status */ USBD_StatusTypeDef USBD_LL_OpenEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_mps) { - 800a722: b580 push {r7, lr} - 800a724: b084 sub sp, #16 - 800a726: af00 add r7, sp, #0 - 800a728: 6078 str r0, [r7, #4] - 800a72a: 4608 mov r0, r1 - 800a72c: 4611 mov r1, r2 - 800a72e: 461a mov r2, r3 - 800a730: 4603 mov r3, r0 - 800a732: 70fb strb r3, [r7, #3] - 800a734: 460b mov r3, r1 - 800a736: 70bb strb r3, [r7, #2] - 800a738: 4613 mov r3, r2 - 800a73a: 803b strh r3, [r7, #0] + 800aafa: b580 push {r7, lr} + 800aafc: b084 sub sp, #16 + 800aafe: af00 add r7, sp, #0 + 800ab00: 6078 str r0, [r7, #4] + 800ab02: 4608 mov r0, r1 + 800ab04: 4611 mov r1, r2 + 800ab06: 461a mov r2, r3 + 800ab08: 4603 mov r3, r0 + 800ab0a: 70fb strb r3, [r7, #3] + 800ab0c: 460b mov r3, r1 + 800ab0e: 70bb strb r3, [r7, #2] + 800ab10: 4613 mov r3, r2 + 800ab12: 803b strh r3, [r7, #0] HAL_StatusTypeDef hal_status = HAL_OK; - 800a73c: 2300 movs r3, #0 - 800a73e: 73fb strb r3, [r7, #15] + 800ab14: 2300 movs r3, #0 + 800ab16: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a740: 2300 movs r3, #0 - 800a742: 73bb strb r3, [r7, #14] + 800ab18: 2300 movs r3, #0 + 800ab1a: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_Open(pdev->pData, ep_addr, ep_mps, ep_type); - 800a744: 687b ldr r3, [r7, #4] - 800a746: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 - 800a74a: 78bb ldrb r3, [r7, #2] - 800a74c: 883a ldrh r2, [r7, #0] - 800a74e: 78f9 ldrb r1, [r7, #3] - 800a750: f7f9 f897 bl 8003882 - 800a754: 4603 mov r3, r0 - 800a756: 73fb strb r3, [r7, #15] + 800ab1c: 687b ldr r3, [r7, #4] + 800ab1e: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 + 800ab22: 78bb ldrb r3, [r7, #2] + 800ab24: 883a ldrh r2, [r7, #0] + 800ab26: 78f9 ldrb r1, [r7, #3] + 800ab28: f7f8 ffe3 bl 8003af2 + 800ab2c: 4603 mov r3, r0 + 800ab2e: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a758: 7bfb ldrb r3, [r7, #15] - 800a75a: 4618 mov r0, r3 - 800a75c: f000 f958 bl 800aa10 - 800a760: 4603 mov r3, r0 - 800a762: 73bb strb r3, [r7, #14] + 800ab30: 7bfb ldrb r3, [r7, #15] + 800ab32: 4618 mov r0, r3 + 800ab34: f000 f958 bl 800ade8 + 800ab38: 4603 mov r3, r0 + 800ab3a: 73bb strb r3, [r7, #14] return usb_status; - 800a764: 7bbb ldrb r3, [r7, #14] + 800ab3c: 7bbb ldrb r3, [r7, #14] } - 800a766: 4618 mov r0, r3 - 800a768: 3710 adds r7, #16 - 800a76a: 46bd mov sp, r7 - 800a76c: bd80 pop {r7, pc} + 800ab3e: 4618 mov r0, r3 + 800ab40: 3710 adds r7, #16 + 800ab42: 46bd mov sp, r7 + 800ab44: bd80 pop {r7, pc} -0800a76e : +0800ab46 : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval USBD status */ USBD_StatusTypeDef USBD_LL_CloseEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a76e: b580 push {r7, lr} - 800a770: b084 sub sp, #16 - 800a772: af00 add r7, sp, #0 - 800a774: 6078 str r0, [r7, #4] - 800a776: 460b mov r3, r1 - 800a778: 70fb strb r3, [r7, #3] + 800ab46: b580 push {r7, lr} + 800ab48: b084 sub sp, #16 + 800ab4a: af00 add r7, sp, #0 + 800ab4c: 6078 str r0, [r7, #4] + 800ab4e: 460b mov r3, r1 + 800ab50: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a77a: 2300 movs r3, #0 - 800a77c: 73fb strb r3, [r7, #15] + 800ab52: 2300 movs r3, #0 + 800ab54: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a77e: 2300 movs r3, #0 - 800a780: 73bb strb r3, [r7, #14] + 800ab56: 2300 movs r3, #0 + 800ab58: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_Close(pdev->pData, ep_addr); - 800a782: 687b ldr r3, [r7, #4] - 800a784: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a788: 78fa ldrb r2, [r7, #3] - 800a78a: 4611 mov r1, r2 - 800a78c: 4618 mov r0, r3 - 800a78e: f7f9 f8e2 bl 8003956 - 800a792: 4603 mov r3, r0 - 800a794: 73fb strb r3, [r7, #15] + 800ab5a: 687b ldr r3, [r7, #4] + 800ab5c: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800ab60: 78fa ldrb r2, [r7, #3] + 800ab62: 4611 mov r1, r2 + 800ab64: 4618 mov r0, r3 + 800ab66: f7f9 f82e bl 8003bc6 + 800ab6a: 4603 mov r3, r0 + 800ab6c: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a796: 7bfb ldrb r3, [r7, #15] - 800a798: 4618 mov r0, r3 - 800a79a: f000 f939 bl 800aa10 - 800a79e: 4603 mov r3, r0 - 800a7a0: 73bb strb r3, [r7, #14] + 800ab6e: 7bfb ldrb r3, [r7, #15] + 800ab70: 4618 mov r0, r3 + 800ab72: f000 f939 bl 800ade8 + 800ab76: 4603 mov r3, r0 + 800ab78: 73bb strb r3, [r7, #14] return usb_status; - 800a7a2: 7bbb ldrb r3, [r7, #14] + 800ab7a: 7bbb ldrb r3, [r7, #14] } - 800a7a4: 4618 mov r0, r3 - 800a7a6: 3710 adds r7, #16 - 800a7a8: 46bd mov sp, r7 - 800a7aa: bd80 pop {r7, pc} + 800ab7c: 4618 mov r0, r3 + 800ab7e: 3710 adds r7, #16 + 800ab80: 46bd mov sp, r7 + 800ab82: bd80 pop {r7, pc} -0800a7ac : +0800ab84 : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval USBD status */ USBD_StatusTypeDef USBD_LL_StallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a7ac: b580 push {r7, lr} - 800a7ae: b084 sub sp, #16 - 800a7b0: af00 add r7, sp, #0 - 800a7b2: 6078 str r0, [r7, #4] - 800a7b4: 460b mov r3, r1 - 800a7b6: 70fb strb r3, [r7, #3] + 800ab84: b580 push {r7, lr} + 800ab86: b084 sub sp, #16 + 800ab88: af00 add r7, sp, #0 + 800ab8a: 6078 str r0, [r7, #4] + 800ab8c: 460b mov r3, r1 + 800ab8e: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a7b8: 2300 movs r3, #0 - 800a7ba: 73fb strb r3, [r7, #15] + 800ab90: 2300 movs r3, #0 + 800ab92: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a7bc: 2300 movs r3, #0 - 800a7be: 73bb strb r3, [r7, #14] + 800ab94: 2300 movs r3, #0 + 800ab96: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_SetStall(pdev->pData, ep_addr); - 800a7c0: 687b ldr r3, [r7, #4] - 800a7c2: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a7c6: 78fa ldrb r2, [r7, #3] - 800a7c8: 4611 mov r1, r2 - 800a7ca: 4618 mov r0, r3 - 800a7cc: f7f9 f982 bl 8003ad4 - 800a7d0: 4603 mov r3, r0 - 800a7d2: 73fb strb r3, [r7, #15] + 800ab98: 687b ldr r3, [r7, #4] + 800ab9a: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800ab9e: 78fa ldrb r2, [r7, #3] + 800aba0: 4611 mov r1, r2 + 800aba2: 4618 mov r0, r3 + 800aba4: f7f9 f8ce bl 8003d44 + 800aba8: 4603 mov r3, r0 + 800abaa: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a7d4: 7bfb ldrb r3, [r7, #15] - 800a7d6: 4618 mov r0, r3 - 800a7d8: f000 f91a bl 800aa10 - 800a7dc: 4603 mov r3, r0 - 800a7de: 73bb strb r3, [r7, #14] + 800abac: 7bfb ldrb r3, [r7, #15] + 800abae: 4618 mov r0, r3 + 800abb0: f000 f91a bl 800ade8 + 800abb4: 4603 mov r3, r0 + 800abb6: 73bb strb r3, [r7, #14] return usb_status; - 800a7e0: 7bbb ldrb r3, [r7, #14] + 800abb8: 7bbb ldrb r3, [r7, #14] } - 800a7e2: 4618 mov r0, r3 - 800a7e4: 3710 adds r7, #16 - 800a7e6: 46bd mov sp, r7 - 800a7e8: bd80 pop {r7, pc} + 800abba: 4618 mov r0, r3 + 800abbc: 3710 adds r7, #16 + 800abbe: 46bd mov sp, r7 + 800abc0: bd80 pop {r7, pc} -0800a7ea : +0800abc2 : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval USBD status */ USBD_StatusTypeDef USBD_LL_ClearStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a7ea: b580 push {r7, lr} - 800a7ec: b084 sub sp, #16 - 800a7ee: af00 add r7, sp, #0 - 800a7f0: 6078 str r0, [r7, #4] - 800a7f2: 460b mov r3, r1 - 800a7f4: 70fb strb r3, [r7, #3] + 800abc2: b580 push {r7, lr} + 800abc4: b084 sub sp, #16 + 800abc6: af00 add r7, sp, #0 + 800abc8: 6078 str r0, [r7, #4] + 800abca: 460b mov r3, r1 + 800abcc: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a7f6: 2300 movs r3, #0 - 800a7f8: 73fb strb r3, [r7, #15] + 800abce: 2300 movs r3, #0 + 800abd0: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a7fa: 2300 movs r3, #0 - 800a7fc: 73bb strb r3, [r7, #14] + 800abd2: 2300 movs r3, #0 + 800abd4: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_ClrStall(pdev->pData, ep_addr); - 800a7fe: 687b ldr r3, [r7, #4] - 800a800: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a804: 78fa ldrb r2, [r7, #3] - 800a806: 4611 mov r1, r2 - 800a808: 4618 mov r0, r3 - 800a80a: f7f9 f9c6 bl 8003b9a - 800a80e: 4603 mov r3, r0 - 800a810: 73fb strb r3, [r7, #15] + 800abd6: 687b ldr r3, [r7, #4] + 800abd8: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800abdc: 78fa ldrb r2, [r7, #3] + 800abde: 4611 mov r1, r2 + 800abe0: 4618 mov r0, r3 + 800abe2: f7f9 f912 bl 8003e0a + 800abe6: 4603 mov r3, r0 + 800abe8: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a812: 7bfb ldrb r3, [r7, #15] - 800a814: 4618 mov r0, r3 - 800a816: f000 f8fb bl 800aa10 - 800a81a: 4603 mov r3, r0 - 800a81c: 73bb strb r3, [r7, #14] + 800abea: 7bfb ldrb r3, [r7, #15] + 800abec: 4618 mov r0, r3 + 800abee: f000 f8fb bl 800ade8 + 800abf2: 4603 mov r3, r0 + 800abf4: 73bb strb r3, [r7, #14] return usb_status; - 800a81e: 7bbb ldrb r3, [r7, #14] + 800abf6: 7bbb ldrb r3, [r7, #14] } - 800a820: 4618 mov r0, r3 - 800a822: 3710 adds r7, #16 - 800a824: 46bd mov sp, r7 - 800a826: bd80 pop {r7, pc} + 800abf8: 4618 mov r0, r3 + 800abfa: 3710 adds r7, #16 + 800abfc: 46bd mov sp, r7 + 800abfe: bd80 pop {r7, pc} -0800a828 : +0800ac00 : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval Stall (1: Yes, 0: No) */ uint8_t USBD_LL_IsStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a828: b480 push {r7} - 800a82a: b085 sub sp, #20 - 800a82c: af00 add r7, sp, #0 - 800a82e: 6078 str r0, [r7, #4] - 800a830: 460b mov r3, r1 - 800a832: 70fb strb r3, [r7, #3] + 800ac00: b480 push {r7} + 800ac02: b085 sub sp, #20 + 800ac04: af00 add r7, sp, #0 + 800ac06: 6078 str r0, [r7, #4] + 800ac08: 460b mov r3, r1 + 800ac0a: 70fb strb r3, [r7, #3] PCD_HandleTypeDef *hpcd = (PCD_HandleTypeDef*) pdev->pData; - 800a834: 687b ldr r3, [r7, #4] - 800a836: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a83a: 60fb str r3, [r7, #12] + 800ac0c: 687b ldr r3, [r7, #4] + 800ac0e: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800ac12: 60fb str r3, [r7, #12] if((ep_addr & 0x80) == 0x80) - 800a83c: f997 3003 ldrsb.w r3, [r7, #3] - 800a840: 2b00 cmp r3, #0 - 800a842: da0b bge.n 800a85c + 800ac14: f997 3003 ldrsb.w r3, [r7, #3] + 800ac18: 2b00 cmp r3, #0 + 800ac1a: da0b bge.n 800ac34 { return hpcd->IN_ep[ep_addr & 0x7F].is_stall; - 800a844: 78fb ldrb r3, [r7, #3] - 800a846: f003 027f and.w r2, r3, #127 @ 0x7f - 800a84a: 68f9 ldr r1, [r7, #12] - 800a84c: 4613 mov r3, r2 - 800a84e: 00db lsls r3, r3, #3 - 800a850: 4413 add r3, r2 - 800a852: 009b lsls r3, r3, #2 - 800a854: 440b add r3, r1 - 800a856: 3316 adds r3, #22 - 800a858: 781b ldrb r3, [r3, #0] - 800a85a: e00b b.n 800a874 + 800ac1c: 78fb ldrb r3, [r7, #3] + 800ac1e: f003 027f and.w r2, r3, #127 @ 0x7f + 800ac22: 68f9 ldr r1, [r7, #12] + 800ac24: 4613 mov r3, r2 + 800ac26: 00db lsls r3, r3, #3 + 800ac28: 4413 add r3, r2 + 800ac2a: 009b lsls r3, r3, #2 + 800ac2c: 440b add r3, r1 + 800ac2e: 3316 adds r3, #22 + 800ac30: 781b ldrb r3, [r3, #0] + 800ac32: e00b b.n 800ac4c } else { return hpcd->OUT_ep[ep_addr & 0x7F].is_stall; - 800a85c: 78fb ldrb r3, [r7, #3] - 800a85e: f003 027f and.w r2, r3, #127 @ 0x7f - 800a862: 68f9 ldr r1, [r7, #12] - 800a864: 4613 mov r3, r2 - 800a866: 00db lsls r3, r3, #3 - 800a868: 4413 add r3, r2 - 800a86a: 009b lsls r3, r3, #2 - 800a86c: 440b add r3, r1 - 800a86e: f203 2356 addw r3, r3, #598 @ 0x256 - 800a872: 781b ldrb r3, [r3, #0] + 800ac34: 78fb ldrb r3, [r7, #3] + 800ac36: f003 027f and.w r2, r3, #127 @ 0x7f + 800ac3a: 68f9 ldr r1, [r7, #12] + 800ac3c: 4613 mov r3, r2 + 800ac3e: 00db lsls r3, r3, #3 + 800ac40: 4413 add r3, r2 + 800ac42: 009b lsls r3, r3, #2 + 800ac44: 440b add r3, r1 + 800ac46: f203 2356 addw r3, r3, #598 @ 0x256 + 800ac4a: 781b ldrb r3, [r3, #0] } } - 800a874: 4618 mov r0, r3 - 800a876: 3714 adds r7, #20 - 800a878: 46bd mov sp, r7 - 800a87a: f85d 7b04 ldr.w r7, [sp], #4 - 800a87e: 4770 bx lr + 800ac4c: 4618 mov r0, r3 + 800ac4e: 3714 adds r7, #20 + 800ac50: 46bd mov sp, r7 + 800ac52: f85d 7b04 ldr.w r7, [sp], #4 + 800ac56: 4770 bx lr -0800a880 : +0800ac58 : * @param pdev: Device handle * @param dev_addr: Device address * @retval USBD status */ USBD_StatusTypeDef USBD_LL_SetUSBAddress(USBD_HandleTypeDef *pdev, uint8_t dev_addr) { - 800a880: b580 push {r7, lr} - 800a882: b084 sub sp, #16 - 800a884: af00 add r7, sp, #0 - 800a886: 6078 str r0, [r7, #4] - 800a888: 460b mov r3, r1 - 800a88a: 70fb strb r3, [r7, #3] + 800ac58: b580 push {r7, lr} + 800ac5a: b084 sub sp, #16 + 800ac5c: af00 add r7, sp, #0 + 800ac5e: 6078 str r0, [r7, #4] + 800ac60: 460b mov r3, r1 + 800ac62: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a88c: 2300 movs r3, #0 - 800a88e: 73fb strb r3, [r7, #15] + 800ac64: 2300 movs r3, #0 + 800ac66: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a890: 2300 movs r3, #0 - 800a892: 73bb strb r3, [r7, #14] + 800ac68: 2300 movs r3, #0 + 800ac6a: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_SetAddress(pdev->pData, dev_addr); - 800a894: 687b ldr r3, [r7, #4] - 800a896: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a89a: 78fa ldrb r2, [r7, #3] - 800a89c: 4611 mov r1, r2 - 800a89e: 4618 mov r0, r3 - 800a8a0: f7f8 ffcb bl 800383a - 800a8a4: 4603 mov r3, r0 - 800a8a6: 73fb strb r3, [r7, #15] + 800ac6c: 687b ldr r3, [r7, #4] + 800ac6e: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800ac72: 78fa ldrb r2, [r7, #3] + 800ac74: 4611 mov r1, r2 + 800ac76: 4618 mov r0, r3 + 800ac78: f7f8 ff17 bl 8003aaa + 800ac7c: 4603 mov r3, r0 + 800ac7e: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a8a8: 7bfb ldrb r3, [r7, #15] - 800a8aa: 4618 mov r0, r3 - 800a8ac: f000 f8b0 bl 800aa10 - 800a8b0: 4603 mov r3, r0 - 800a8b2: 73bb strb r3, [r7, #14] + 800ac80: 7bfb ldrb r3, [r7, #15] + 800ac82: 4618 mov r0, r3 + 800ac84: f000 f8b0 bl 800ade8 + 800ac88: 4603 mov r3, r0 + 800ac8a: 73bb strb r3, [r7, #14] return usb_status; - 800a8b4: 7bbb ldrb r3, [r7, #14] + 800ac8c: 7bbb ldrb r3, [r7, #14] } - 800a8b6: 4618 mov r0, r3 - 800a8b8: 3710 adds r7, #16 - 800a8ba: 46bd mov sp, r7 - 800a8bc: bd80 pop {r7, pc} + 800ac8e: 4618 mov r0, r3 + 800ac90: 3710 adds r7, #16 + 800ac92: 46bd mov sp, r7 + 800ac94: bd80 pop {r7, pc} -0800a8be : +0800ac96 : * @param pbuf: Pointer to data to be sent * @param size: Data size * @retval USBD status */ USBD_StatusTypeDef USBD_LL_Transmit(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t size) { - 800a8be: b580 push {r7, lr} - 800a8c0: b086 sub sp, #24 - 800a8c2: af00 add r7, sp, #0 - 800a8c4: 60f8 str r0, [r7, #12] - 800a8c6: 607a str r2, [r7, #4] - 800a8c8: 603b str r3, [r7, #0] - 800a8ca: 460b mov r3, r1 - 800a8cc: 72fb strb r3, [r7, #11] + 800ac96: b580 push {r7, lr} + 800ac98: b086 sub sp, #24 + 800ac9a: af00 add r7, sp, #0 + 800ac9c: 60f8 str r0, [r7, #12] + 800ac9e: 607a str r2, [r7, #4] + 800aca0: 603b str r3, [r7, #0] + 800aca2: 460b mov r3, r1 + 800aca4: 72fb strb r3, [r7, #11] HAL_StatusTypeDef hal_status = HAL_OK; - 800a8ce: 2300 movs r3, #0 - 800a8d0: 75fb strb r3, [r7, #23] + 800aca6: 2300 movs r3, #0 + 800aca8: 75fb strb r3, [r7, #23] USBD_StatusTypeDef usb_status = USBD_OK; - 800a8d2: 2300 movs r3, #0 - 800a8d4: 75bb strb r3, [r7, #22] + 800acaa: 2300 movs r3, #0 + 800acac: 75bb strb r3, [r7, #22] hal_status = HAL_PCD_EP_Transmit(pdev->pData, ep_addr, pbuf, size); - 800a8d6: 68fb ldr r3, [r7, #12] - 800a8d8: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 - 800a8dc: 7af9 ldrb r1, [r7, #11] - 800a8de: 683b ldr r3, [r7, #0] - 800a8e0: 687a ldr r2, [r7, #4] - 800a8e2: f7f9 f8bd bl 8003a60 - 800a8e6: 4603 mov r3, r0 - 800a8e8: 75fb strb r3, [r7, #23] + 800acae: 68fb ldr r3, [r7, #12] + 800acb0: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 + 800acb4: 7af9 ldrb r1, [r7, #11] + 800acb6: 683b ldr r3, [r7, #0] + 800acb8: 687a ldr r2, [r7, #4] + 800acba: f7f9 f809 bl 8003cd0 + 800acbe: 4603 mov r3, r0 + 800acc0: 75fb strb r3, [r7, #23] usb_status = USBD_Get_USB_Status(hal_status); - 800a8ea: 7dfb ldrb r3, [r7, #23] - 800a8ec: 4618 mov r0, r3 - 800a8ee: f000 f88f bl 800aa10 - 800a8f2: 4603 mov r3, r0 - 800a8f4: 75bb strb r3, [r7, #22] + 800acc2: 7dfb ldrb r3, [r7, #23] + 800acc4: 4618 mov r0, r3 + 800acc6: f000 f88f bl 800ade8 + 800acca: 4603 mov r3, r0 + 800accc: 75bb strb r3, [r7, #22] return usb_status; - 800a8f6: 7dbb ldrb r3, [r7, #22] + 800acce: 7dbb ldrb r3, [r7, #22] } - 800a8f8: 4618 mov r0, r3 - 800a8fa: 3718 adds r7, #24 - 800a8fc: 46bd mov sp, r7 - 800a8fe: bd80 pop {r7, pc} + 800acd0: 4618 mov r0, r3 + 800acd2: 3718 adds r7, #24 + 800acd4: 46bd mov sp, r7 + 800acd6: bd80 pop {r7, pc} -0800a900 : +0800acd8 : * @param pbuf: Pointer to data to be received * @param size: Data size * @retval USBD status */ USBD_StatusTypeDef USBD_LL_PrepareReceive(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t size) { - 800a900: b580 push {r7, lr} - 800a902: b086 sub sp, #24 - 800a904: af00 add r7, sp, #0 - 800a906: 60f8 str r0, [r7, #12] - 800a908: 607a str r2, [r7, #4] - 800a90a: 603b str r3, [r7, #0] - 800a90c: 460b mov r3, r1 - 800a90e: 72fb strb r3, [r7, #11] + 800acd8: b580 push {r7, lr} + 800acda: b086 sub sp, #24 + 800acdc: af00 add r7, sp, #0 + 800acde: 60f8 str r0, [r7, #12] + 800ace0: 607a str r2, [r7, #4] + 800ace2: 603b str r3, [r7, #0] + 800ace4: 460b mov r3, r1 + 800ace6: 72fb strb r3, [r7, #11] HAL_StatusTypeDef hal_status = HAL_OK; - 800a910: 2300 movs r3, #0 - 800a912: 75fb strb r3, [r7, #23] + 800ace8: 2300 movs r3, #0 + 800acea: 75fb strb r3, [r7, #23] USBD_StatusTypeDef usb_status = USBD_OK; - 800a914: 2300 movs r3, #0 - 800a916: 75bb strb r3, [r7, #22] + 800acec: 2300 movs r3, #0 + 800acee: 75bb strb r3, [r7, #22] hal_status = HAL_PCD_EP_Receive(pdev->pData, ep_addr, pbuf, size); - 800a918: 68fb ldr r3, [r7, #12] - 800a91a: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 - 800a91e: 7af9 ldrb r1, [r7, #11] - 800a920: 683b ldr r3, [r7, #0] - 800a922: 687a ldr r2, [r7, #4] - 800a924: f7f9 f861 bl 80039ea - 800a928: 4603 mov r3, r0 - 800a92a: 75fb strb r3, [r7, #23] + 800acf0: 68fb ldr r3, [r7, #12] + 800acf2: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 + 800acf6: 7af9 ldrb r1, [r7, #11] + 800acf8: 683b ldr r3, [r7, #0] + 800acfa: 687a ldr r2, [r7, #4] + 800acfc: f7f8 ffad bl 8003c5a + 800ad00: 4603 mov r3, r0 + 800ad02: 75fb strb r3, [r7, #23] usb_status = USBD_Get_USB_Status(hal_status); - 800a92c: 7dfb ldrb r3, [r7, #23] - 800a92e: 4618 mov r0, r3 - 800a930: f000 f86e bl 800aa10 - 800a934: 4603 mov r3, r0 - 800a936: 75bb strb r3, [r7, #22] + 800ad04: 7dfb ldrb r3, [r7, #23] + 800ad06: 4618 mov r0, r3 + 800ad08: f000 f86e bl 800ade8 + 800ad0c: 4603 mov r3, r0 + 800ad0e: 75bb strb r3, [r7, #22] return usb_status; - 800a938: 7dbb ldrb r3, [r7, #22] + 800ad10: 7dbb ldrb r3, [r7, #22] } - 800a93a: 4618 mov r0, r3 - 800a93c: 3718 adds r7, #24 - 800a93e: 46bd mov sp, r7 - 800a940: bd80 pop {r7, pc} + 800ad12: 4618 mov r0, r3 + 800ad14: 3718 adds r7, #24 + 800ad16: 46bd mov sp, r7 + 800ad18: bd80 pop {r7, pc} ... -0800a944 : +0800ad1c : * @param hpcd: PCD handle * @param msg: LPM message * @retval None */ void HAL_PCDEx_LPM_Callback(PCD_HandleTypeDef *hpcd, PCD_LPM_MsgTypeDef msg) { - 800a944: b580 push {r7, lr} - 800a946: b082 sub sp, #8 - 800a948: af00 add r7, sp, #0 - 800a94a: 6078 str r0, [r7, #4] - 800a94c: 460b mov r3, r1 - 800a94e: 70fb strb r3, [r7, #3] + 800ad1c: b580 push {r7, lr} + 800ad1e: b082 sub sp, #8 + 800ad20: af00 add r7, sp, #0 + 800ad22: 6078 str r0, [r7, #4] + 800ad24: 460b mov r3, r1 + 800ad26: 70fb strb r3, [r7, #3] switch (msg) - 800a950: 78fb ldrb r3, [r7, #3] - 800a952: 2b00 cmp r3, #0 - 800a954: d002 beq.n 800a95c - 800a956: 2b01 cmp r3, #1 - 800a958: d01f beq.n 800a99a + 800ad28: 78fb ldrb r3, [r7, #3] + 800ad2a: 2b00 cmp r3, #0 + 800ad2c: d002 beq.n 800ad34 + 800ad2e: 2b01 cmp r3, #1 + 800ad30: d01f beq.n 800ad72 /* Set SLEEPDEEP bit and SleepOnExit of Cortex System Control Register. */ SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); } break; } } - 800a95a: e03b b.n 800a9d4 + 800ad32: e03b b.n 800adac if (hpcd->Init.low_power_enable) - 800a95c: 687b ldr r3, [r7, #4] - 800a95e: 7adb ldrb r3, [r3, #11] - 800a960: 2b00 cmp r3, #0 - 800a962: d007 beq.n 800a974 + 800ad34: 687b ldr r3, [r7, #4] + 800ad36: 7adb ldrb r3, [r3, #11] + 800ad38: 2b00 cmp r3, #0 + 800ad3a: d007 beq.n 800ad4c SystemClock_Config(); - 800a964: f7f6 f844 bl 80009f0 + 800ad3c: f7f5 ff66 bl 8000c0c SCB->SCR &= (uint32_t)~((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); - 800a968: 4b1c ldr r3, [pc, #112] @ (800a9dc ) - 800a96a: 691b ldr r3, [r3, #16] - 800a96c: 4a1b ldr r2, [pc, #108] @ (800a9dc ) - 800a96e: f023 0306 bic.w r3, r3, #6 - 800a972: 6113 str r3, [r2, #16] + 800ad40: 4b1c ldr r3, [pc, #112] @ (800adb4 ) + 800ad42: 691b ldr r3, [r3, #16] + 800ad44: 4a1b ldr r2, [pc, #108] @ (800adb4 ) + 800ad46: f023 0306 bic.w r3, r3, #6 + 800ad4a: 6113 str r3, [r2, #16] __HAL_PCD_UNGATE_PHYCLOCK(hpcd); - 800a974: 687b ldr r3, [r7, #4] - 800a976: 681b ldr r3, [r3, #0] - 800a978: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800a97c: 681b ldr r3, [r3, #0] - 800a97e: 687a ldr r2, [r7, #4] - 800a980: 6812 ldr r2, [r2, #0] - 800a982: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800a986: f023 0301 bic.w r3, r3, #1 - 800a98a: 6013 str r3, [r2, #0] + 800ad4c: 687b ldr r3, [r7, #4] + 800ad4e: 681b ldr r3, [r3, #0] + 800ad50: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 800ad54: 681b ldr r3, [r3, #0] + 800ad56: 687a ldr r2, [r7, #4] + 800ad58: 6812 ldr r2, [r2, #0] + 800ad5a: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 800ad5e: f023 0301 bic.w r3, r3, #1 + 800ad62: 6013 str r3, [r2, #0] USBD_LL_Resume(hpcd->pData); - 800a98c: 687b ldr r3, [r7, #4] - 800a98e: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a992: 4618 mov r0, r3 - 800a994: f7fe fb90 bl 80090b8 + 800ad64: 687b ldr r3, [r7, #4] + 800ad66: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800ad6a: 4618 mov r0, r3 + 800ad6c: f7fe fb90 bl 8009490 break; - 800a998: e01c b.n 800a9d4 + 800ad70: e01c b.n 800adac __HAL_PCD_GATE_PHYCLOCK(hpcd); - 800a99a: 687b ldr r3, [r7, #4] - 800a99c: 681b ldr r3, [r3, #0] - 800a99e: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800a9a2: 681b ldr r3, [r3, #0] - 800a9a4: 687a ldr r2, [r7, #4] - 800a9a6: 6812 ldr r2, [r2, #0] - 800a9a8: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800a9ac: f043 0301 orr.w r3, r3, #1 - 800a9b0: 6013 str r3, [r2, #0] + 800ad72: 687b ldr r3, [r7, #4] + 800ad74: 681b ldr r3, [r3, #0] + 800ad76: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 800ad7a: 681b ldr r3, [r3, #0] + 800ad7c: 687a ldr r2, [r7, #4] + 800ad7e: 6812 ldr r2, [r2, #0] + 800ad80: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 800ad84: f043 0301 orr.w r3, r3, #1 + 800ad88: 6013 str r3, [r2, #0] USBD_LL_Suspend(hpcd->pData); - 800a9b2: 687b ldr r3, [r7, #4] - 800a9b4: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a9b8: 4618 mov r0, r3 - 800a9ba: f7fe fb61 bl 8009080 + 800ad8a: 687b ldr r3, [r7, #4] + 800ad8c: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800ad90: 4618 mov r0, r3 + 800ad92: f7fe fb61 bl 8009458 if (hpcd->Init.low_power_enable) - 800a9be: 687b ldr r3, [r7, #4] - 800a9c0: 7adb ldrb r3, [r3, #11] - 800a9c2: 2b00 cmp r3, #0 - 800a9c4: d005 beq.n 800a9d2 + 800ad96: 687b ldr r3, [r7, #4] + 800ad98: 7adb ldrb r3, [r3, #11] + 800ad9a: 2b00 cmp r3, #0 + 800ad9c: d005 beq.n 800adaa SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); - 800a9c6: 4b05 ldr r3, [pc, #20] @ (800a9dc ) - 800a9c8: 691b ldr r3, [r3, #16] - 800a9ca: 4a04 ldr r2, [pc, #16] @ (800a9dc ) - 800a9cc: f043 0306 orr.w r3, r3, #6 - 800a9d0: 6113 str r3, [r2, #16] + 800ad9e: 4b05 ldr r3, [pc, #20] @ (800adb4 ) + 800ada0: 691b ldr r3, [r3, #16] + 800ada2: 4a04 ldr r2, [pc, #16] @ (800adb4 ) + 800ada4: f043 0306 orr.w r3, r3, #6 + 800ada8: 6113 str r3, [r2, #16] break; - 800a9d2: bf00 nop + 800adaa: bf00 nop } - 800a9d4: bf00 nop - 800a9d6: 3708 adds r7, #8 - 800a9d8: 46bd mov sp, r7 - 800a9da: bd80 pop {r7, pc} - 800a9dc: e000ed00 .word 0xe000ed00 + 800adac: bf00 nop + 800adae: 3708 adds r7, #8 + 800adb0: 46bd mov sp, r7 + 800adb2: bd80 pop {r7, pc} + 800adb4: e000ed00 .word 0xe000ed00 -0800a9e0 : +0800adb8 : * @brief Static single allocation. * @param size: Size of allocated memory * @retval None */ void *USBD_static_malloc(uint32_t size) { - 800a9e0: b480 push {r7} - 800a9e2: b083 sub sp, #12 - 800a9e4: af00 add r7, sp, #0 - 800a9e6: 6078 str r0, [r7, #4] + 800adb8: b480 push {r7} + 800adba: b083 sub sp, #12 + 800adbc: af00 add r7, sp, #0 + 800adbe: 6078 str r0, [r7, #4] static uint32_t mem[(sizeof(USBD_HID_HandleTypeDef)/4)+1];/* On 32-bit boundary */ return mem; - 800a9e8: 4b03 ldr r3, [pc, #12] @ (800a9f8 ) + 800adc0: 4b03 ldr r3, [pc, #12] @ (800add0 ) } - 800a9ea: 4618 mov r0, r3 - 800a9ec: 370c adds r7, #12 - 800a9ee: 46bd mov sp, r7 - 800a9f0: f85d 7b04 ldr.w r7, [sp], #4 - 800a9f4: 4770 bx lr - 800a9f6: bf00 nop - 800a9f8: 200010f8 .word 0x200010f8 + 800adc2: 4618 mov r0, r3 + 800adc4: 370c adds r7, #12 + 800adc6: 46bd mov sp, r7 + 800adc8: f85d 7b04 ldr.w r7, [sp], #4 + 800adcc: 4770 bx lr + 800adce: bf00 nop + 800add0: 20001748 .word 0x20001748 -0800a9fc : +0800add4 : * @brief Dummy memory free * @param p: Pointer to allocated memory address * @retval None */ void USBD_static_free(void *p) { - 800a9fc: b480 push {r7} - 800a9fe: b083 sub sp, #12 - 800aa00: af00 add r7, sp, #0 - 800aa02: 6078 str r0, [r7, #4] + 800add4: b480 push {r7} + 800add6: b083 sub sp, #12 + 800add8: af00 add r7, sp, #0 + 800adda: 6078 str r0, [r7, #4] } - 800aa04: bf00 nop - 800aa06: 370c adds r7, #12 - 800aa08: 46bd mov sp, r7 - 800aa0a: f85d 7b04 ldr.w r7, [sp], #4 - 800aa0e: 4770 bx lr + 800addc: bf00 nop + 800adde: 370c adds r7, #12 + 800ade0: 46bd mov sp, r7 + 800ade2: f85d 7b04 ldr.w r7, [sp], #4 + 800ade6: 4770 bx lr -0800aa10 : +0800ade8 : * @brief Returns the USB status depending on the HAL status: * @param hal_status: HAL status * @retval USB status */ USBD_StatusTypeDef USBD_Get_USB_Status(HAL_StatusTypeDef hal_status) { - 800aa10: b480 push {r7} - 800aa12: b085 sub sp, #20 - 800aa14: af00 add r7, sp, #0 - 800aa16: 4603 mov r3, r0 - 800aa18: 71fb strb r3, [r7, #7] + 800ade8: b480 push {r7} + 800adea: b085 sub sp, #20 + 800adec: af00 add r7, sp, #0 + 800adee: 4603 mov r3, r0 + 800adf0: 71fb strb r3, [r7, #7] USBD_StatusTypeDef usb_status = USBD_OK; - 800aa1a: 2300 movs r3, #0 - 800aa1c: 73fb strb r3, [r7, #15] + 800adf2: 2300 movs r3, #0 + 800adf4: 73fb strb r3, [r7, #15] switch (hal_status) - 800aa1e: 79fb ldrb r3, [r7, #7] - 800aa20: 2b03 cmp r3, #3 - 800aa22: d817 bhi.n 800aa54 - 800aa24: a201 add r2, pc, #4 @ (adr r2, 800aa2c ) - 800aa26: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800aa2a: bf00 nop - 800aa2c: 0800aa3d .word 0x0800aa3d - 800aa30: 0800aa43 .word 0x0800aa43 - 800aa34: 0800aa49 .word 0x0800aa49 - 800aa38: 0800aa4f .word 0x0800aa4f + 800adf6: 79fb ldrb r3, [r7, #7] + 800adf8: 2b03 cmp r3, #3 + 800adfa: d817 bhi.n 800ae2c + 800adfc: a201 add r2, pc, #4 @ (adr r2, 800ae04 ) + 800adfe: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800ae02: bf00 nop + 800ae04: 0800ae15 .word 0x0800ae15 + 800ae08: 0800ae1b .word 0x0800ae1b + 800ae0c: 0800ae21 .word 0x0800ae21 + 800ae10: 0800ae27 .word 0x0800ae27 { case HAL_OK : usb_status = USBD_OK; - 800aa3c: 2300 movs r3, #0 - 800aa3e: 73fb strb r3, [r7, #15] + 800ae14: 2300 movs r3, #0 + 800ae16: 73fb strb r3, [r7, #15] break; - 800aa40: e00b b.n 800aa5a + 800ae18: e00b b.n 800ae32 case HAL_ERROR : usb_status = USBD_FAIL; - 800aa42: 2303 movs r3, #3 - 800aa44: 73fb strb r3, [r7, #15] + 800ae1a: 2303 movs r3, #3 + 800ae1c: 73fb strb r3, [r7, #15] break; - 800aa46: e008 b.n 800aa5a + 800ae1e: e008 b.n 800ae32 case HAL_BUSY : usb_status = USBD_BUSY; - 800aa48: 2301 movs r3, #1 - 800aa4a: 73fb strb r3, [r7, #15] + 800ae20: 2301 movs r3, #1 + 800ae22: 73fb strb r3, [r7, #15] break; - 800aa4c: e005 b.n 800aa5a + 800ae24: e005 b.n 800ae32 case HAL_TIMEOUT : usb_status = USBD_FAIL; - 800aa4e: 2303 movs r3, #3 - 800aa50: 73fb strb r3, [r7, #15] + 800ae26: 2303 movs r3, #3 + 800ae28: 73fb strb r3, [r7, #15] break; - 800aa52: e002 b.n 800aa5a + 800ae2a: e002 b.n 800ae32 default : usb_status = USBD_FAIL; - 800aa54: 2303 movs r3, #3 - 800aa56: 73fb strb r3, [r7, #15] + 800ae2c: 2303 movs r3, #3 + 800ae2e: 73fb strb r3, [r7, #15] break; - 800aa58: bf00 nop + 800ae30: bf00 nop } return usb_status; - 800aa5a: 7bfb ldrb r3, [r7, #15] + 800ae32: 7bfb ldrb r3, [r7, #15] } - 800aa5c: 4618 mov r0, r3 - 800aa5e: 3714 adds r7, #20 - 800aa60: 46bd mov sp, r7 - 800aa62: f85d 7b04 ldr.w r7, [sp], #4 - 800aa66: 4770 bx lr + 800ae34: 4618 mov r0, r3 + 800ae36: 3714 adds r7, #20 + 800ae38: 46bd mov sp, r7 + 800ae3a: f85d 7b04 ldr.w r7, [sp], #4 + 800ae3e: 4770 bx lr -0800aa68 : - 800aa68: 4402 add r2, r0 - 800aa6a: 4603 mov r3, r0 - 800aa6c: 4293 cmp r3, r2 - 800aa6e: d100 bne.n 800aa72 - 800aa70: 4770 bx lr - 800aa72: f803 1b01 strb.w r1, [r3], #1 - 800aa76: e7f9 b.n 800aa6c +0800ae40 : + 800ae40: 4402 add r2, r0 + 800ae42: 4603 mov r3, r0 + 800ae44: 4293 cmp r3, r2 + 800ae46: d100 bne.n 800ae4a + 800ae48: 4770 bx lr + 800ae4a: f803 1b01 strb.w r1, [r3], #1 + 800ae4e: e7f9 b.n 800ae44 -0800aa78 <__libc_init_array>: - 800aa78: b570 push {r4, r5, r6, lr} - 800aa7a: 4d0d ldr r5, [pc, #52] @ (800aab0 <__libc_init_array+0x38>) - 800aa7c: 4c0d ldr r4, [pc, #52] @ (800aab4 <__libc_init_array+0x3c>) - 800aa7e: 1b64 subs r4, r4, r5 - 800aa80: 10a4 asrs r4, r4, #2 - 800aa82: 2600 movs r6, #0 - 800aa84: 42a6 cmp r6, r4 - 800aa86: d109 bne.n 800aa9c <__libc_init_array+0x24> - 800aa88: 4d0b ldr r5, [pc, #44] @ (800aab8 <__libc_init_array+0x40>) - 800aa8a: 4c0c ldr r4, [pc, #48] @ (800aabc <__libc_init_array+0x44>) - 800aa8c: f000 f818 bl 800aac0 <_init> - 800aa90: 1b64 subs r4, r4, r5 - 800aa92: 10a4 asrs r4, r4, #2 - 800aa94: 2600 movs r6, #0 - 800aa96: 42a6 cmp r6, r4 - 800aa98: d105 bne.n 800aaa6 <__libc_init_array+0x2e> - 800aa9a: bd70 pop {r4, r5, r6, pc} - 800aa9c: f855 3b04 ldr.w r3, [r5], #4 - 800aaa0: 4798 blx r3 - 800aaa2: 3601 adds r6, #1 - 800aaa4: e7ee b.n 800aa84 <__libc_init_array+0xc> - 800aaa6: f855 3b04 ldr.w r3, [r5], #4 - 800aaaa: 4798 blx r3 - 800aaac: 3601 adds r6, #1 - 800aaae: e7f2 b.n 800aa96 <__libc_init_array+0x1e> - 800aab0: 0800ab3c .word 0x0800ab3c - 800aab4: 0800ab3c .word 0x0800ab3c - 800aab8: 0800ab3c .word 0x0800ab3c - 800aabc: 0800ab40 .word 0x0800ab40 +0800ae50 <__libc_init_array>: + 800ae50: b570 push {r4, r5, r6, lr} + 800ae52: 4d0d ldr r5, [pc, #52] @ (800ae88 <__libc_init_array+0x38>) + 800ae54: 4c0d ldr r4, [pc, #52] @ (800ae8c <__libc_init_array+0x3c>) + 800ae56: 1b64 subs r4, r4, r5 + 800ae58: 10a4 asrs r4, r4, #2 + 800ae5a: 2600 movs r6, #0 + 800ae5c: 42a6 cmp r6, r4 + 800ae5e: d109 bne.n 800ae74 <__libc_init_array+0x24> + 800ae60: 4d0b ldr r5, [pc, #44] @ (800ae90 <__libc_init_array+0x40>) + 800ae62: 4c0c ldr r4, [pc, #48] @ (800ae94 <__libc_init_array+0x44>) + 800ae64: f000 f826 bl 800aeb4 <_init> + 800ae68: 1b64 subs r4, r4, r5 + 800ae6a: 10a4 asrs r4, r4, #2 + 800ae6c: 2600 movs r6, #0 + 800ae6e: 42a6 cmp r6, r4 + 800ae70: d105 bne.n 800ae7e <__libc_init_array+0x2e> + 800ae72: bd70 pop {r4, r5, r6, pc} + 800ae74: f855 3b04 ldr.w r3, [r5], #4 + 800ae78: 4798 blx r3 + 800ae7a: 3601 adds r6, #1 + 800ae7c: e7ee b.n 800ae5c <__libc_init_array+0xc> + 800ae7e: f855 3b04 ldr.w r3, [r5], #4 + 800ae82: 4798 blx r3 + 800ae84: 3601 adds r6, #1 + 800ae86: e7f2 b.n 800ae6e <__libc_init_array+0x1e> + 800ae88: 0800af30 .word 0x0800af30 + 800ae8c: 0800af30 .word 0x0800af30 + 800ae90: 0800af30 .word 0x0800af30 + 800ae94: 0800af34 .word 0x0800af34 -0800aac0 <_init>: - 800aac0: b5f8 push {r3, r4, r5, r6, r7, lr} - 800aac2: bf00 nop - 800aac4: bcf8 pop {r3, r4, r5, r6, r7} - 800aac6: bc08 pop {r3} - 800aac8: 469e mov lr, r3 - 800aaca: 4770 bx lr +0800ae98 : + 800ae98: 440a add r2, r1 + 800ae9a: 4291 cmp r1, r2 + 800ae9c: f100 33ff add.w r3, r0, #4294967295 @ 0xffffffff + 800aea0: d100 bne.n 800aea4 + 800aea2: 4770 bx lr + 800aea4: b510 push {r4, lr} + 800aea6: f811 4b01 ldrb.w r4, [r1], #1 + 800aeaa: f803 4f01 strb.w r4, [r3, #1]! + 800aeae: 4291 cmp r1, r2 + 800aeb0: d1f9 bne.n 800aea6 + 800aeb2: bd10 pop {r4, pc} -0800aacc <_fini>: - 800aacc: b5f8 push {r3, r4, r5, r6, r7, lr} - 800aace: bf00 nop - 800aad0: bcf8 pop {r3, r4, r5, r6, r7} - 800aad2: bc08 pop {r3} - 800aad4: 469e mov lr, r3 - 800aad6: 4770 bx lr +0800aeb4 <_init>: + 800aeb4: b5f8 push {r3, r4, r5, r6, r7, lr} + 800aeb6: bf00 nop + 800aeb8: bcf8 pop {r3, r4, r5, r6, r7} + 800aeba: bc08 pop {r3} + 800aebc: 469e mov lr, r3 + 800aebe: 4770 bx lr + +0800aec0 <_fini>: + 800aec0: b5f8 push {r3, r4, r5, r6, r7, lr} + 800aec2: bf00 nop + 800aec4: bcf8 pop {r3, r4, r5, r6, r7} + 800aec6: bc08 pop {r3} + 800aec8: 469e mov lr, r3 + 800aeca: 4770 bx lr diff --git a/firmware/modularkbd/Debug/modularkbd.map b/firmware/modularkbd/Debug/modularkbd.map index cb84d85e..114bed54 100644 --- a/firmware/modularkbd/Debug/modularkbd.map +++ b/firmware/modularkbd/Debug/modularkbd.map @@ -28,6 +28,8 @@ Archive member included to satisfy reference by file (symbol) /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o (__libc_init_array) /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-lock.o) /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-findfp.o) (__retarget_lock_init_recursive) +/home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + ./Core/Src/main.o (memcpy) /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-freer.o) /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-reent.o) (_free_r) /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-mallocr.o) @@ -200,6 +202,50 @@ Discarded input sections .debug_macro 0x00000000 0xba ./Core/Src/gpio.o .debug_macro 0x00000000 0x126 ./Core/Src/gpio.o .debug_macro 0x00000000 0x304 ./Core/Src/gpio.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .group 0x00000000 0xc ./Core/Src/hid_queue.o + .text 0x00000000 0x0 ./Core/Src/hid_queue.o + .data 0x00000000 0x0 ./Core/Src/hid_queue.o + .bss 0x00000000 0x0 ./Core/Src/hid_queue.o + .text.hid_queue_init + 0x00000000 0x50 ./Core/Src/hid_queue.o + .text.hid_queue_reset + 0x00000000 0x2e ./Core/Src/hid_queue.o + .text.hid_queue_is_empty + 0x00000000 0x22 ./Core/Src/hid_queue.o + .text.hid_queue_is_full + 0x00000000 0x26 ./Core/Src/hid_queue.o + .text.hid_queue_push + 0x00000000 0x7e ./Core/Src/hid_queue.o + .text.hid_queue_pop + 0x00000000 0x76 ./Core/Src/hid_queue.o + .debug_info 0x00000000 0x25c ./Core/Src/hid_queue.o + .debug_abbrev 0x00000000 0x112 ./Core/Src/hid_queue.o + .debug_aranges + 0x00000000 0x48 ./Core/Src/hid_queue.o + .debug_rnglists + 0x00000000 0x31 ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x76 ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0xad8 ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x22 ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x8e ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x51 ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x103 ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x6a ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x1df ./Core/Src/hid_queue.o + .debug_macro 0x00000000 0x22 ./Core/Src/hid_queue.o + .debug_line 0x00000000 0x498 ./Core/Src/hid_queue.o + .debug_str 0x00000000 0x3ec3 ./Core/Src/hid_queue.o + .comment 0x00000000 0x44 ./Core/Src/hid_queue.o + .debug_frame 0x00000000 0x10c ./Core/Src/hid_queue.o + .ARM.attributes + 0x00000000 0x34 ./Core/Src/hid_queue.o .group 0x00000000 0xc ./Core/Src/i2c.o .group 0x00000000 0xc ./Core/Src/i2c.o .group 0x00000000 0xc ./Core/Src/i2c.o @@ -367,11 +413,18 @@ Discarded input sections .group 0x00000000 0xc ./Core/Src/main.o .group 0x00000000 0xc ./Core/Src/main.o .group 0x00000000 0xc ./Core/Src/main.o + .group 0x00000000 0xc ./Core/Src/main.o .text 0x00000000 0x0 ./Core/Src/main.o .data 0x00000000 0x0 ./Core/Src/main.o .bss 0x00000000 0x0 ./Core/Src/main.o .bss.reportBuff 0x00000000 0x10 ./Core/Src/main.o + .bss.uartBuffer + 0x00000000 0x10 ./Core/Src/main.o + .bss.uartUpdateFlag + 0x00000000 0x4 ./Core/Src/main.o + .text.encoderProcess + 0x00000000 0xbc ./Core/Src/main.o .debug_macro 0x00000000 0xad8 ./Core/Src/main.o .debug_macro 0x00000000 0x2a7 ./Core/Src/main.o .debug_macro 0x00000000 0x2e ./Core/Src/main.o @@ -417,6 +470,7 @@ Discarded input sections .debug_macro 0x00000000 0xba ./Core/Src/main.o .debug_macro 0x00000000 0x126 ./Core/Src/main.o .debug_macro 0x00000000 0x304 ./Core/Src/main.o + .debug_macro 0x00000000 0x22 ./Core/Src/main.o .group 0x00000000 0xc ./Core/Src/stm32f4xx_hal_msp.o .group 0x00000000 0xc ./Core/Src/stm32f4xx_hal_msp.o .group 0x00000000 0xc ./Core/Src/stm32f4xx_hal_msp.o @@ -3423,8 +3477,6 @@ Discarded input sections 0x00000000 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.HAL_TIM_Encoder_MspDeInit 0x00000000 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .text.HAL_TIM_Encoder_Start - 0x00000000 0x11c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.HAL_TIM_Encoder_Stop 0x00000000 0x12e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.HAL_TIM_Encoder_Start_IT @@ -3543,8 +3595,6 @@ Discarded input sections 0x00000000 0x36 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.TIM_ETR_SetConfig 0x00000000 0x40 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .text.TIM_CCxChannelCmd - 0x00000000 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .debug_macro 0x00000000 0xad8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .debug_macro 0x00000000 0x2a7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .debug_macro 0x00000000 0x2e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o @@ -5278,6 +5328,9 @@ Discarded input sections .debug_frame 0x00000000 0xb0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-lock.o) .ARM.attributes 0x00000000 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-lock.o) + .text 0x00000000 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + .data 0x00000000 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + .bss 0x00000000 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) .text 0x00000000 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-freer.o) .data 0x00000000 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-freer.o) .bss 0x00000000 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-freer.o) @@ -5359,6 +5412,7 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o LOAD ./Core/Src/dma.o LOAD ./Core/Src/gpio.o +LOAD ./Core/Src/hid_queue.o LOAD ./Core/Src/i2c.o LOAD ./Core/Src/main.o LOAD ./Core/Src/stm32f4xx_hal_msp.o @@ -5428,7 +5482,7 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external 0x08000000 g_pfnVectors 0x080001c4 . = ALIGN (0x4) -.text 0x080001c4 0xa914 +.text 0x080001c4 0xad08 0x080001c4 . = ALIGN (0x4) *(.text) .text 0x080001c4 0x40 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o @@ -5452,870 +5506,888 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .text.HAL_I2C_MspInit 0x08000798 0x90 ./Core/Src/i2c.o 0x08000798 HAL_I2C_MspInit - .text.main 0x08000828 0x1c8 ./Core/Src/main.o - 0x08000828 main + .text.pq_init 0x08000828 0x2c ./Core/Src/main.o + 0x08000828 pq_init + .text.pq_push 0x08000854 0x68 ./Core/Src/main.o + 0x08000854 pq_push + .text.pq_pop 0x080008bc 0x6c ./Core/Src/main.o + 0x080008bc pq_pop + .text.main 0x08000928 0x1dc ./Core/Src/main.o + 0x08000928 main + .text.mergeChild + 0x08000b04 0x108 ./Core/Src/main.o + 0x08000b04 mergeChild .text.SystemClock_Config - 0x080009f0 0xd8 ./Core/Src/main.o - 0x080009f0 SystemClock_Config + 0x08000c0c 0xd8 ./Core/Src/main.o + 0x08000c0c SystemClock_Config .text.HAL_UART_RxCpltCallback - 0x08000ac8 0xb8 ./Core/Src/main.o - 0x08000ac8 HAL_UART_RxCpltCallback + 0x08000ce4 0xb8 ./Core/Src/main.o + 0x08000ce4 HAL_UART_RxCpltCallback .text.HAL_UART_ErrorCallback - 0x08000b80 0x98 ./Core/Src/main.o - 0x08000b80 HAL_UART_ErrorCallback + 0x08000d9c 0x98 ./Core/Src/main.o + 0x08000d9c HAL_UART_ErrorCallback .text.findBestParent - 0x08000c18 0x84 ./Core/Src/main.o - 0x08000c18 findBestParent + 0x08000e34 0x84 ./Core/Src/main.o + 0x08000e34 findBestParent .text.handleUARTMessages - 0x08000c9c 0x124 ./Core/Src/main.o - 0x08000c9c handleUARTMessages + 0x08000eb8 0x144 ./Core/Src/main.o + 0x08000eb8 handleUARTMessages .text.addUSBReport - 0x08000dc0 0x68 ./Core/Src/main.o - 0x08000dc0 addUSBReport + 0x08000ffc 0x68 ./Core/Src/main.o + 0x08000ffc addUSBReport .text.matrixScan - 0x08000e28 0xb4 ./Core/Src/main.o - 0x08000e28 matrixScan + 0x08001064 0xf0 ./Core/Src/main.o + 0x08001064 matrixScan .text.resetReport - 0x08000edc 0x20 ./Core/Src/main.o - 0x08000edc resetReport + 0x08001154 0x18 ./Core/Src/main.o + 0x08001154 resetReport .text.Error_Handler - 0x08000efc 0xc ./Core/Src/main.o - 0x08000efc Error_Handler + 0x0800116c 0xc ./Core/Src/main.o + 0x0800116c Error_Handler .text.HAL_MspInit - 0x08000f08 0x50 ./Core/Src/stm32f4xx_hal_msp.o - 0x08000f08 HAL_MspInit + 0x08001178 0x50 ./Core/Src/stm32f4xx_hal_msp.o + 0x08001178 HAL_MspInit .text.NMI_Handler - 0x08000f58 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000f58 NMI_Handler + 0x080011c8 0x8 ./Core/Src/stm32f4xx_it.o + 0x080011c8 NMI_Handler .text.HardFault_Handler - 0x08000f60 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000f60 HardFault_Handler + 0x080011d0 0x8 ./Core/Src/stm32f4xx_it.o + 0x080011d0 HardFault_Handler .text.MemManage_Handler - 0x08000f68 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000f68 MemManage_Handler + 0x080011d8 0x8 ./Core/Src/stm32f4xx_it.o + 0x080011d8 MemManage_Handler .text.BusFault_Handler - 0x08000f70 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000f70 BusFault_Handler + 0x080011e0 0x8 ./Core/Src/stm32f4xx_it.o + 0x080011e0 BusFault_Handler .text.UsageFault_Handler - 0x08000f78 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000f78 UsageFault_Handler + 0x080011e8 0x8 ./Core/Src/stm32f4xx_it.o + 0x080011e8 UsageFault_Handler .text.SVC_Handler - 0x08000f80 0xe ./Core/Src/stm32f4xx_it.o - 0x08000f80 SVC_Handler + 0x080011f0 0xe ./Core/Src/stm32f4xx_it.o + 0x080011f0 SVC_Handler .text.DebugMon_Handler - 0x08000f8e 0xe ./Core/Src/stm32f4xx_it.o - 0x08000f8e DebugMon_Handler + 0x080011fe 0xe ./Core/Src/stm32f4xx_it.o + 0x080011fe DebugMon_Handler .text.PendSV_Handler - 0x08000f9c 0xe ./Core/Src/stm32f4xx_it.o - 0x08000f9c PendSV_Handler + 0x0800120c 0xe ./Core/Src/stm32f4xx_it.o + 0x0800120c PendSV_Handler .text.SysTick_Handler - 0x08000faa 0xc ./Core/Src/stm32f4xx_it.o - 0x08000faa SysTick_Handler - *fill* 0x08000fb6 0x2 + 0x0800121a 0xc ./Core/Src/stm32f4xx_it.o + 0x0800121a SysTick_Handler + *fill* 0x08001226 0x2 .text.DMA1_Stream0_IRQHandler - 0x08000fb8 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000fb8 DMA1_Stream0_IRQHandler + 0x08001228 0x14 ./Core/Src/stm32f4xx_it.o + 0x08001228 DMA1_Stream0_IRQHandler .text.DMA1_Stream2_IRQHandler - 0x08000fcc 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000fcc DMA1_Stream2_IRQHandler + 0x0800123c 0x14 ./Core/Src/stm32f4xx_it.o + 0x0800123c DMA1_Stream2_IRQHandler .text.DMA1_Stream4_IRQHandler - 0x08000fe0 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000fe0 DMA1_Stream4_IRQHandler + 0x08001250 0x14 ./Core/Src/stm32f4xx_it.o + 0x08001250 DMA1_Stream4_IRQHandler .text.DMA1_Stream5_IRQHandler - 0x08000ff4 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000ff4 DMA1_Stream5_IRQHandler + 0x08001264 0x14 ./Core/Src/stm32f4xx_it.o + 0x08001264 DMA1_Stream5_IRQHandler .text.DMA1_Stream6_IRQHandler - 0x08001008 0x14 ./Core/Src/stm32f4xx_it.o - 0x08001008 DMA1_Stream6_IRQHandler + 0x08001278 0x14 ./Core/Src/stm32f4xx_it.o + 0x08001278 DMA1_Stream6_IRQHandler .text.USART1_IRQHandler - 0x0800101c 0x14 ./Core/Src/stm32f4xx_it.o - 0x0800101c USART1_IRQHandler + 0x0800128c 0x14 ./Core/Src/stm32f4xx_it.o + 0x0800128c USART1_IRQHandler .text.USART2_IRQHandler - 0x08001030 0x14 ./Core/Src/stm32f4xx_it.o - 0x08001030 USART2_IRQHandler + 0x080012a0 0x14 ./Core/Src/stm32f4xx_it.o + 0x080012a0 USART2_IRQHandler .text.DMA1_Stream7_IRQHandler - 0x08001044 0x14 ./Core/Src/stm32f4xx_it.o - 0x08001044 DMA1_Stream7_IRQHandler + 0x080012b4 0x14 ./Core/Src/stm32f4xx_it.o + 0x080012b4 DMA1_Stream7_IRQHandler .text.UART4_IRQHandler - 0x08001058 0x14 ./Core/Src/stm32f4xx_it.o - 0x08001058 UART4_IRQHandler + 0x080012c8 0x14 ./Core/Src/stm32f4xx_it.o + 0x080012c8 UART4_IRQHandler .text.UART5_IRQHandler - 0x0800106c 0x14 ./Core/Src/stm32f4xx_it.o - 0x0800106c UART5_IRQHandler + 0x080012dc 0x14 ./Core/Src/stm32f4xx_it.o + 0x080012dc UART5_IRQHandler .text.DMA2_Stream2_IRQHandler - 0x08001080 0x14 ./Core/Src/stm32f4xx_it.o - 0x08001080 DMA2_Stream2_IRQHandler + 0x080012f0 0x14 ./Core/Src/stm32f4xx_it.o + 0x080012f0 DMA2_Stream2_IRQHandler .text.OTG_FS_IRQHandler - 0x08001094 0x14 ./Core/Src/stm32f4xx_it.o - 0x08001094 OTG_FS_IRQHandler + 0x08001304 0x14 ./Core/Src/stm32f4xx_it.o + 0x08001304 OTG_FS_IRQHandler .text.DMA2_Stream7_IRQHandler - 0x080010a8 0x14 ./Core/Src/stm32f4xx_it.o - 0x080010a8 DMA2_Stream7_IRQHandler + 0x08001318 0x14 ./Core/Src/stm32f4xx_it.o + 0x08001318 DMA2_Stream7_IRQHandler .text.SystemInit - 0x080010bc 0x24 ./Core/Src/system_stm32f4xx.o - 0x080010bc SystemInit + 0x0800132c 0x24 ./Core/Src/system_stm32f4xx.o + 0x0800132c SystemInit .text.MX_TIM2_Init - 0x080010e0 0xb0 ./Core/Src/tim.o - 0x080010e0 MX_TIM2_Init + 0x08001350 0xb0 ./Core/Src/tim.o + 0x08001350 MX_TIM2_Init .text.MX_TIM3_Init - 0x08001190 0xa8 ./Core/Src/tim.o - 0x08001190 MX_TIM3_Init + 0x08001400 0xa8 ./Core/Src/tim.o + 0x08001400 MX_TIM3_Init .text.HAL_TIM_OC_MspInit - 0x08001238 0x40 ./Core/Src/tim.o - 0x08001238 HAL_TIM_OC_MspInit + 0x080014a8 0x40 ./Core/Src/tim.o + 0x080014a8 HAL_TIM_OC_MspInit .text.HAL_TIM_Encoder_MspInit - 0x08001278 0x90 ./Core/Src/tim.o - 0x08001278 HAL_TIM_Encoder_MspInit + 0x080014e8 0x90 ./Core/Src/tim.o + 0x080014e8 HAL_TIM_Encoder_MspInit .text.HAL_TIM_MspPostInit - 0x08001308 0x70 ./Core/Src/tim.o - 0x08001308 HAL_TIM_MspPostInit + 0x08001578 0x70 ./Core/Src/tim.o + 0x08001578 HAL_TIM_MspPostInit .text.MX_UART4_Init - 0x08001378 0x54 ./Core/Src/usart.o - 0x08001378 MX_UART4_Init + 0x080015e8 0x54 ./Core/Src/usart.o + 0x080015e8 MX_UART4_Init .text.MX_UART5_Init - 0x080013cc 0x54 ./Core/Src/usart.o - 0x080013cc MX_UART5_Init + 0x0800163c 0x54 ./Core/Src/usart.o + 0x0800163c MX_UART5_Init .text.MX_USART1_UART_Init - 0x08001420 0x54 ./Core/Src/usart.o - 0x08001420 MX_USART1_UART_Init + 0x08001690 0x54 ./Core/Src/usart.o + 0x08001690 MX_USART1_UART_Init .text.MX_USART2_UART_Init - 0x08001474 0x54 ./Core/Src/usart.o - 0x08001474 MX_USART2_UART_Init + 0x080016e4 0x54 ./Core/Src/usart.o + 0x080016e4 MX_USART2_UART_Init .text.HAL_UART_MspInit - 0x080014c8 0x584 ./Core/Src/usart.o - 0x080014c8 HAL_UART_MspInit + 0x08001738 0x584 ./Core/Src/usart.o + 0x08001738 HAL_UART_MspInit .text.Reset_Handler - 0x08001a4c 0x50 ./Core/Startup/startup_stm32f446retx.o - 0x08001a4c Reset_Handler + 0x08001cbc 0x50 ./Core/Startup/startup_stm32f446retx.o + 0x08001cbc Reset_Handler .text.Default_Handler - 0x08001a9c 0x2 ./Core/Startup/startup_stm32f446retx.o - 0x08001a9c RTC_Alarm_IRQHandler - 0x08001a9c EXTI2_IRQHandler - 0x08001a9c TIM8_CC_IRQHandler - 0x08001a9c FMPI2C1_EV_IRQHandler - 0x08001a9c SPI4_IRQHandler - 0x08001a9c TIM1_CC_IRQHandler - 0x08001a9c DMA2_Stream5_IRQHandler - 0x08001a9c PVD_IRQHandler - 0x08001a9c SDIO_IRQHandler - 0x08001a9c TAMP_STAMP_IRQHandler - 0x08001a9c CAN2_RX1_IRQHandler - 0x08001a9c EXTI3_IRQHandler - 0x08001a9c TIM8_TRG_COM_TIM14_IRQHandler - 0x08001a9c TIM1_UP_TIM10_IRQHandler - 0x08001a9c TIM8_UP_TIM13_IRQHandler - 0x08001a9c I2C3_ER_IRQHandler - 0x08001a9c EXTI0_IRQHandler - 0x08001a9c I2C2_EV_IRQHandler - 0x08001a9c CAN1_RX0_IRQHandler - 0x08001a9c FPU_IRQHandler - 0x08001a9c OTG_HS_WKUP_IRQHandler - 0x08001a9c CAN2_SCE_IRQHandler - 0x08001a9c SPI1_IRQHandler - 0x08001a9c TIM6_DAC_IRQHandler - 0x08001a9c TIM1_BRK_TIM9_IRQHandler - 0x08001a9c DCMI_IRQHandler - 0x08001a9c CAN2_RX0_IRQHandler - 0x08001a9c DMA2_Stream3_IRQHandler - 0x08001a9c SAI2_IRQHandler - 0x08001a9c USART6_IRQHandler - 0x08001a9c USART3_IRQHandler - 0x08001a9c CAN1_RX1_IRQHandler - 0x08001a9c DMA2_Stream0_IRQHandler - 0x08001a9c TIM4_IRQHandler - 0x08001a9c QUADSPI_IRQHandler - 0x08001a9c I2C1_EV_IRQHandler - 0x08001a9c DMA1_Stream1_IRQHandler - 0x08001a9c TIM3_IRQHandler - 0x08001a9c RCC_IRQHandler - 0x08001a9c TIM8_BRK_TIM12_IRQHandler - 0x08001a9c Default_Handler - 0x08001a9c CEC_IRQHandler - 0x08001a9c EXTI15_10_IRQHandler - 0x08001a9c ADC_IRQHandler - 0x08001a9c TIM7_IRQHandler - 0x08001a9c CAN2_TX_IRQHandler - 0x08001a9c TIM5_IRQHandler - 0x08001a9c I2C3_EV_IRQHandler - 0x08001a9c EXTI9_5_IRQHandler - 0x08001a9c RTC_WKUP_IRQHandler - 0x08001a9c SPDIF_RX_IRQHandler - 0x08001a9c SPI2_IRQHandler - 0x08001a9c OTG_HS_EP1_IN_IRQHandler - 0x08001a9c CAN1_TX_IRQHandler - 0x08001a9c FMPI2C1_ER_IRQHandler - 0x08001a9c EXTI4_IRQHandler - 0x08001a9c OTG_HS_EP1_OUT_IRQHandler - 0x08001a9c WWDG_IRQHandler - 0x08001a9c TIM2_IRQHandler - 0x08001a9c OTG_FS_WKUP_IRQHandler - 0x08001a9c TIM1_TRG_COM_TIM11_IRQHandler - 0x08001a9c OTG_HS_IRQHandler - 0x08001a9c EXTI1_IRQHandler - 0x08001a9c I2C2_ER_IRQHandler - 0x08001a9c DMA2_Stream1_IRQHandler - 0x08001a9c CAN1_SCE_IRQHandler - 0x08001a9c FLASH_IRQHandler - 0x08001a9c DMA2_Stream4_IRQHandler - 0x08001a9c SPI3_IRQHandler - 0x08001a9c I2C1_ER_IRQHandler - 0x08001a9c FMC_IRQHandler - 0x08001a9c DMA2_Stream6_IRQHandler - 0x08001a9c SAI1_IRQHandler - 0x08001a9c DMA1_Stream3_IRQHandler - *fill* 0x08001a9e 0x2 + 0x08001d0c 0x2 ./Core/Startup/startup_stm32f446retx.o + 0x08001d0c RTC_Alarm_IRQHandler + 0x08001d0c EXTI2_IRQHandler + 0x08001d0c TIM8_CC_IRQHandler + 0x08001d0c FMPI2C1_EV_IRQHandler + 0x08001d0c SPI4_IRQHandler + 0x08001d0c TIM1_CC_IRQHandler + 0x08001d0c DMA2_Stream5_IRQHandler + 0x08001d0c PVD_IRQHandler + 0x08001d0c SDIO_IRQHandler + 0x08001d0c TAMP_STAMP_IRQHandler + 0x08001d0c CAN2_RX1_IRQHandler + 0x08001d0c EXTI3_IRQHandler + 0x08001d0c TIM8_TRG_COM_TIM14_IRQHandler + 0x08001d0c TIM1_UP_TIM10_IRQHandler + 0x08001d0c TIM8_UP_TIM13_IRQHandler + 0x08001d0c I2C3_ER_IRQHandler + 0x08001d0c EXTI0_IRQHandler + 0x08001d0c I2C2_EV_IRQHandler + 0x08001d0c CAN1_RX0_IRQHandler + 0x08001d0c FPU_IRQHandler + 0x08001d0c OTG_HS_WKUP_IRQHandler + 0x08001d0c CAN2_SCE_IRQHandler + 0x08001d0c SPI1_IRQHandler + 0x08001d0c TIM6_DAC_IRQHandler + 0x08001d0c TIM1_BRK_TIM9_IRQHandler + 0x08001d0c DCMI_IRQHandler + 0x08001d0c CAN2_RX0_IRQHandler + 0x08001d0c DMA2_Stream3_IRQHandler + 0x08001d0c SAI2_IRQHandler + 0x08001d0c USART6_IRQHandler + 0x08001d0c USART3_IRQHandler + 0x08001d0c CAN1_RX1_IRQHandler + 0x08001d0c DMA2_Stream0_IRQHandler + 0x08001d0c TIM4_IRQHandler + 0x08001d0c QUADSPI_IRQHandler + 0x08001d0c I2C1_EV_IRQHandler + 0x08001d0c DMA1_Stream1_IRQHandler + 0x08001d0c TIM3_IRQHandler + 0x08001d0c RCC_IRQHandler + 0x08001d0c TIM8_BRK_TIM12_IRQHandler + 0x08001d0c Default_Handler + 0x08001d0c CEC_IRQHandler + 0x08001d0c EXTI15_10_IRQHandler + 0x08001d0c ADC_IRQHandler + 0x08001d0c TIM7_IRQHandler + 0x08001d0c CAN2_TX_IRQHandler + 0x08001d0c TIM5_IRQHandler + 0x08001d0c I2C3_EV_IRQHandler + 0x08001d0c EXTI9_5_IRQHandler + 0x08001d0c RTC_WKUP_IRQHandler + 0x08001d0c SPDIF_RX_IRQHandler + 0x08001d0c SPI2_IRQHandler + 0x08001d0c OTG_HS_EP1_IN_IRQHandler + 0x08001d0c CAN1_TX_IRQHandler + 0x08001d0c FMPI2C1_ER_IRQHandler + 0x08001d0c EXTI4_IRQHandler + 0x08001d0c OTG_HS_EP1_OUT_IRQHandler + 0x08001d0c WWDG_IRQHandler + 0x08001d0c TIM2_IRQHandler + 0x08001d0c OTG_FS_WKUP_IRQHandler + 0x08001d0c TIM1_TRG_COM_TIM11_IRQHandler + 0x08001d0c OTG_HS_IRQHandler + 0x08001d0c EXTI1_IRQHandler + 0x08001d0c I2C2_ER_IRQHandler + 0x08001d0c DMA2_Stream1_IRQHandler + 0x08001d0c CAN1_SCE_IRQHandler + 0x08001d0c FLASH_IRQHandler + 0x08001d0c DMA2_Stream4_IRQHandler + 0x08001d0c SPI3_IRQHandler + 0x08001d0c I2C1_ER_IRQHandler + 0x08001d0c FMC_IRQHandler + 0x08001d0c DMA2_Stream6_IRQHandler + 0x08001d0c SAI1_IRQHandler + 0x08001d0c DMA1_Stream3_IRQHandler + *fill* 0x08001d0e 0x2 .text.HAL_Init - 0x08001aa0 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x08001aa0 HAL_Init + 0x08001d10 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001d10 HAL_Init .text.HAL_InitTick - 0x08001ae4 0x60 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x08001ae4 HAL_InitTick + 0x08001d54 0x60 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001d54 HAL_InitTick .text.HAL_IncTick - 0x08001b44 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x08001b44 HAL_IncTick + 0x08001db4 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001db4 HAL_IncTick .text.HAL_GetTick - 0x08001b6c 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x08001b6c HAL_GetTick + 0x08001ddc 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001ddc HAL_GetTick .text.HAL_Delay - 0x08001b84 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x08001b84 HAL_Delay + 0x08001df4 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001df4 HAL_Delay .text.__NVIC_SetPriorityGrouping - 0x08001bcc 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001e3c 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x08001c14 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001e84 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_EnableIRQ - 0x08001c30 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001ea0 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_SetPriority - 0x08001c6c 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001edc 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.NVIC_EncodePriority - 0x08001cc0 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - *fill* 0x08001d26 0x2 + 0x08001f30 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + *fill* 0x08001f96 0x2 .text.SysTick_Config - 0x08001d28 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001f98 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x08001d6c 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001d6c HAL_NVIC_SetPriorityGrouping + 0x08001fdc 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001fdc HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x08001d82 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001d82 HAL_NVIC_SetPriority + 0x08001ff2 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001ff2 HAL_NVIC_SetPriority .text.HAL_NVIC_EnableIRQ - 0x08001dba 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001dba HAL_NVIC_EnableIRQ + 0x0800202a 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0800202a HAL_NVIC_EnableIRQ .text.HAL_SYSTICK_Config - 0x08001dd6 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001dd6 HAL_SYSTICK_Config - *fill* 0x08001dee 0x2 + 0x08002046 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08002046 HAL_SYSTICK_Config + *fill* 0x0800205e 0x2 .text.HAL_DMA_Init - 0x08001df0 0x15c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001df0 HAL_DMA_Init + 0x08002060 0x15c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08002060 HAL_DMA_Init .text.HAL_DMA_Start_IT - 0x08001f4c 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001f4c HAL_DMA_Start_IT + 0x080021bc 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x080021bc HAL_DMA_Start_IT .text.HAL_DMA_Abort - 0x08001ffc 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001ffc HAL_DMA_Abort + 0x0800226c 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0800226c HAL_DMA_Abort .text.HAL_DMA_Abort_IT - 0x080020dc 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x080020dc HAL_DMA_Abort_IT + 0x0800234c 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0800234c HAL_DMA_Abort_IT .text.HAL_DMA_IRQHandler - 0x08002120 0x314 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08002120 HAL_DMA_IRQHandler + 0x08002390 0x314 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08002390 HAL_DMA_IRQHandler .text.DMA_SetConfig - 0x08002434 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x080026a4 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .text.DMA_CalcBaseAndBitshift - 0x08002490 0x6c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08002700 0x6c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .text.DMA_CheckFifoParam - 0x080024fc 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0800276c 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .text.HAL_GPIO_Init - 0x080025f4 0x328 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x080025f4 HAL_GPIO_Init + 0x08002864 0x328 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x08002864 HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x0800291c 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0800291c HAL_GPIO_ReadPin + 0x08002b8c 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x08002b8c HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x0800294c 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0800294c HAL_GPIO_WritePin - *fill* 0x0800297e 0x2 + 0x08002bbc 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x08002bbc HAL_GPIO_WritePin + *fill* 0x08002bee 0x2 .text.HAL_I2C_Init - 0x08002980 0x288 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - 0x08002980 HAL_I2C_Init + 0x08002bf0 0x288 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + 0x08002bf0 HAL_I2C_Init .text.HAL_PCD_Init - 0x08002c08 0x22c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08002c08 HAL_PCD_Init + 0x08002e78 0x22c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08002e78 HAL_PCD_Init .text.HAL_PCD_Start - 0x08002e34 0x6a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08002e34 HAL_PCD_Start + 0x080030a4 0x6a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x080030a4 HAL_PCD_Start .text.HAL_PCD_IRQHandler - 0x08002e9e 0x99c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08002e9e HAL_PCD_IRQHandler + 0x0800310e 0x99c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x0800310e HAL_PCD_IRQHandler .text.HAL_PCD_SetAddress - 0x0800383a 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x0800383a HAL_PCD_SetAddress + 0x08003aaa 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003aaa HAL_PCD_SetAddress .text.HAL_PCD_EP_Open - 0x08003882 0xd4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003882 HAL_PCD_EP_Open + 0x08003af2 0xd4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003af2 HAL_PCD_EP_Open .text.HAL_PCD_EP_Close - 0x08003956 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003956 HAL_PCD_EP_Close + 0x08003bc6 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003bc6 HAL_PCD_EP_Close .text.HAL_PCD_EP_Receive - 0x080039ea 0x76 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x080039ea HAL_PCD_EP_Receive + 0x08003c5a 0x76 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003c5a HAL_PCD_EP_Receive .text.HAL_PCD_EP_Transmit - 0x08003a60 0x74 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003a60 HAL_PCD_EP_Transmit + 0x08003cd0 0x74 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003cd0 HAL_PCD_EP_Transmit .text.HAL_PCD_EP_SetStall - 0x08003ad4 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003ad4 HAL_PCD_EP_SetStall + 0x08003d44 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003d44 HAL_PCD_EP_SetStall .text.HAL_PCD_EP_ClrStall - 0x08003b9a 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003b9a HAL_PCD_EP_ClrStall + 0x08003e0a 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003e0a HAL_PCD_EP_ClrStall .text.HAL_PCD_EP_Abort - 0x08003c46 0x62 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003c46 HAL_PCD_EP_Abort + 0x08003eb6 0x62 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003eb6 HAL_PCD_EP_Abort .text.PCD_WriteEmptyTxFifo - 0x08003ca8 0x118 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003f18 0x118 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .text.PCD_EP_OutXfrComplete_int - 0x08003dc0 0x1d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08004030 0x1d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .text.PCD_EP_OutSetupPacket_int - 0x08003f90 0x8c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08004200 0x8c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .text.HAL_PCDEx_SetTxFiFo - 0x0800401c 0x8e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - 0x0800401c HAL_PCDEx_SetTxFiFo + 0x0800428c 0x8e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x0800428c HAL_PCDEx_SetTxFiFo .text.HAL_PCDEx_SetRxFiFo - 0x080040aa 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - 0x080040aa HAL_PCDEx_SetRxFiFo + 0x0800431a 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x0800431a HAL_PCDEx_SetRxFiFo .text.HAL_PCDEx_ActivateLPM - 0x080040cc 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - 0x080040cc HAL_PCDEx_ActivateLPM + 0x0800433c 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x0800433c HAL_PCDEx_ActivateLPM .text.HAL_RCC_ClockConfig - 0x08004114 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x08004114 HAL_RCC_ClockConfig + 0x08004384 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x08004384 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x080042e0 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x080042e0 HAL_RCC_GetHCLKFreq + 0x08004550 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x08004550 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x080042f8 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x080042f8 HAL_RCC_GetPCLK1Freq + 0x08004568 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x08004568 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x08004320 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x08004320 HAL_RCC_GetPCLK2Freq + 0x08004590 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x08004590 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x08004348 0x654 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - 0x08004348 HAL_RCCEx_PeriphCLKConfig + 0x080045b8 0x654 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x080045b8 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCC_GetSysClockFreq - 0x0800499c 0x460 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - 0x0800499c HAL_RCC_GetSysClockFreq + 0x08004c0c 0x460 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x08004c0c HAL_RCC_GetSysClockFreq .text.HAL_RCC_OscConfig - 0x08004dfc 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - 0x08004dfc HAL_RCC_OscConfig + 0x0800506c 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x0800506c HAL_RCC_OscConfig .text.HAL_TIM_OC_Init - 0x08005338 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005338 HAL_TIM_OC_Init + 0x080055a8 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080055a8 HAL_TIM_OC_Init .text.HAL_TIM_Encoder_Init - 0x080053d6 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x080053d6 HAL_TIM_Encoder_Init - *fill* 0x08005522 0x2 + 0x08005646 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005646 HAL_TIM_Encoder_Init + .text.HAL_TIM_Encoder_Start + 0x08005792 0x11c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005792 HAL_TIM_Encoder_Start + *fill* 0x080058ae 0x2 .text.HAL_TIM_OC_ConfigChannel - 0x08005524 0xb8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005524 HAL_TIM_OC_ConfigChannel + 0x080058b0 0xb8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080058b0 HAL_TIM_OC_ConfigChannel .text.TIM_Base_SetConfig - 0x080055dc 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x080055dc TIM_Base_SetConfig + 0x08005968 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005968 TIM_Base_SetConfig .text.TIM_OC1_SetConfig - 0x08005728 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005ab4 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.TIM_OC2_SetConfig - 0x08005808 0xec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005808 TIM_OC2_SetConfig + 0x08005b94 0xec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005b94 TIM_OC2_SetConfig .text.TIM_OC3_SetConfig - 0x080058f4 0xe8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005c80 0xe8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.TIM_OC4_SetConfig - 0x080059dc 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005d68 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .text.TIM_CCxChannelCmd + 0x08005e14 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005e14 TIM_CCxChannelCmd + *fill* 0x08005e5e 0x2 .text.HAL_TIMEx_MasterConfigSynchronization - 0x08005a88 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - 0x08005a88 HAL_TIMEx_MasterConfigSynchronization + 0x08005e60 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x08005e60 HAL_TIMEx_MasterConfigSynchronization .text.HAL_UART_Init - 0x08005b80 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005b80 HAL_UART_Init + 0x08005f58 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08005f58 HAL_UART_Init .text.HAL_UART_Transmit_DMA - 0x08005c20 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005c20 HAL_UART_Transmit_DMA + 0x08005ff8 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08005ff8 HAL_UART_Transmit_DMA .text.HAL_UART_Receive_DMA - 0x08005d18 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005d18 HAL_UART_Receive_DMA - *fill* 0x08005d62 0x2 + 0x080060f0 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080060f0 HAL_UART_Receive_DMA + *fill* 0x0800613a 0x2 .text.HAL_UART_IRQHandler - 0x08005d64 0x554 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005d64 HAL_UART_IRQHandler + 0x0800613c 0x554 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0800613c HAL_UART_IRQHandler .text.HAL_UART_TxCpltCallback - 0x080062b8 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080062b8 HAL_UART_TxCpltCallback + 0x08006690 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006690 HAL_UART_TxCpltCallback .text.HAL_UART_TxHalfCpltCallback - 0x080062cc 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080062cc HAL_UART_TxHalfCpltCallback + 0x080066a4 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080066a4 HAL_UART_TxHalfCpltCallback .text.HAL_UART_RxHalfCpltCallback - 0x080062e0 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080062e0 HAL_UART_RxHalfCpltCallback + 0x080066b8 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080066b8 HAL_UART_RxHalfCpltCallback .text.HAL_UARTEx_RxEventCallback - 0x080062f4 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080062f4 HAL_UARTEx_RxEventCallback + 0x080066cc 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080066cc HAL_UARTEx_RxEventCallback .text.UART_DMATransmitCplt - 0x0800630c 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080066e4 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMATxHalfCplt - 0x080063a6 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0800677e 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMAReceiveCplt - 0x080063c2 0x12c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0800679a 0x12c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMARxHalfCplt - 0x080064ee 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080068c6 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMAError - 0x0800652a 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - *fill* 0x080065be 0x2 + 0x08006902 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + *fill* 0x08006996 0x2 .text.UART_Start_Receive_DMA - 0x080065c0 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080065c0 UART_Start_Receive_DMA + 0x08006998 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006998 UART_Start_Receive_DMA .text.UART_EndTxTransfer - 0x0800670c 0x50 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006ae4 0x50 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_EndRxTransfer - 0x0800675c 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006b34 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMAAbortOnError - 0x08006822 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006bfa 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_Transmit_IT - 0x08006844 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006c1c 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_EndTransmit_IT - 0x080068e4 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006cbc 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_Receive_IT - 0x08006914 0x17c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006cec 0x17c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_SetConfig - 0x08006a90 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006e68 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.USB_CoreInit - 0x08006f78 0xc8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08006f78 USB_CoreInit + 0x08007350 0xc8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007350 USB_CoreInit .text.USB_SetTurnaroundTime - 0x08007040 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007040 USB_SetTurnaroundTime + 0x08007418 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007418 USB_SetTurnaroundTime .text.USB_EnableGlobalInt - 0x08007184 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007184 USB_EnableGlobalInt + 0x0800755c 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800755c USB_EnableGlobalInt .text.USB_DisableGlobalInt - 0x080071a6 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080071a6 USB_DisableGlobalInt + 0x0800757e 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800757e USB_DisableGlobalInt .text.USB_SetCurrentMode - 0x080071c8 0x98 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080071c8 USB_SetCurrentMode + 0x080075a0 0x98 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080075a0 USB_SetCurrentMode .text.USB_DevInit - 0x08007260 0x2bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007260 USB_DevInit + 0x08007638 0x2bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007638 USB_DevInit .text.USB_FlushTxFifo - 0x0800751c 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800751c USB_FlushTxFifo + 0x080078f4 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080078f4 USB_FlushTxFifo .text.USB_FlushRxFifo - 0x08007580 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007580 USB_FlushRxFifo + 0x08007958 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007958 USB_FlushRxFifo .text.USB_SetDevSpeed - 0x080075dc 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080075dc USB_SetDevSpeed + 0x080079b4 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080079b4 USB_SetDevSpeed .text.USB_GetDevSpeed - 0x0800760e 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800760e USB_GetDevSpeed + 0x080079e6 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080079e6 USB_GetDevSpeed .text.USB_ActivateEndpoint - 0x08007658 0x10e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007658 USB_ActivateEndpoint - *fill* 0x08007766 0x2 + 0x08007a30 0x10e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007a30 USB_ActivateEndpoint + *fill* 0x08007b3e 0x2 .text.USB_DeactivateEndpoint - 0x08007768 0x1b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007768 USB_DeactivateEndpoint + 0x08007b40 0x1b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007b40 USB_DeactivateEndpoint .text.USB_EPStartXfer - 0x08007920 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007920 USB_EPStartXfer + 0x08007cf8 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007cf8 USB_EPStartXfer .text.USB_EPStopXfer - 0x08007e5c 0x154 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007e5c USB_EPStopXfer + 0x08008234 0x154 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008234 USB_EPStopXfer .text.USB_WritePacket - 0x08007fb0 0x7c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007fb0 USB_WritePacket + 0x08008388 0x7c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008388 USB_WritePacket .text.USB_ReadPacket - 0x0800802c 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800802c USB_ReadPacket + 0x08008404 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008404 USB_ReadPacket .text.USB_EPSetStall - 0x080080dc 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080080dc USB_EPSetStall + 0x080084b4 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080084b4 USB_EPSetStall .text.USB_EPClearStall - 0x080081b8 0xcc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080081b8 USB_EPClearStall + 0x08008590 0xcc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008590 USB_EPClearStall .text.USB_SetDevAddress - 0x08008284 0x4c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008284 USB_SetDevAddress + 0x0800865c 0x4c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800865c USB_SetDevAddress .text.USB_DevConnect - 0x080082d0 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080082d0 USB_DevConnect + 0x080086a8 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080086a8 USB_DevConnect .text.USB_DevDisconnect - 0x08008312 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008312 USB_DevDisconnect + 0x080086ea 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080086ea USB_DevDisconnect .text.USB_ReadInterrupts - 0x08008354 0x26 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008354 USB_ReadInterrupts + 0x0800872c 0x26 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800872c USB_ReadInterrupts .text.USB_ReadDevAllOutEpInterrupt - 0x0800837a 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800837a USB_ReadDevAllOutEpInterrupt + 0x08008752 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008752 USB_ReadDevAllOutEpInterrupt .text.USB_ReadDevAllInEpInterrupt - 0x080083ae 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080083ae USB_ReadDevAllInEpInterrupt + 0x08008786 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008786 USB_ReadDevAllInEpInterrupt .text.USB_ReadDevOutEPInterrupt - 0x080083e2 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080083e2 USB_ReadDevOutEPInterrupt + 0x080087ba 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080087ba USB_ReadDevOutEPInterrupt .text.USB_ReadDevInEPInterrupt - 0x0800841e 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800841e USB_ReadDevInEPInterrupt + 0x080087f6 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080087f6 USB_ReadDevInEPInterrupt .text.USB_GetMode - 0x0800847a 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800847a USB_GetMode + 0x08008852 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008852 USB_GetMode .text.USB_ActivateSetup - 0x08008496 0x46 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008496 USB_ActivateSetup + 0x0800886e 0x46 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800886e USB_ActivateSetup .text.USB_EP0_OutStart - 0x080084dc 0xbc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080084dc USB_EP0_OutStart + 0x080088b4 0xbc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080088b4 USB_EP0_OutStart .text.USB_CoreReset - 0x08008598 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008970 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o .text.USBD_HID_Init - 0x08008608 0xcc ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x080089e0 0xcc ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_DeInit - 0x080086d4 0x90 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008aac 0x90 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_Setup - 0x08008764 0x210 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008b3c 0x210 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_SendReport - 0x08008974 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - 0x08008974 USBD_HID_SendReport + 0x08008d4c 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008d4c USBD_HID_SendReport .text.USBD_HID_GetFSCfgDesc - 0x080089d4 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008dac 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_GetHSCfgDesc - 0x08008a08 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008de0 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_GetOtherSpeedCfgDesc - 0x08008a3c 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008e14 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_DataIn - 0x08008a70 0x2c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008e48 0x2c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_GetDeviceQualifierDesc - 0x08008a9c 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008e74 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_Init - 0x08008abc 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008abc USBD_Init + 0x08008e94 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008e94 USBD_Init .text.USBD_RegisterClass - 0x08008b1c 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008b1c USBD_RegisterClass + 0x08008ef4 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008ef4 USBD_RegisterClass .text.USBD_Start - 0x08008b88 0x18 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008b88 USBD_Start + 0x08008f60 0x18 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008f60 USBD_Start .text.USBD_RunTestMode - 0x08008ba0 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008ba0 USBD_RunTestMode + 0x08008f78 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008f78 USBD_RunTestMode .text.USBD_SetClassConfig - 0x08008bb6 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008bb6 USBD_SetClassConfig + 0x08008f8e 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008f8e USBD_SetClassConfig .text.USBD_ClrClassConfig - 0x08008bee 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008bee USBD_ClrClassConfig + 0x08008fc6 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008fc6 USBD_ClrClassConfig .text.USBD_LL_SetupStage - 0x08008c22 0xaa ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008c22 USBD_LL_SetupStage + 0x08008ffa 0xaa ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008ffa USBD_LL_SetupStage .text.USBD_LL_DataOutStage - 0x08008ccc 0x178 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008ccc USBD_LL_DataOutStage + 0x080090a4 0x178 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080090a4 USBD_LL_DataOutStage .text.USBD_LL_DataInStage - 0x08008e44 0x176 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008e44 USBD_LL_DataInStage + 0x0800921c 0x176 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x0800921c USBD_LL_DataInStage .text.USBD_LL_Reset - 0x08008fba 0xa6 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008fba USBD_LL_Reset + 0x08009392 0xa6 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009392 USBD_LL_Reset .text.USBD_LL_SetSpeed - 0x08009060 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009060 USBD_LL_SetSpeed + 0x08009438 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009438 USBD_LL_SetSpeed .text.USBD_LL_Suspend - 0x08009080 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009080 USBD_LL_Suspend + 0x08009458 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009458 USBD_LL_Suspend .text.USBD_LL_Resume - 0x080090b8 0x30 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080090b8 USBD_LL_Resume + 0x08009490 0x30 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009490 USBD_LL_Resume .text.USBD_LL_SOF - 0x080090e8 0x40 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080090e8 USBD_LL_SOF + 0x080094c0 0x40 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080094c0 USBD_LL_SOF .text.USBD_LL_IsoINIncomplete - 0x08009128 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009128 USBD_LL_IsoINIncomplete + 0x08009500 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009500 USBD_LL_IsoINIncomplete .text.USBD_LL_IsoOUTIncomplete - 0x0800918c 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x0800918c USBD_LL_IsoOUTIncomplete + 0x08009564 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009564 USBD_LL_IsoOUTIncomplete .text.USBD_LL_DevConnected - 0x080091f0 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080091f0 USBD_LL_DevConnected + 0x080095c8 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080095c8 USBD_LL_DevConnected .text.USBD_LL_DevDisconnected - 0x08009206 0x46 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009206 USBD_LL_DevDisconnected + 0x080095de 0x46 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080095de USBD_LL_DevDisconnected .text.USBD_CoreFindIF - 0x0800924c 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x0800924c USBD_CoreFindIF + 0x08009624 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009624 USBD_CoreFindIF .text.USBD_CoreFindEP - 0x08009266 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009266 USBD_CoreFindEP + 0x0800963e 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x0800963e USBD_CoreFindEP .text.USBD_GetEpDesc - 0x08009280 0x70 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009280 USBD_GetEpDesc + 0x08009658 0x70 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009658 USBD_GetEpDesc .text.USBD_GetNextDesc - 0x080092f0 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080092f0 USBD_GetNextDesc + 0x080096c8 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080096c8 USBD_GetNextDesc .text.SWAPBYTE - 0x08009328 0x3e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - *fill* 0x08009366 0x2 + 0x08009700 0x3e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + *fill* 0x0800973e 0x2 .text.USBD_StdDevReq - 0x08009368 0xe4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009368 USBD_StdDevReq + 0x08009740 0xe4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009740 USBD_StdDevReq .text.USBD_StdItfReq - 0x0800944c 0xd8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x0800944c USBD_StdItfReq + 0x08009824 0xd8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009824 USBD_StdItfReq .text.USBD_StdEPReq - 0x08009524 0x33e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009524 USBD_StdEPReq - *fill* 0x08009862 0x2 + 0x080098fc 0x33e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x080098fc USBD_StdEPReq + *fill* 0x08009c3a 0x2 .text.USBD_GetDescriptor - 0x08009864 0x328 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009c3c 0x328 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_SetAddress - 0x08009b8c 0x88 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009f64 0x88 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_SetConfig - 0x08009c14 0x154 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009fec 0x154 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_GetConfig - 0x08009d68 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a140 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_GetStatus - 0x08009dd4 0x68 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a1ac 0x68 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_SetFeature - 0x08009e3c 0x52 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a214 0x52 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_ClrFeature - 0x08009e8e 0x44 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a266 0x44 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_ParseSetupRequest - 0x08009ed2 0x74 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009ed2 USBD_ParseSetupRequest + 0x0800a2aa 0x74 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a2aa USBD_ParseSetupRequest .text.USBD_CtlError - 0x08009f46 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009f46 USBD_CtlError + 0x0800a31e 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a31e USBD_CtlError .text.USBD_GetString - 0x08009f68 0xa4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009f68 USBD_GetString + 0x0800a340 0xa4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a340 USBD_GetString .text.USBD_GetLen - 0x0800a00c 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800a3e4 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_CtlSendData - 0x0800a040 0x3c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a040 USBD_CtlSendData + 0x0800a418 0x3c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x0800a418 USBD_CtlSendData .text.USBD_CtlContinueSendData - 0x0800a07c 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a07c USBD_CtlContinueSendData + 0x0800a454 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x0800a454 USBD_CtlContinueSendData .text.USBD_CtlContinueRx - 0x0800a09e 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a09e USBD_CtlContinueRx + 0x0800a476 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x0800a476 USBD_CtlContinueRx .text.USBD_CtlSendStatus - 0x0800a0c0 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a0c0 USBD_CtlSendStatus + 0x0800a498 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x0800a498 USBD_CtlSendStatus .text.USBD_CtlReceiveStatus - 0x0800a0e6 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a0e6 USBD_CtlReceiveStatus + 0x0800a4be 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x0800a4be USBD_CtlReceiveStatus .text.MX_USB_DEVICE_Init - 0x0800a10c 0x4c ./USB_DEVICE/App/usb_device.o - 0x0800a10c MX_USB_DEVICE_Init + 0x0800a4e4 0x4c ./USB_DEVICE/App/usb_device.o + 0x0800a4e4 MX_USB_DEVICE_Init .text.USBD_FS_DeviceDescriptor - 0x0800a158 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a158 USBD_FS_DeviceDescriptor + 0x0800a530 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a530 USBD_FS_DeviceDescriptor .text.USBD_FS_LangIDStrDescriptor - 0x0800a17c 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a17c USBD_FS_LangIDStrDescriptor + 0x0800a554 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a554 USBD_FS_LangIDStrDescriptor .text.USBD_FS_ProductStrDescriptor - 0x0800a1a0 0x3c ./USB_DEVICE/App/usbd_desc.o - 0x0800a1a0 USBD_FS_ProductStrDescriptor + 0x0800a578 0x3c ./USB_DEVICE/App/usbd_desc.o + 0x0800a578 USBD_FS_ProductStrDescriptor .text.USBD_FS_ManufacturerStrDescriptor - 0x0800a1dc 0x28 ./USB_DEVICE/App/usbd_desc.o - 0x0800a1dc USBD_FS_ManufacturerStrDescriptor + 0x0800a5b4 0x28 ./USB_DEVICE/App/usbd_desc.o + 0x0800a5b4 USBD_FS_ManufacturerStrDescriptor .text.USBD_FS_SerialStrDescriptor - 0x0800a204 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a204 USBD_FS_SerialStrDescriptor + 0x0800a5dc 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a5dc USBD_FS_SerialStrDescriptor .text.USBD_FS_ConfigStrDescriptor - 0x0800a228 0x3c ./USB_DEVICE/App/usbd_desc.o - 0x0800a228 USBD_FS_ConfigStrDescriptor + 0x0800a600 0x3c ./USB_DEVICE/App/usbd_desc.o + 0x0800a600 USBD_FS_ConfigStrDescriptor .text.USBD_FS_InterfaceStrDescriptor - 0x0800a264 0x3c ./USB_DEVICE/App/usbd_desc.o - 0x0800a264 USBD_FS_InterfaceStrDescriptor + 0x0800a63c 0x3c ./USB_DEVICE/App/usbd_desc.o + 0x0800a63c USBD_FS_InterfaceStrDescriptor .text.USBD_FS_USR_BOSDescriptor - 0x0800a2a0 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a2a0 USBD_FS_USR_BOSDescriptor + 0x0800a678 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a678 USBD_FS_USR_BOSDescriptor .text.Get_SerialNum - 0x0800a2c4 0x58 ./USB_DEVICE/App/usbd_desc.o + 0x0800a69c 0x58 ./USB_DEVICE/App/usbd_desc.o .text.IntToUnicode - 0x0800a31c 0x7e ./USB_DEVICE/App/usbd_desc.o - *fill* 0x0800a39a 0x2 + 0x0800a6f4 0x7e ./USB_DEVICE/App/usbd_desc.o + *fill* 0x0800a772 0x2 .text.HAL_PCD_MspInit - 0x0800a39c 0xd4 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a39c HAL_PCD_MspInit + 0x0800a774 0xd4 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a774 HAL_PCD_MspInit .text.HAL_PCD_SetupStageCallback - 0x0800a470 0x24 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a470 HAL_PCD_SetupStageCallback + 0x0800a848 0x24 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a848 HAL_PCD_SetupStageCallback .text.HAL_PCD_DataOutStageCallback - 0x0800a494 0x36 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a494 HAL_PCD_DataOutStageCallback + 0x0800a86c 0x36 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a86c HAL_PCD_DataOutStageCallback .text.HAL_PCD_DataInStageCallback - 0x0800a4ca 0x34 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a4ca HAL_PCD_DataInStageCallback + 0x0800a8a2 0x34 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a8a2 HAL_PCD_DataInStageCallback .text.HAL_PCD_SOFCallback - 0x0800a4fe 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a4fe HAL_PCD_SOFCallback + 0x0800a8d6 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a8d6 HAL_PCD_SOFCallback .text.HAL_PCD_ResetCallback - 0x0800a51a 0x50 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a51a HAL_PCD_ResetCallback - *fill* 0x0800a56a 0x2 - .text.HAL_PCD_SuspendCallback - 0x0800a56c 0x4c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a56c HAL_PCD_SuspendCallback - .text.HAL_PCD_ResumeCallback - 0x0800a5b8 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a5b8 HAL_PCD_ResumeCallback - .text.HAL_PCD_ISOOUTIncompleteCallback - 0x0800a5d4 0x24 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a5d4 HAL_PCD_ISOOUTIncompleteCallback - .text.HAL_PCD_ISOINIncompleteCallback - 0x0800a5f8 0x24 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a5f8 HAL_PCD_ISOINIncompleteCallback - .text.HAL_PCD_ConnectCallback - 0x0800a61c 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a61c HAL_PCD_ConnectCallback - .text.HAL_PCD_DisconnectCallback - 0x0800a638 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a638 HAL_PCD_DisconnectCallback - .text.USBD_LL_Init - 0x0800a654 0x98 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a654 USBD_LL_Init - .text.USBD_LL_Start - 0x0800a6ec 0x36 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a6ec USBD_LL_Start - .text.USBD_LL_OpenEP - 0x0800a722 0x4c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a722 USBD_LL_OpenEP - .text.USBD_LL_CloseEP - 0x0800a76e 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a76e USBD_LL_CloseEP - .text.USBD_LL_StallEP - 0x0800a7ac 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a7ac USBD_LL_StallEP - .text.USBD_LL_ClearStallEP - 0x0800a7ea 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a7ea USBD_LL_ClearStallEP - .text.USBD_LL_IsStallEP - 0x0800a828 0x58 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a828 USBD_LL_IsStallEP - .text.USBD_LL_SetUSBAddress - 0x0800a880 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a880 USBD_LL_SetUSBAddress - .text.USBD_LL_Transmit - 0x0800a8be 0x42 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a8be USBD_LL_Transmit - .text.USBD_LL_PrepareReceive - 0x0800a900 0x42 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a900 USBD_LL_PrepareReceive + 0x0800a8f2 0x50 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a8f2 HAL_PCD_ResetCallback *fill* 0x0800a942 0x2 + .text.HAL_PCD_SuspendCallback + 0x0800a944 0x4c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a944 HAL_PCD_SuspendCallback + .text.HAL_PCD_ResumeCallback + 0x0800a990 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a990 HAL_PCD_ResumeCallback + .text.HAL_PCD_ISOOUTIncompleteCallback + 0x0800a9ac 0x24 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a9ac HAL_PCD_ISOOUTIncompleteCallback + .text.HAL_PCD_ISOINIncompleteCallback + 0x0800a9d0 0x24 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a9d0 HAL_PCD_ISOINIncompleteCallback + .text.HAL_PCD_ConnectCallback + 0x0800a9f4 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a9f4 HAL_PCD_ConnectCallback + .text.HAL_PCD_DisconnectCallback + 0x0800aa10 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800aa10 HAL_PCD_DisconnectCallback + .text.USBD_LL_Init + 0x0800aa2c 0x98 ./USB_DEVICE/Target/usbd_conf.o + 0x0800aa2c USBD_LL_Init + .text.USBD_LL_Start + 0x0800aac4 0x36 ./USB_DEVICE/Target/usbd_conf.o + 0x0800aac4 USBD_LL_Start + .text.USBD_LL_OpenEP + 0x0800aafa 0x4c ./USB_DEVICE/Target/usbd_conf.o + 0x0800aafa USBD_LL_OpenEP + .text.USBD_LL_CloseEP + 0x0800ab46 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800ab46 USBD_LL_CloseEP + .text.USBD_LL_StallEP + 0x0800ab84 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800ab84 USBD_LL_StallEP + .text.USBD_LL_ClearStallEP + 0x0800abc2 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800abc2 USBD_LL_ClearStallEP + .text.USBD_LL_IsStallEP + 0x0800ac00 0x58 ./USB_DEVICE/Target/usbd_conf.o + 0x0800ac00 USBD_LL_IsStallEP + .text.USBD_LL_SetUSBAddress + 0x0800ac58 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800ac58 USBD_LL_SetUSBAddress + .text.USBD_LL_Transmit + 0x0800ac96 0x42 ./USB_DEVICE/Target/usbd_conf.o + 0x0800ac96 USBD_LL_Transmit + .text.USBD_LL_PrepareReceive + 0x0800acd8 0x42 ./USB_DEVICE/Target/usbd_conf.o + 0x0800acd8 USBD_LL_PrepareReceive + *fill* 0x0800ad1a 0x2 .text.HAL_PCDEx_LPM_Callback - 0x0800a944 0x9c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a944 HAL_PCDEx_LPM_Callback + 0x0800ad1c 0x9c ./USB_DEVICE/Target/usbd_conf.o + 0x0800ad1c HAL_PCDEx_LPM_Callback .text.USBD_static_malloc - 0x0800a9e0 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a9e0 USBD_static_malloc + 0x0800adb8 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800adb8 USBD_static_malloc .text.USBD_static_free - 0x0800a9fc 0x14 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a9fc USBD_static_free + 0x0800add4 0x14 ./USB_DEVICE/Target/usbd_conf.o + 0x0800add4 USBD_static_free .text.USBD_Get_USB_Status - 0x0800aa10 0x58 ./USB_DEVICE/Target/usbd_conf.o - 0x0800aa10 USBD_Get_USB_Status - .text.memset 0x0800aa68 0x10 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) - 0x0800aa68 memset + 0x0800ade8 0x58 ./USB_DEVICE/Target/usbd_conf.o + 0x0800ade8 USBD_Get_USB_Status + .text.memset 0x0800ae40 0x10 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) + 0x0800ae40 memset .text.__libc_init_array - 0x0800aa78 0x48 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) - 0x0800aa78 __libc_init_array + 0x0800ae50 0x48 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) + 0x0800ae50 __libc_init_array + .text.memcpy 0x0800ae98 0x1c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + 0x0800ae98 memcpy *(.glue_7) - .glue_7 0x0800aac0 0x0 linker stubs + .glue_7 0x0800aeb4 0x0 linker stubs *(.glue_7t) - .glue_7t 0x0800aac0 0x0 linker stubs + .glue_7t 0x0800aeb4 0x0 linker stubs *(.eh_frame) - .eh_frame 0x0800aac0 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .eh_frame 0x0800aeb4 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o *(.init) - .init 0x0800aac0 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o - 0x0800aac0 _init - .init 0x0800aac4 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o + .init 0x0800aeb4 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0800aeb4 _init + .init 0x0800aeb8 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o *(.fini) - .fini 0x0800aacc 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o - 0x0800aacc _fini - .fini 0x0800aad0 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o - 0x0800aad8 . = ALIGN (0x4) - 0x0800aad8 _etext = . + .fini 0x0800aec0 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0800aec0 _fini + .fini 0x0800aec4 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x0800aecc . = ALIGN (0x4) + 0x0800aecc _etext = . -.vfp11_veneer 0x0800aad8 0x0 - .vfp11_veneer 0x0800aad8 0x0 linker stubs +.vfp11_veneer 0x0800aecc 0x0 + .vfp11_veneer 0x0800aecc 0x0 linker stubs -.v4_bx 0x0800aad8 0x0 - .v4_bx 0x0800aad8 0x0 linker stubs +.v4_bx 0x0800aecc 0x0 + .v4_bx 0x0800aecc 0x0 linker stubs -.iplt 0x0800aad8 0x0 - .iplt 0x0800aad8 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.iplt 0x0800aecc 0x0 + .iplt 0x0800aecc 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.rodata 0x0800aad8 0x5c - 0x0800aad8 . = ALIGN (0x4) +.rodata 0x0800aecc 0x5c + 0x0800aecc . = ALIGN (0x4) *(.rodata) - .rodata 0x0800aad8 0x3a ./USB_DEVICE/App/usbd_desc.o + .rodata 0x0800aecc 0x3a ./USB_DEVICE/App/usbd_desc.o *(.rodata*) - *fill* 0x0800ab12 0x2 + *fill* 0x0800af06 0x2 .rodata.AHBPrescTable - 0x0800ab14 0x10 ./Core/Src/system_stm32f4xx.o - 0x0800ab14 AHBPrescTable + 0x0800af08 0x10 ./Core/Src/system_stm32f4xx.o + 0x0800af08 AHBPrescTable .rodata.APBPrescTable - 0x0800ab24 0x8 ./Core/Src/system_stm32f4xx.o - 0x0800ab24 APBPrescTable + 0x0800af18 0x8 ./Core/Src/system_stm32f4xx.o + 0x0800af18 APBPrescTable .rodata.flagBitshiftOffset.0 - 0x0800ab2c 0x8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x0800ab34 . = ALIGN (0x4) + 0x0800af20 0x8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0800af28 . = ALIGN (0x4) -.ARM.extab 0x0800ab34 0x0 - 0x0800ab34 . = ALIGN (0x4) +.ARM.extab 0x0800af28 0x0 + 0x0800af28 . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x0800ab34 . = ALIGN (0x4) + 0x0800af28 . = ALIGN (0x4) -.ARM 0x0800ab34 0x8 - 0x0800ab34 . = ALIGN (0x4) - 0x0800ab34 __exidx_start = . +.ARM 0x0800af28 0x8 + 0x0800af28 . = ALIGN (0x4) + 0x0800af28 __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x0800ab34 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) - 0x0800ab3c __exidx_end = . - 0x0800ab3c . = ALIGN (0x4) + .ARM.exidx 0x0800af28 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) + 0x0800af30 __exidx_end = . + 0x0800af30 . = ALIGN (0x4) -.preinit_array 0x0800ab3c 0x0 - 0x0800ab3c . = ALIGN (0x4) - 0x0800ab3c PROVIDE (__preinit_array_start = .) +.preinit_array 0x0800af30 0x0 + 0x0800af30 . = ALIGN (0x4) + 0x0800af30 PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x0800ab3c PROVIDE (__preinit_array_end = .) - 0x0800ab3c . = ALIGN (0x4) + 0x0800af30 PROVIDE (__preinit_array_end = .) + 0x0800af30 . = ALIGN (0x4) -.init_array 0x0800ab3c 0x4 - 0x0800ab3c . = ALIGN (0x4) - 0x0800ab3c PROVIDE (__init_array_start = .) +.init_array 0x0800af30 0x4 + 0x0800af30 . = ALIGN (0x4) + 0x0800af30 PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x0800ab3c 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o - 0x0800ab40 PROVIDE (__init_array_end = .) - 0x0800ab40 . = ALIGN (0x4) + .init_array 0x0800af30 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x0800af34 PROVIDE (__init_array_end = .) + 0x0800af34 . = ALIGN (0x4) -.fini_array 0x0800ab40 0x4 - 0x0800ab40 . = ALIGN (0x4) +.fini_array 0x0800af34 0x4 + 0x0800af34 . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x0800ab40 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .fini_array 0x0800af34 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x0800ab44 . = ALIGN (0x4) - 0x0800ab44 _sidata = LOADADDR (.data) + 0x0800af38 . = ALIGN (0x4) + 0x0800af38 _sidata = LOADADDR (.data) -.rel.dyn 0x0800ab44 0x0 - .rel.iplt 0x0800ab44 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.rel.dyn 0x0800af38 0x0 + .rel.iplt 0x0800af38 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.data 0x20000000 0x1a0 load address 0x0800ab44 +.data 0x20000000 0x1a0 load address 0x0800af38 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -6383,11 +6455,11 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external *fill* 0x2000019e 0x2 0x200001a0 _edata = . -.igot.plt 0x200001a0 0x0 load address 0x0800ace4 +.igot.plt 0x200001a0 0x0 load address 0x0800b0d8 .igot.plt 0x200001a0 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o 0x200001a0 . = ALIGN (0x4) -.bss 0x200001a0 0xf6c load address 0x0800ace4 +.bss 0x200001a0 0x15bc load address 0x0800b0d8 0x200001a0 _sbss = . 0x200001a0 __bss_start__ = _sbss *(.bss) @@ -6411,81 +6483,99 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external *fill* 0x20000262 0x2 .bss.PARENT 0x20000264 0x4 ./Core/Src/main.o 0x20000264 PARENT - .bss.MODE 0x20000268 0x1 ./Core/Src/main.o - 0x20000268 MODE + .bss.KEYSTATE_CHANGED_FLAG + 0x20000268 0x1 ./Core/Src/main.o + 0x20000268 KEYSTATE_CHANGED_FLAG *fill* 0x20000269 0x3 - .bss.uartBuffer - 0x2000026c 0x10 ./Core/Src/main.o - 0x2000026c uartBuffer - .bss.uartUpdateFlag - 0x2000027c 0x4 ./Core/Src/main.o - 0x2000027c uartUpdateFlag - .bss.htim2 0x20000280 0x48 ./Core/Src/tim.o - 0x20000280 htim2 - .bss.htim3 0x200002c8 0x48 ./Core/Src/tim.o - 0x200002c8 htim3 - .bss.huart4 0x20000310 0x48 ./Core/Src/usart.o - 0x20000310 huart4 - .bss.huart5 0x20000358 0x48 ./Core/Src/usart.o - 0x20000358 huart5 - .bss.huart1 0x200003a0 0x48 ./Core/Src/usart.o - 0x200003a0 huart1 - .bss.huart2 0x200003e8 0x48 ./Core/Src/usart.o - 0x200003e8 huart2 + .bss.KEYSTATE 0x2000026c 0x1e ./Core/Src/main.o + 0x2000026c KEYSTATE + .bss.MODE 0x2000028a 0x1 ./Core/Src/main.o + 0x2000028a MODE + *fill* 0x2000028b 0x1 + .bss.LAST_ENCODER_COUNT + 0x2000028c 0x4 ./Core/Src/main.o + 0x2000028c LAST_ENCODER_COUNT + .bss.UART_KEYSTATE + 0x20000290 0x30 ./Core/Src/main.o + 0x20000290 UART_KEYSTATE + .bss.huart1q 0x200002c0 0x183 ./Core/Src/main.o + 0x200002c0 huart1q + *fill* 0x20000443 0x1 + .bss.huart2q 0x20000444 0x183 ./Core/Src/main.o + 0x20000444 huart2q + *fill* 0x200005c7 0x1 + .bss.huart4q 0x200005c8 0x183 ./Core/Src/main.o + 0x200005c8 huart4q + *fill* 0x2000074b 0x1 + .bss.huart5q 0x2000074c 0x183 ./Core/Src/main.o + 0x2000074c huart5q + *fill* 0x200008cf 0x1 + .bss.htim2 0x200008d0 0x48 ./Core/Src/tim.o + 0x200008d0 htim2 + .bss.htim3 0x20000918 0x48 ./Core/Src/tim.o + 0x20000918 htim3 + .bss.huart4 0x20000960 0x48 ./Core/Src/usart.o + 0x20000960 huart4 + .bss.huart5 0x200009a8 0x48 ./Core/Src/usart.o + 0x200009a8 huart5 + .bss.huart1 0x200009f0 0x48 ./Core/Src/usart.o + 0x200009f0 huart1 + .bss.huart2 0x20000a38 0x48 ./Core/Src/usart.o + 0x20000a38 huart2 .bss.hdma_uart4_rx - 0x20000430 0x60 ./Core/Src/usart.o - 0x20000430 hdma_uart4_rx + 0x20000a80 0x60 ./Core/Src/usart.o + 0x20000a80 hdma_uart4_rx .bss.hdma_uart4_tx - 0x20000490 0x60 ./Core/Src/usart.o - 0x20000490 hdma_uart4_tx + 0x20000ae0 0x60 ./Core/Src/usart.o + 0x20000ae0 hdma_uart4_tx .bss.hdma_uart5_rx - 0x200004f0 0x60 ./Core/Src/usart.o - 0x200004f0 hdma_uart5_rx + 0x20000b40 0x60 ./Core/Src/usart.o + 0x20000b40 hdma_uart5_rx .bss.hdma_uart5_tx - 0x20000550 0x60 ./Core/Src/usart.o - 0x20000550 hdma_uart5_tx + 0x20000ba0 0x60 ./Core/Src/usart.o + 0x20000ba0 hdma_uart5_tx .bss.hdma_usart1_rx - 0x200005b0 0x60 ./Core/Src/usart.o - 0x200005b0 hdma_usart1_rx + 0x20000c00 0x60 ./Core/Src/usart.o + 0x20000c00 hdma_usart1_rx .bss.hdma_usart1_tx - 0x20000610 0x60 ./Core/Src/usart.o - 0x20000610 hdma_usart1_tx + 0x20000c60 0x60 ./Core/Src/usart.o + 0x20000c60 hdma_usart1_tx .bss.hdma_usart2_rx - 0x20000670 0x60 ./Core/Src/usart.o - 0x20000670 hdma_usart2_rx + 0x20000cc0 0x60 ./Core/Src/usart.o + 0x20000cc0 hdma_usart2_rx .bss.hdma_usart2_tx - 0x200006d0 0x60 ./Core/Src/usart.o - 0x200006d0 hdma_usart2_tx - .bss.uwTick 0x20000730 0x4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x20000730 uwTick - .bss.cfgidx.0 0x20000734 0x1 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - *fill* 0x20000735 0x3 + 0x20000d20 0x60 ./Core/Src/usart.o + 0x20000d20 hdma_usart2_tx + .bss.uwTick 0x20000d80 0x4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x20000d80 uwTick + .bss.cfgidx.0 0x20000d84 0x1 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + *fill* 0x20000d85 0x3 .bss.hUsbDeviceFS - 0x20000738 0x2dc ./USB_DEVICE/App/usb_device.o - 0x20000738 hUsbDeviceFS + 0x20000d88 0x2dc ./USB_DEVICE/App/usb_device.o + 0x20000d88 hUsbDeviceFS .bss.USBD_StrDesc - 0x20000a14 0x200 ./USB_DEVICE/App/usbd_desc.o - 0x20000a14 USBD_StrDesc + 0x20001064 0x200 ./USB_DEVICE/App/usbd_desc.o + 0x20001064 USBD_StrDesc .bss.hpcd_USB_OTG_FS - 0x20000c14 0x4e4 ./USB_DEVICE/Target/usbd_conf.o - 0x20000c14 hpcd_USB_OTG_FS - .bss.mem.0 0x200010f8 0x14 ./USB_DEVICE/Target/usbd_conf.o + 0x20001264 0x4e4 ./USB_DEVICE/Target/usbd_conf.o + 0x20001264 hpcd_USB_OTG_FS + .bss.mem.0 0x20001748 0x14 ./USB_DEVICE/Target/usbd_conf.o *(COMMON) - 0x2000110c . = ALIGN (0x4) - 0x2000110c _ebss = . - 0x2000110c __bss_end__ = _ebss + 0x2000175c . = ALIGN (0x4) + 0x2000175c _ebss = . + 0x2000175c __bss_end__ = _ebss ._user_heap_stack - 0x2000110c 0x604 load address 0x0800ace4 - 0x20001110 . = ALIGN (0x8) - *fill* 0x2000110c 0x4 + 0x2000175c 0x604 load address 0x0800b0d8 + 0x20001760 . = ALIGN (0x8) + *fill* 0x2000175c 0x4 [!provide] PROVIDE (end = .) - 0x20001110 PROVIDE (_end = .) - 0x20001310 . = (. + _Min_Heap_Size) - *fill* 0x20001110 0x200 - 0x20001710 . = (. + _Min_Stack_Size) - *fill* 0x20001310 0x400 - 0x20001710 . = ALIGN (0x8) + 0x20001760 PROVIDE (_end = .) + 0x20001960 . = (. + _Min_Heap_Size) + *fill* 0x20001760 0x200 + 0x20001d60 . = (. + _Min_Stack_Size) + *fill* 0x20001960 0x400 + 0x20001d60 . = ALIGN (0x8) /DISCARD/ libc.a(*) @@ -6564,84 +6654,86 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .ARM.attributes 0x0000068f 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) .ARM.attributes - 0x000006c3 0x22 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_aeabi_uldivmod.o) + 0x000006c3 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) .ARM.attributes - 0x000006e5 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) + 0x000006f7 0x22 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_aeabi_uldivmod.o) .ARM.attributes - 0x00000719 0x22 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_dvmd_tls.o) + 0x00000719 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) .ARM.attributes - 0x0000073b 0x22 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x0000074d 0x22 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x0000076f 0x22 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o OUTPUT(modularkbd.elf elf32-littlearm) LOAD linker stubs LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc.a LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libm.a LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a -.debug_info 0x00000000 0x1afd8 +.debug_info 0x00000000 0x1b5ee .debug_info 0x00000000 0x514 ./Core/Src/dma.o .debug_info 0x00000514 0x455 ./Core/Src/gpio.o .debug_info 0x00000969 0x9a4 ./Core/Src/i2c.o - .debug_info 0x0000130d 0x1530 ./Core/Src/main.o - .debug_info 0x0000283d 0x299 ./Core/Src/stm32f4xx_hal_msp.o - .debug_info 0x00002ad6 0xc7c ./Core/Src/stm32f4xx_it.o - .debug_info 0x00003752 0x54a ./Core/Src/system_stm32f4xx.o - .debug_info 0x00003c9c 0xd18 ./Core/Src/tim.o - .debug_info 0x000049b4 0xdbf ./Core/Src/usart.o - .debug_info 0x00005773 0x30 ./Core/Startup/startup_stm32f446retx.o - .debug_info 0x000057a3 0x99a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_info 0x0000613d 0xdaa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_info 0x00006ee7 0x8e7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_info 0x000077ce 0x70b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_info 0x00007ed9 0x2421 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_info 0x0000a2fa 0x15e3 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_info 0x0000b8dd 0x7b4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_info 0x0000c091 0x8ff ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_info 0x0000c990 0x960 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_info 0x0000d2f0 0x299d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_info 0x0000fc8d 0x14db ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_info 0x00011168 0x2f4f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_info 0x000140b7 0x19f1 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_info 0x00015aa8 0xa9e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_info 0x00016546 0xe1f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_info 0x00017365 0xaf8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_info 0x00017e5d 0x76f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_info 0x000185cc 0x609 ./USB_DEVICE/App/usb_device.o - .debug_info 0x00018bd5 0x4ba ./USB_DEVICE/App/usbd_desc.o - .debug_info 0x0001908f 0x1f49 ./USB_DEVICE/Target/usbd_conf.o + .debug_info 0x0000130d 0x1b46 ./Core/Src/main.o + .debug_info 0x00002e53 0x299 ./Core/Src/stm32f4xx_hal_msp.o + .debug_info 0x000030ec 0xc7c ./Core/Src/stm32f4xx_it.o + .debug_info 0x00003d68 0x54a ./Core/Src/system_stm32f4xx.o + .debug_info 0x000042b2 0xd18 ./Core/Src/tim.o + .debug_info 0x00004fca 0xdbf ./Core/Src/usart.o + .debug_info 0x00005d89 0x30 ./Core/Startup/startup_stm32f446retx.o + .debug_info 0x00005db9 0x99a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_info 0x00006753 0xdaa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_info 0x000074fd 0x8e7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_info 0x00007de4 0x70b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_info 0x000084ef 0x2421 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_info 0x0000a910 0x15e3 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_info 0x0000bef3 0x7b4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_info 0x0000c6a7 0x8ff ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_info 0x0000cfa6 0x960 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_info 0x0000d906 0x299d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_info 0x000102a3 0x14db ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_info 0x0001177e 0x2f4f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_info 0x000146cd 0x19f1 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_info 0x000160be 0xa9e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_info 0x00016b5c 0xe1f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_info 0x0001797b 0xaf8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_info 0x00018473 0x76f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_info 0x00018be2 0x609 ./USB_DEVICE/App/usb_device.o + .debug_info 0x000191eb 0x4ba ./USB_DEVICE/App/usbd_desc.o + .debug_info 0x000196a5 0x1f49 ./USB_DEVICE/Target/usbd_conf.o -.debug_abbrev 0x00000000 0x4037 +.debug_abbrev 0x00000000 0x4090 .debug_abbrev 0x00000000 0x11b ./Core/Src/dma.o .debug_abbrev 0x0000011b 0x152 ./Core/Src/gpio.o .debug_abbrev 0x0000026d 0x1f1 ./Core/Src/i2c.o - .debug_abbrev 0x0000045e 0x30f ./Core/Src/main.o - .debug_abbrev 0x0000076d 0xd8 ./Core/Src/stm32f4xx_hal_msp.o - .debug_abbrev 0x00000845 0x1f6 ./Core/Src/stm32f4xx_it.o - .debug_abbrev 0x00000a3b 0x11a ./Core/Src/system_stm32f4xx.o - .debug_abbrev 0x00000b55 0x22c ./Core/Src/tim.o - .debug_abbrev 0x00000d81 0x270 ./Core/Src/usart.o - .debug_abbrev 0x00000ff1 0x24 ./Core/Startup/startup_stm32f446retx.o - .debug_abbrev 0x00001015 0x214 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_abbrev 0x00001229 0x31d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_abbrev 0x00001546 0x264 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_abbrev 0x000017aa 0x1d4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_abbrev 0x0000197e 0x2ad ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_abbrev 0x00001c2b 0x2d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_abbrev 0x00001efb 0x1dd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_abbrev 0x000020d8 0x2b7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_abbrev 0x0000238f 0x211 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_abbrev 0x000025a0 0x278 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_abbrev 0x00002818 0x283 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_abbrev 0x00002a9b 0x30e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_abbrev 0x00002da9 0x2b3 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_abbrev 0x0000305c 0x2a2 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_abbrev 0x000032fe 0x27c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_abbrev 0x0000357a 0x26f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_abbrev 0x000037e9 0x19a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_abbrev 0x00003983 0x190 ./USB_DEVICE/App/usb_device.o - .debug_abbrev 0x00003b13 0x1e3 ./USB_DEVICE/App/usbd_desc.o - .debug_abbrev 0x00003cf6 0x341 ./USB_DEVICE/Target/usbd_conf.o + .debug_abbrev 0x0000045e 0x368 ./Core/Src/main.o + .debug_abbrev 0x000007c6 0xd8 ./Core/Src/stm32f4xx_hal_msp.o + .debug_abbrev 0x0000089e 0x1f6 ./Core/Src/stm32f4xx_it.o + .debug_abbrev 0x00000a94 0x11a ./Core/Src/system_stm32f4xx.o + .debug_abbrev 0x00000bae 0x22c ./Core/Src/tim.o + .debug_abbrev 0x00000dda 0x270 ./Core/Src/usart.o + .debug_abbrev 0x0000104a 0x24 ./Core/Startup/startup_stm32f446retx.o + .debug_abbrev 0x0000106e 0x214 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_abbrev 0x00001282 0x31d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_abbrev 0x0000159f 0x264 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_abbrev 0x00001803 0x1d4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_abbrev 0x000019d7 0x2ad ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_abbrev 0x00001c84 0x2d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_abbrev 0x00001f54 0x1dd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_abbrev 0x00002131 0x2b7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_abbrev 0x000023e8 0x211 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_abbrev 0x000025f9 0x278 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_abbrev 0x00002871 0x283 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_abbrev 0x00002af4 0x30e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_abbrev 0x00002e02 0x2b3 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_abbrev 0x000030b5 0x2a2 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_abbrev 0x00003357 0x27c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_abbrev 0x000035d3 0x26f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_abbrev 0x00003842 0x19a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_abbrev 0x000039dc 0x190 ./USB_DEVICE/App/usb_device.o + .debug_abbrev 0x00003b6c 0x1e3 ./USB_DEVICE/App/usbd_desc.o + .debug_abbrev 0x00003d4f 0x341 ./USB_DEVICE/Target/usbd_conf.o -.debug_aranges 0x00000000 0x1788 +.debug_aranges 0x00000000 0x17b0 .debug_aranges 0x00000000 0x20 ./Core/Src/dma.o .debug_aranges @@ -6649,62 +6741,62 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .debug_aranges 0x00000040 0x30 ./Core/Src/i2c.o .debug_aranges - 0x00000070 0x68 ./Core/Src/main.o + 0x00000070 0x90 ./Core/Src/main.o .debug_aranges - 0x000000d8 0x20 ./Core/Src/stm32f4xx_hal_msp.o + 0x00000100 0x20 ./Core/Src/stm32f4xx_hal_msp.o .debug_aranges - 0x000000f8 0xc8 ./Core/Src/stm32f4xx_it.o + 0x00000120 0xc8 ./Core/Src/stm32f4xx_it.o .debug_aranges - 0x000001c0 0x28 ./Core/Src/system_stm32f4xx.o + 0x000001e8 0x28 ./Core/Src/system_stm32f4xx.o .debug_aranges - 0x000001e8 0x50 ./Core/Src/tim.o + 0x00000210 0x50 ./Core/Src/tim.o .debug_aranges - 0x00000238 0x48 ./Core/Src/usart.o + 0x00000260 0x48 ./Core/Src/usart.o .debug_aranges - 0x00000280 0x28 ./Core/Startup/startup_stm32f446retx.o + 0x000002a8 0x28 ./Core/Startup/startup_stm32f446retx.o .debug_aranges - 0x000002a8 0xf0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x000002d0 0xf0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o .debug_aranges - 0x00000398 0x130 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x000003c0 0x130 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .debug_aranges - 0x000004c8 0x90 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x000004f0 0x90 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .debug_aranges - 0x00000558 0x58 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x00000580 0x58 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o .debug_aranges - 0x000005b0 0x2a8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + 0x000005d8 0x2a8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o .debug_aranges - 0x00000858 0x148 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x00000880 0x148 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .debug_aranges - 0x000009a0 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x000009c8 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o .debug_aranges - 0x000009e8 0x88 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x00000a10 0x88 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o .debug_aranges - 0x00000a70 0x78 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x00000a98 0x78 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o .debug_aranges - 0x00000ae8 0x3d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x00000b10 0x3d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .debug_aranges - 0x00000eb8 0x168 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x00000ee0 0x168 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o .debug_aranges - 0x00001020 0x208 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x00001048 0x208 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .debug_aranges - 0x00001228 0x1a0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x00001250 0x1a0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o .debug_aranges - 0x000013c8 0x68 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x000013f0 0x68 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .debug_aranges - 0x00001430 0xd8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x00001458 0xd8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o .debug_aranges - 0x00001508 0x90 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x00001530 0x90 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .debug_aranges - 0x00001598 0x50 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x000015c0 0x50 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o .debug_aranges - 0x000015e8 0x20 ./USB_DEVICE/App/usb_device.o + 0x00001610 0x20 ./USB_DEVICE/App/usb_device.o .debug_aranges - 0x00001608 0x68 ./USB_DEVICE/App/usbd_desc.o + 0x00001630 0x68 ./USB_DEVICE/App/usbd_desc.o .debug_aranges - 0x00001670 0x118 ./USB_DEVICE/Target/usbd_conf.o + 0x00001698 0x118 ./USB_DEVICE/Target/usbd_conf.o .debug_rnglists - 0x00000000 0x1246 + 0x00000000 0x1266 .debug_rnglists 0x00000000 0x14 ./Core/Src/dma.o .debug_rnglists @@ -6712,61 +6804,61 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .debug_rnglists 0x00000028 0x20 ./Core/Src/i2c.o .debug_rnglists - 0x00000048 0x50 ./Core/Src/main.o + 0x00000048 0x70 ./Core/Src/main.o .debug_rnglists - 0x00000098 0x13 ./Core/Src/stm32f4xx_hal_msp.o + 0x000000b8 0x13 ./Core/Src/stm32f4xx_hal_msp.o .debug_rnglists - 0x000000ab 0x91 ./Core/Src/stm32f4xx_it.o + 0x000000cb 0x91 ./Core/Src/stm32f4xx_it.o .debug_rnglists - 0x0000013c 0x1a ./Core/Src/system_stm32f4xx.o + 0x0000015c 0x1a ./Core/Src/system_stm32f4xx.o .debug_rnglists - 0x00000156 0x3a ./Core/Src/tim.o + 0x00000176 0x3a ./Core/Src/tim.o .debug_rnglists - 0x00000190 0x33 ./Core/Src/usart.o + 0x000001b0 0x33 ./Core/Src/usart.o .debug_rnglists - 0x000001c3 0x19 ./Core/Startup/startup_stm32f446retx.o + 0x000001e3 0x19 ./Core/Startup/startup_stm32f446retx.o .debug_rnglists - 0x000001dc 0xaf ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x000001fc 0xaf ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o .debug_rnglists - 0x0000028b 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x000002ab 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .debug_rnglists - 0x0000036b 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0000038b 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .debug_rnglists - 0x000003db 0x3f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x000003fb 0x3f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o .debug_rnglists - 0x0000041a 0x23c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + 0x0000043a 0x23c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o .debug_rnglists - 0x00000656 0xfa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x00000676 0xfa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .debug_rnglists - 0x00000750 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x00000770 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o .debug_rnglists - 0x00000782 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x000007a2 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o .debug_rnglists - 0x000007e8 0x5e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x00000808 0x5e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o .debug_rnglists - 0x00000846 0x31a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x00000866 0x31a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .debug_rnglists - 0x00000b60 0x125 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x00000b80 0x125 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o .debug_rnglists - 0x00000c85 0x1bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x00000ca5 0x1bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .debug_rnglists - 0x00000e41 0x147 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x00000e61 0x147 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o .debug_rnglists - 0x00000f88 0x4c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x00000fa8 0x4c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .debug_rnglists - 0x00000fd4 0xa1 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x00000ff4 0xa1 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o .debug_rnglists - 0x00001075 0x6e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x00001095 0x6e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .debug_rnglists - 0x000010e3 0x37 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x00001103 0x37 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o .debug_rnglists - 0x0000111a 0x13 ./USB_DEVICE/App/usb_device.o + 0x0000113a 0x13 ./USB_DEVICE/App/usb_device.o .debug_rnglists - 0x0000112d 0x49 ./USB_DEVICE/App/usbd_desc.o + 0x0000114d 0x49 ./USB_DEVICE/App/usbd_desc.o .debug_rnglists - 0x00001176 0xd0 ./USB_DEVICE/Target/usbd_conf.o + 0x00001196 0xd0 ./USB_DEVICE/Target/usbd_conf.o -.debug_macro 0x00000000 0x26060 +.debug_macro 0x00000000 0x2607b .debug_macro 0x00000000 0x224 ./Core/Src/dma.o .debug_macro 0x00000224 0xad8 ./Core/Src/dma.o .debug_macro 0x00000cfc 0x2a7 ./Core/Src/dma.o @@ -6815,131 +6907,131 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .debug_macro 0x00020108 0x304 ./Core/Src/dma.o .debug_macro 0x0002040c 0x224 ./Core/Src/gpio.o .debug_macro 0x00020630 0x224 ./Core/Src/i2c.o - .debug_macro 0x00020854 0x41f ./Core/Src/main.o - .debug_macro 0x00020c73 0x61 ./Core/Src/main.o - .debug_macro 0x00020cd4 0x2a ./Core/Src/main.o - .debug_macro 0x00020cfe 0x43 ./Core/Src/main.o - .debug_macro 0x00020d41 0x34 ./Core/Src/main.o - .debug_macro 0x00020d75 0x16 ./Core/Src/main.o - .debug_macro 0x00020d8b 0x3c ./Core/Src/main.o - .debug_macro 0x00020dc7 0x370 ./Core/Src/main.o - .debug_macro 0x00021137 0x10 ./Core/Src/main.o - .debug_macro 0x00021147 0x16 ./Core/Src/main.o - .debug_macro 0x0002115d 0x4a ./Core/Src/main.o - .debug_macro 0x000211a7 0x34 ./Core/Src/main.o - .debug_macro 0x000211db 0x10 ./Core/Src/main.o - .debug_macro 0x000211eb 0x58 ./Core/Src/main.o - .debug_macro 0x00021243 0x8e ./Core/Src/main.o - .debug_macro 0x000212d1 0x1c ./Core/Src/main.o - .debug_macro 0x000212ed 0x185 ./Core/Src/main.o - .debug_macro 0x00021472 0x16 ./Core/Src/main.o - .debug_macro 0x00021488 0x16 ./Core/Src/main.o - .debug_macro 0x0002149e 0x146 ./Core/Src/main.o - .debug_macro 0x000215e4 0x16 ./Core/Src/main.o - .debug_macro 0x000215fa 0x16 ./Core/Src/main.o - .debug_macro 0x00021610 0x29 ./Core/Src/main.o - .debug_macro 0x00021639 0x16 ./Core/Src/main.o - .debug_macro 0x0002164f 0x20 ./Core/Src/main.o - .debug_macro 0x0002166f 0x6b ./Core/Src/main.o - .debug_macro 0x000216da 0x20f ./Core/Src/main.o - .debug_macro 0x000218e9 0x5f ./Core/Src/main.o - .debug_macro 0x00021948 0x21a ./Core/Src/stm32f4xx_hal_msp.o - .debug_macro 0x00021b62 0x224 ./Core/Src/stm32f4xx_it.o - .debug_macro 0x00021d86 0x20b ./Core/Src/system_stm32f4xx.o - .debug_macro 0x00021f91 0x224 ./Core/Src/tim.o - .debug_macro 0x000221b5 0x224 ./Core/Src/usart.o - .debug_macro 0x000223d9 0x26b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_macro 0x00022644 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_macro 0x0002284f 0x211 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_macro 0x00022a60 0x211 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_macro 0x00022c71 0x259 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_macro 0x00022eca 0x217 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_macro 0x000230e1 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_macro 0x000232ec 0x22f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_macro 0x0002351b 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_macro 0x00023726 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_macro 0x00023932 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_macro 0x00023b3d 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_macro 0x00023d49 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_macro 0x00023f54 0x3a9 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_macro 0x000242fd 0x9e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_macro 0x0002439b 0x112 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_macro 0x000244ad 0x56 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_macro 0x00024503 0x390 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_macro 0x00024893 0x215 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_macro 0x00024aa8 0x39a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_macro 0x00024e42 0x396 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_macro 0x000251d8 0x3c0 ./USB_DEVICE/App/usb_device.o - .debug_macro 0x00025598 0x30a ./USB_DEVICE/App/usb_device.o - .debug_macro 0x000258a2 0x22 ./USB_DEVICE/App/usb_device.o - .debug_macro 0x000258c4 0x3d3 ./USB_DEVICE/App/usbd_desc.o - .debug_macro 0x00025c97 0x1c ./USB_DEVICE/App/usbd_desc.o - .debug_macro 0x00025cb3 0x3ad ./USB_DEVICE/Target/usbd_conf.o + .debug_macro 0x00020854 0x43a ./Core/Src/main.o + .debug_macro 0x00020c8e 0x61 ./Core/Src/main.o + .debug_macro 0x00020cef 0x2a ./Core/Src/main.o + .debug_macro 0x00020d19 0x43 ./Core/Src/main.o + .debug_macro 0x00020d5c 0x34 ./Core/Src/main.o + .debug_macro 0x00020d90 0x16 ./Core/Src/main.o + .debug_macro 0x00020da6 0x3c ./Core/Src/main.o + .debug_macro 0x00020de2 0x370 ./Core/Src/main.o + .debug_macro 0x00021152 0x10 ./Core/Src/main.o + .debug_macro 0x00021162 0x16 ./Core/Src/main.o + .debug_macro 0x00021178 0x4a ./Core/Src/main.o + .debug_macro 0x000211c2 0x34 ./Core/Src/main.o + .debug_macro 0x000211f6 0x10 ./Core/Src/main.o + .debug_macro 0x00021206 0x58 ./Core/Src/main.o + .debug_macro 0x0002125e 0x8e ./Core/Src/main.o + .debug_macro 0x000212ec 0x1c ./Core/Src/main.o + .debug_macro 0x00021308 0x185 ./Core/Src/main.o + .debug_macro 0x0002148d 0x16 ./Core/Src/main.o + .debug_macro 0x000214a3 0x16 ./Core/Src/main.o + .debug_macro 0x000214b9 0x146 ./Core/Src/main.o + .debug_macro 0x000215ff 0x16 ./Core/Src/main.o + .debug_macro 0x00021615 0x16 ./Core/Src/main.o + .debug_macro 0x0002162b 0x29 ./Core/Src/main.o + .debug_macro 0x00021654 0x16 ./Core/Src/main.o + .debug_macro 0x0002166a 0x20 ./Core/Src/main.o + .debug_macro 0x0002168a 0x6b ./Core/Src/main.o + .debug_macro 0x000216f5 0x20f ./Core/Src/main.o + .debug_macro 0x00021904 0x5f ./Core/Src/main.o + .debug_macro 0x00021963 0x21a ./Core/Src/stm32f4xx_hal_msp.o + .debug_macro 0x00021b7d 0x224 ./Core/Src/stm32f4xx_it.o + .debug_macro 0x00021da1 0x20b ./Core/Src/system_stm32f4xx.o + .debug_macro 0x00021fac 0x224 ./Core/Src/tim.o + .debug_macro 0x000221d0 0x224 ./Core/Src/usart.o + .debug_macro 0x000223f4 0x26b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_macro 0x0002265f 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_macro 0x0002286a 0x211 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_macro 0x00022a7b 0x211 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_macro 0x00022c8c 0x259 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_macro 0x00022ee5 0x217 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_macro 0x000230fc 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_macro 0x00023307 0x22f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_macro 0x00023536 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_macro 0x00023741 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_macro 0x0002394d 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_macro 0x00023b58 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_macro 0x00023d64 0x20b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_macro 0x00023f6f 0x3a9 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_macro 0x00024318 0x9e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_macro 0x000243b6 0x112 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_macro 0x000244c8 0x56 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_macro 0x0002451e 0x390 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_macro 0x000248ae 0x215 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_macro 0x00024ac3 0x39a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_macro 0x00024e5d 0x396 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_macro 0x000251f3 0x3c0 ./USB_DEVICE/App/usb_device.o + .debug_macro 0x000255b3 0x30a ./USB_DEVICE/App/usb_device.o + .debug_macro 0x000258bd 0x22 ./USB_DEVICE/App/usb_device.o + .debug_macro 0x000258df 0x3d3 ./USB_DEVICE/App/usbd_desc.o + .debug_macro 0x00025cb2 0x1c ./USB_DEVICE/App/usbd_desc.o + .debug_macro 0x00025cce 0x3ad ./USB_DEVICE/Target/usbd_conf.o -.debug_line 0x00000000 0x1e6f9 +.debug_line 0x00000000 0x1e8b0 .debug_line 0x00000000 0x726 ./Core/Src/dma.o .debug_line 0x00000726 0x74e ./Core/Src/gpio.o .debug_line 0x00000e74 0x789 ./Core/Src/i2c.o - .debug_line 0x000015fd 0xd10 ./Core/Src/main.o - .debug_line 0x0000230d 0x71b ./Core/Src/stm32f4xx_hal_msp.o - .debug_line 0x00002a28 0x902 ./Core/Src/stm32f4xx_it.o - .debug_line 0x0000332a 0x791 ./Core/Src/system_stm32f4xx.o - .debug_line 0x00003abb 0x878 ./Core/Src/tim.o - .debug_line 0x00004333 0xa52 ./Core/Src/usart.o - .debug_line 0x00004d85 0x7a ./Core/Startup/startup_stm32f446retx.o - .debug_line 0x00004dff 0xa0d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_line 0x0000580c 0xcdd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_line 0x000064e9 0xf79 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_line 0x00007462 0xb51 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_line 0x00007fb3 0x3aba ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_line 0x0000ba6d 0x1488 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_line 0x0000cef5 0x82d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_line 0x0000d722 0xe28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_line 0x0000e54a 0x14d9 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_line 0x0000fa23 0x3782 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_line 0x000131a5 0x196d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_line 0x00014b12 0x2555 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_line 0x00017067 0x1d2f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_line 0x00018d96 0xc3e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_line 0x000199d4 0xf28 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_line 0x0001a8fc 0x1107 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_line 0x0001ba03 0xa2f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_line 0x0001c432 0x9d6 ./USB_DEVICE/App/usb_device.o - .debug_line 0x0001ce08 0xab9 ./USB_DEVICE/App/usbd_desc.o - .debug_line 0x0001d8c1 0xe38 ./USB_DEVICE/Target/usbd_conf.o + .debug_line 0x000015fd 0xec7 ./Core/Src/main.o + .debug_line 0x000024c4 0x71b ./Core/Src/stm32f4xx_hal_msp.o + .debug_line 0x00002bdf 0x902 ./Core/Src/stm32f4xx_it.o + .debug_line 0x000034e1 0x791 ./Core/Src/system_stm32f4xx.o + .debug_line 0x00003c72 0x878 ./Core/Src/tim.o + .debug_line 0x000044ea 0xa52 ./Core/Src/usart.o + .debug_line 0x00004f3c 0x7a ./Core/Startup/startup_stm32f446retx.o + .debug_line 0x00004fb6 0xa0d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_line 0x000059c3 0xcdd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_line 0x000066a0 0xf79 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_line 0x00007619 0xb51 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_line 0x0000816a 0x3aba ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_line 0x0000bc24 0x1488 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_line 0x0000d0ac 0x82d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_line 0x0000d8d9 0xe28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_line 0x0000e701 0x14d9 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_line 0x0000fbda 0x3782 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_line 0x0001335c 0x196d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_line 0x00014cc9 0x2555 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_line 0x0001721e 0x1d2f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_line 0x00018f4d 0xc3e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_line 0x00019b8b 0xf28 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_line 0x0001aab3 0x1107 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_line 0x0001bbba 0xa2f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_line 0x0001c5e9 0x9d6 ./USB_DEVICE/App/usb_device.o + .debug_line 0x0001cfbf 0xab9 ./USB_DEVICE/App/usbd_desc.o + .debug_line 0x0001da78 0xe38 ./USB_DEVICE/Target/usbd_conf.o -.debug_str 0x00000000 0xd7edb - .debug_str 0x00000000 0xd7edb ./Core/Src/dma.o +.debug_str 0x00000000 0xd8013 + .debug_str 0x00000000 0xd8013 ./Core/Src/dma.o 0xcd195 (size before relaxing) - .debug_str 0x000d7edb 0xccd02 ./Core/Src/gpio.o - .debug_str 0x000d7edb 0xcd236 ./Core/Src/i2c.o - .debug_str 0x000d7edb 0xd1f31 ./Core/Src/main.o - .debug_str 0x000d7edb 0xccc37 ./Core/Src/stm32f4xx_hal_msp.o - .debug_str 0x000d7edb 0xcd5bd ./Core/Src/stm32f4xx_it.o - .debug_str 0x000d7edb 0xcc61f ./Core/Src/system_stm32f4xx.o - .debug_str 0x000d7edb 0xcd497 ./Core/Src/tim.o - .debug_str 0x000d7edb 0xcd809 ./Core/Src/usart.o - .debug_str 0x000d7edb 0x7e ./Core/Startup/startup_stm32f446retx.o - .debug_str 0x000d7edb 0xcd1e4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_str 0x000d7edb 0xccf3b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_str 0x000d7edb 0xcca14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_str 0x000d7edb 0xcc79a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_str 0x000d7edb 0xcd61d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_str 0x000d7edb 0xcd130 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_str 0x000d7edb 0xcca32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_str 0x000d7edb 0xcca58 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_str 0x000d7edb 0xcca8b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_str 0x000d7edb 0xcd984 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_str 0x000d7edb 0xcd190 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_str 0x000d7edb 0xcd00f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_str 0x000d7edb 0xccfec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_str 0x000d7edb 0xd1755 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_str 0x000d7edb 0xd16be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_str 0x000d7edb 0xd14e9 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_str 0x000d7edb 0xd13be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_str 0x000d7edb 0xd1553 ./USB_DEVICE/App/usb_device.o - .debug_str 0x000d7edb 0xd12d2 ./USB_DEVICE/App/usbd_desc.o - .debug_str 0x000d7edb 0xd271f ./USB_DEVICE/Target/usbd_conf.o + .debug_str 0x000d8013 0xccd02 ./Core/Src/gpio.o + .debug_str 0x000d8013 0xcd236 ./Core/Src/i2c.o + .debug_str 0x000d8013 0xd238f ./Core/Src/main.o + .debug_str 0x000d8013 0xccc37 ./Core/Src/stm32f4xx_hal_msp.o + .debug_str 0x000d8013 0xcd5bd ./Core/Src/stm32f4xx_it.o + .debug_str 0x000d8013 0xcc61f ./Core/Src/system_stm32f4xx.o + .debug_str 0x000d8013 0xcd497 ./Core/Src/tim.o + .debug_str 0x000d8013 0xcd809 ./Core/Src/usart.o + .debug_str 0x000d8013 0x7e ./Core/Startup/startup_stm32f446retx.o + .debug_str 0x000d8013 0xcd1e4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_str 0x000d8013 0xccf3b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_str 0x000d8013 0xcca14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_str 0x000d8013 0xcc79a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_str 0x000d8013 0xcd61d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_str 0x000d8013 0xcd130 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_str 0x000d8013 0xcca32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_str 0x000d8013 0xcca58 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_str 0x000d8013 0xcca8b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_str 0x000d8013 0xcd984 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_str 0x000d8013 0xcd190 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_str 0x000d8013 0xcd00f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_str 0x000d8013 0xccfec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_str 0x000d8013 0xd1755 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_str 0x000d8013 0xd16be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_str 0x000d8013 0xd14e9 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_str 0x000d8013 0xd13be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_str 0x000d8013 0xd1553 ./USB_DEVICE/App/usb_device.o + .debug_str 0x000d8013 0xd12d2 ./USB_DEVICE/App/usbd_desc.o + .debug_str 0x000d8013 0xd271f ./USB_DEVICE/Target/usbd_conf.o .comment 0x00000000 0x43 .comment 0x00000000 0x43 ./Core/Src/dma.o @@ -6973,40 +7065,41 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .comment 0x00000043 0x44 ./USB_DEVICE/App/usbd_desc.o .comment 0x00000043 0x44 ./USB_DEVICE/Target/usbd_conf.o -.debug_frame 0x00000000 0x62c0 +.debug_frame 0x00000000 0x63a4 .debug_frame 0x00000000 0x34 ./Core/Src/dma.o .debug_frame 0x00000034 0x34 ./Core/Src/gpio.o .debug_frame 0x00000068 0x74 ./Core/Src/i2c.o - .debug_frame 0x000000dc 0x168 ./Core/Src/main.o - .debug_frame 0x00000244 0x38 ./Core/Src/stm32f4xx_hal_msp.o - .debug_frame 0x0000027c 0x270 ./Core/Src/stm32f4xx_it.o - .debug_frame 0x000004ec 0x58 ./Core/Src/system_stm32f4xx.o - .debug_frame 0x00000544 0x114 ./Core/Src/tim.o - .debug_frame 0x00000658 0xcc ./Core/Src/usart.o - .debug_frame 0x00000724 0x374 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_frame 0x00000a98 0x508 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_frame 0x00000fa0 0x250 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_frame 0x000011f0 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_frame 0x0000133c 0xc84 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_frame 0x00001fc0 0x5b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_frame 0x00002578 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_frame 0x00002678 0x1f4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_frame 0x0000286c 0x1e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_frame 0x00002a54 0x11c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_frame 0x00003c14 0x638 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_frame 0x0000424c 0x954 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_frame 0x00004ba0 0x7c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_frame 0x00005360 0x184 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_frame 0x000054e4 0x390 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_frame 0x00005874 0x23c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_frame 0x00005ab0 0x10c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_frame 0x00005bbc 0x2c ./USB_DEVICE/App/usb_device.o - .debug_frame 0x00005be8 0x188 ./USB_DEVICE/App/usbd_desc.o - .debug_frame 0x00005d70 0x4a4 ./USB_DEVICE/Target/usbd_conf.o - .debug_frame 0x00006214 0x20 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) - .debug_frame 0x00006234 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) - .debug_frame 0x00006260 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_aeabi_uldivmod.o) - .debug_frame 0x0000628c 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) + .debug_frame 0x000000dc 0x224 ./Core/Src/main.o + .debug_frame 0x00000300 0x38 ./Core/Src/stm32f4xx_hal_msp.o + .debug_frame 0x00000338 0x270 ./Core/Src/stm32f4xx_it.o + .debug_frame 0x000005a8 0x58 ./Core/Src/system_stm32f4xx.o + .debug_frame 0x00000600 0x114 ./Core/Src/tim.o + .debug_frame 0x00000714 0xcc ./Core/Src/usart.o + .debug_frame 0x000007e0 0x374 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_frame 0x00000b54 0x508 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_frame 0x0000105c 0x250 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_frame 0x000012ac 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_frame 0x000013f8 0xc84 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_frame 0x0000207c 0x5b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_frame 0x00002634 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_frame 0x00002734 0x1f4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_frame 0x00002928 0x1e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_frame 0x00002b10 0x11c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_frame 0x00003cd0 0x638 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_frame 0x00004308 0x954 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_frame 0x00004c5c 0x7c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_frame 0x0000541c 0x184 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_frame 0x000055a0 0x390 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_frame 0x00005930 0x23c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_frame 0x00005b6c 0x10c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_frame 0x00005c78 0x2c ./USB_DEVICE/App/usb_device.o + .debug_frame 0x00005ca4 0x188 ./USB_DEVICE/App/usbd_desc.o + .debug_frame 0x00005e2c 0x4a4 ./USB_DEVICE/Target/usbd_conf.o + .debug_frame 0x000062d0 0x20 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) + .debug_frame 0x000062f0 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) + .debug_frame 0x0000631c 0x28 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + .debug_frame 0x00006344 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x00006370 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) .debug_line_str 0x00000000 0x62 diff --git a/firmware/modularkbd/Debug/objects.list b/firmware/modularkbd/Debug/objects.list index a58c516b..47af9680 100644 --- a/firmware/modularkbd/Debug/objects.list +++ b/firmware/modularkbd/Debug/objects.list @@ -1,5 +1,6 @@ "./Core/Src/dma.o" "./Core/Src/gpio.o" +"./Core/Src/hid_queue.o" "./Core/Src/i2c.o" "./Core/Src/main.o" "./Core/Src/stm32f4xx_hal_msp.o" diff --git a/hardware/numpad/numpad/Solidworks/67PhoBottomCase.SLDPRT b/hardware/numpad/numpad/Solidworks/67PhoBottomCase.SLDPRT deleted file mode 100644 index 13e0af47..00000000 Binary files a/hardware/numpad/numpad/Solidworks/67PhoBottomCase.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/67PhoCaseBottom.SLDPRT b/hardware/numpad/numpad/Solidworks/67PhoCaseBottom.SLDPRT deleted file mode 100644 index 88642978..00000000 Binary files a/hardware/numpad/numpad/Solidworks/67PhoCaseBottom.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/67PhoCaseBottomRIght.SLDPRT b/hardware/numpad/numpad/Solidworks/67PhoCaseBottomRIght.SLDPRT deleted file mode 100644 index adf51dca..00000000 Binary files a/hardware/numpad/numpad/Solidworks/67PhoCaseBottomRIght.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/67PhoPlate.SLDPRT b/hardware/numpad/numpad/Solidworks/67PhoPlate.SLDPRT deleted file mode 100644 index d3c060a3..00000000 Binary files a/hardware/numpad/numpad/Solidworks/67PhoPlate.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/67plate.SLDPRT b/hardware/numpad/numpad/Solidworks/67plate.SLDPRT deleted file mode 100644 index b95b66bb..00000000 Binary files a/hardware/numpad/numpad/Solidworks/67plate.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/AssPho_PlateNLeftNRight.SLDASM b/hardware/numpad/numpad/Solidworks/AssPho_PlateNLeftNRight.SLDASM deleted file mode 100644 index 6db2abc6..00000000 Binary files a/hardware/numpad/numpad/Solidworks/AssPho_PlateNLeftNRight.SLDASM and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/AssemblyPho_plateNLeftNRight.SLDASM b/hardware/numpad/numpad/Solidworks/AssemblyPho_plateNLeftNRight.SLDASM deleted file mode 100644 index 839923c1..00000000 Binary files a/hardware/numpad/numpad/Solidworks/AssemblyPho_plateNLeftNRight.SLDASM and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/numpadBottom.SLDPRT b/hardware/numpad/numpad/Solidworks/numpadBottom.SLDPRT deleted file mode 100644 index fef7cf06..00000000 Binary files a/hardware/numpad/numpad/Solidworks/numpadBottom.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/numpadBottom.STL b/hardware/numpad/numpad/Solidworks/numpadBottom.STL deleted file mode 100644 index 3ef0af20..00000000 Binary files a/hardware/numpad/numpad/Solidworks/numpadBottom.STL and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/numpadTop.SLDPRT b/hardware/numpad/numpad/Solidworks/numpadTop.SLDPRT deleted file mode 100644 index e626a487..00000000 Binary files a/hardware/numpad/numpad/Solidworks/numpadTop.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/numpadTop.STL b/hardware/numpad/numpad/Solidworks/numpadTop.STL deleted file mode 100644 index 35102c1d..00000000 Binary files a/hardware/numpad/numpad/Solidworks/numpadTop.STL and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/~$numpadBottom.SLDPRT b/hardware/numpad/numpad/Solidworks/~$numpadBottom.SLDPRT deleted file mode 100644 index dc7a1e46..00000000 Binary files a/hardware/numpad/numpad/Solidworks/~$numpadBottom.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/Solidworks/~$numpadTop.SLDPRT b/hardware/numpad/numpad/Solidworks/~$numpadTop.SLDPRT deleted file mode 100644 index dc7a1e46..00000000 Binary files a/hardware/numpad/numpad/Solidworks/~$numpadTop.SLDPRT and /dev/null differ diff --git a/hardware/numpad/numpad/fp-info-cache b/hardware/numpad/numpad/fp-info-cache index 45145cd0..652a9144 100644 --- a/hardware/numpad/numpad/fp-info-cache +++ b/hardware/numpad/numpad/fp-info-cache @@ -1,4 +1,4 @@ -488546466764914 +24460374915546345 Connector_PinSocket_2.54mm PinSocket_1x01_P2.54mm_Horizontal Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated @@ -1945,3 +1945,95483 @@ Surface mounted socket strip SMD 2x40 2.54mm double row 0 80 80 +PCM_4ms_Capacitor +CP_Elec_5x5.3 +SMT capacitor, aluminium electrolytic, 5x5.3 + +0 +2 +2 +PCM_4ms_Capacitor +CP_Radial_NP_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +PCM_4ms_Capacitor +CP_Radial_P2.5mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +PCM_4ms_Capacitor +CP_Tantalum_EIA-6032-28_Kemet-C +Tantalum capacitor, Case C, EIA 6032-28, 6.0x3.2x2.5mm, Reflow soldering footprint +capacitor tantalum smd +0 +2 +2 +PCM_4ms_Capacitor +C_0402 + + +0 +2 +2 +PCM_4ms_Capacitor +C_0603 +Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf) +capacitor 0603 C0603 +0 +2 +2 +PCM_4ms_Capacitor +C_0805 +C0805 + +0 +2 +2 +PCM_4ms_Capacitor +C_1206 +C1206 + +0 +2 +2 +PCM_4ms_Capacitor +C_1210 +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +PCM_4ms_Capacitor +C_Disc_P5.08mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_4ms_Connector +FPC_50pin_ER-CON50HT-1 +East Rising 50-pin SMT FFC/FPC connector ER-CON50HT-1 +50-pin FFC FPC +0 +52 +51 +PCM_4ms_Connector +J-Link_2x03 + +J-LINK SEGGER NEEDLE PROGRAMMER +0 +6 +6 +PCM_4ms_Connector +J-Link_2x05 + + +0 +10 +10 +PCM_4ms_Connector +Pins_1x02_2.54mm_TH + + +0 +2 +2 +PCM_4ms_Connector +Pins_1x03_2.54mm_0.8mm_TH_AudioInsRGndL +Through hole pin header +pin header +0 +3 +3 +PCM_4ms_Connector +Pins_1x03_2.54mm_TH +Through hole pin header +pin header +0 +3 +3 +PCM_4ms_Connector +Pins_1x03_2.54mm_TH_AudioInsRGndL +Through hole pin header +pin header +0 +3 +3 +PCM_4ms_Connector +Pins_1x03_2.54mm_TH_AudioOutsRGndL +Through hole pin header +pin header +0 +3 +3 +PCM_4ms_Connector +Pins_1x03_P2.54mm_Horizontal_SMT +SMT angled pins, 1x03, 2.54mm pitch, 5.84mm pin length +SMT angled pins 1x03 2.54mm single row +0 +3 +3 +PCM_4ms_Connector +Pins_1x04_2.54mm_TH +Through hole straight pin header, 1x04, 2.54mm pitch, single row +Through hole pin header THT 1x04 2.54mm single row +0 +4 +4 +PCM_4ms_Connector +Pins_1x04_2.54mm_TH_SWD +Through hole straight pin header, 1x04, 2.54mm pitch, single row +Through hole pin header THT 1x04 2.54mm single row +0 +4 +4 +PCM_4ms_Connector +Pins_1x04_3.96mm_TH_MTA156 + + +0 +4 +4 +PCM_4ms_Connector +Pins_1x05_2.54mm_TH +Through hole pin header +pin header +0 +5 +5 +PCM_4ms_Connector +Pins_1x06_2.54mm_TH_SWD +Through hole pin header +pin header +0 +6 +6 +PCM_4ms_Connector +Pins_1x06_2.54mm_TH_SWD_small56 +Through hole pin header +pin header +0 +6 +6 +PCM_4ms_Connector +Pins_1x08_2.54mm_TH +Through hole straight pin header, 1x08, 2.54mm pitch, single row +Through hole pin header THT 1x08 2.54mm single row +0 +8 +8 +PCM_4ms_Connector +Pins_1x08_2.54mm_TH_stripe +Through hole straight pin header, 1x08, 2.54mm pitch, single row +Through hole pin header THT 1x08 2.54mm single row +0 +8 +8 +PCM_4ms_Connector +Pins_2x03_1.27mm_SMD +surface-mounted straight pin header, 2x03, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x03 1.27mm double row +0 +6 +6 +PCM_4ms_Connector +Pins_2x03_2.54mm_TH +Through hole straight socket strip, 2x03, 2.54mm pitch, double rows +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +PCM_4ms_Connector +Pins_2x03_2.54mm_TH_ISP +Through hole straight socket strip, 2x03, 2.54mm pitch, double rows +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +PCM_4ms_Connector +Pins_2x04_2.54mm_TH +Through hole straight socket strip, 2x04, 2.54mm pitch, double rows +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +PCM_4ms_Connector +Pins_2x05_1.27mm_SMD +surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x05 1.27mm double row +0 +10 +10 +PCM_4ms_Connector +Pins_2x05_2.54mm_TH + +Through hole pin header THT 2x05 2.54mm Eurorack power europower +0 +10 +10 +PCM_4ms_Connector +Pins_2x05_2.54mm_TH_Europower + +Through hole pin header THT 2x05 2.54mm Eurorack power europower +0 +10 +10 +PCM_4ms_Connector +Pins_2x08_1.27mm_SMD +surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x08 1.27mm double row +0 +16 +16 +PCM_4ms_Connector +Pins_2x08_1.27mm_TH +Through hole straight pin header, 2x08, 1.27mm pitch, double rows +Through hole pin header THT 2x08 1.27mm double row +0 +16 +16 +PCM_4ms_Connector +Pins_2x08_2.54mm_TH + + +0 +16 +16 +PCM_4ms_Connector +Pins_2x08_2.54mm_TH_EuroPower + + +0 +16 +16 +PCM_4ms_Connector +Pins_2x08_2.54mm_TH_EuroPower_Shrouded + + +0 +16 +16 +PCM_4ms_Connector +Pins_2x08_2.54mm_TH_EuroPower_Shrouded_reducedsilk + + +0 +16 +16 +PCM_4ms_Connector +Pins_2x10_1.27mm_SMT + + +0 +20 +20 +PCM_4ms_Connector +Pins_2x10_1.27mm_SMT_Trace + + +0 +20 +20 +PCM_4ms_Connector +Pins_2x10_1.27mm_TH +Through hole straight pin header, 2x10, 1.27mm pitch, double rows +Through hole pin header THT 2x10 1.27mm double row +0 +20 +20 +PCM_4ms_Connector +Socket_1x02_2.54mm_TH +Through hole straight socket strip, 1x02, 2.54mm pitch +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +PCM_4ms_Connector +Socket_2x03_2.54mm_TH +Through hole straight pin header, 2x03, 2.54mm pitch, double rows +Through hole pin header THT 2x03 2.54mm double row +0 +6 +6 +PCM_4ms_Connector +Socket_2x04_2.54mm_TH +Through hole straight socket strip, 2x04, 2.54mm pitch, double rows +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +PCM_4ms_Connector +Socket_2x08_1.27mm_SMD +surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x08 1.27mm double row +0 +16 +16 +PCM_4ms_Connector +Socket_2x08_1.27mm_TH +Through hole straight pin header, 2x08, 1.27mm pitch, double rows +Through hole pin header THT 2x08 1.27mm double row +0 +16 +16 +PCM_4ms_Connector +Socket_2x08_2.54mm_TH +Through hole straight socket strip, 2x08, 2.54mm pitch, double rows +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +PCM_4ms_Connector +Socket_2x10_1.27mm_TH +Through hole straight pin header, 2x10, 1.27mm pitch, double rows +Through hole pin header THT 2x10 1.27mm double row +0 +20 +20 +PCM_4ms_Connector +Socket_2x32_2.54mm_TH +Through hole straight socket header, 2x32, 2.54mm pitch, double rows +Through hole socket header THT 2x32 2.54mm double row +0 +64 +64 +PCM_4ms_Connector +USB_C_Receptacle_Amphenol_12401610E4-2A +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +PCM_4ms_Connector +USB_Micro-B_Molex-105017-0001 +http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf +Micro-USB SMD Typ-B +0 +13 +6 +PCM_4ms_Connector +Wire_12AWG + + +0 +1 +1 +PCM_4ms_Connector_Card +CardSlot_MicroSD_YamaichiPJS008U-3000 +https://www.yamaichi.de/uploads/media/PJS008U-3000.pdf +MICROSD SDCARD +0 +10 +10 +PCM_4ms_Converter_DCDC +OKI-78SR-Horizontal +TO-220, Horizontal, DCDC +TO-220 Horizontal DCDC +0 +3 +3 +PCM_4ms_Converter_DCDC +OKI-78SR-Vertical +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +3 +3 +PCM_4ms_Converter_DCDC +QFN_LMZM3360x_2 + + +0 +67 +18 +PCM_4ms_Converter_DCDC +QFN_LMZM3360x_handsolder + + +0 +69 +18 +PCM_4ms_Converter_DCDC +Recom_78E_DCDC +RECOM R-78E-0.5 DC/DC converter + +0 +3 +3 +PCM_4ms_Converter_DCDC +VXO78xx +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +3 +3 +PCM_4ms_Converter_DCDC +VXO78xx-1000 +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +3 +3 +PCM_4ms_Converter_DCDC +VXO78xx-1000_Horiz +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +6 +3 +PCM_4ms_Converter_DCDC +VXO78xx-1000_Horiz_rev2 +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +6 +3 +PCM_4ms_Converter_DCDC +VXO78xx-1000_Horiz_rev3 +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +3 +3 +PCM_4ms_Crystal +Crystal_P2.54mm + + +0 +2 +2 +PCM_4ms_Crystal +FA-238 + + +0 +4 +4 +PCM_4ms_Crystal +HC-49US + + +0 +2 +2 +PCM_4ms_Diode +D_DO-35_P7.62mm_Horizontal +D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_4ms_Diode +D_DO-41_P7.62mm_Horizontal +D, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +D DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_4ms_Diode +D_DO-214AC_SMA +Diode DO-214AC (SMA) Vishay +Diode SMA +0 +2 +2 +PCM_4ms_Diode +D_SMA +Diode SMA +Diode SMA +0 +2 +2 +PCM_4ms_Diode +D_SOD-123 +SOD-123 +SOD-123 +0 +2 +2 +PCM_4ms_Diode +D_SOD-123F +D_SOD-123F +D_SOD-123F +0 +2 +2 +PCM_4ms_Diode +D_SOD-323F +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf +SOD-323F +0 +2 +2 +PCM_4ms_Diode +D_SOD-323F_Handsoldering +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf +SOD-323F +0 +2 +2 +PCM_4ms_Display +ER-TFT028A3-4-CustomBrkOut + + +0 +14 +7 +PCM_4ms_Display +ER-TFT028A3-4-CustomBrkOutB + + +0 +14 +7 +PCM_4ms_Display +ER-TFT028A3-4-CustomBrkOutC + + +0 +14 +7 +PCM_4ms_Display +ER-TFTM1.54-1_BREAKOUT + + +0 +12 +9 +PCM_4ms_Display +ER-TFTM028-4_BREAKOUT + + +0 +44 +44 +PCM_4ms_Encoder +ENC_RGB_SPST_12mm + + +0 +10 +9 +PCM_4ms_Encoder +ENC_RGB_SPST_12mm_OLD + + +0 +10 +9 +PCM_4ms_Encoder +ENC_SPST_12mm + + +0 +7 +6 +PCM_4ms_Encoder +ENC_SPST_12mm_OLD + + +0 +7 +6 +PCM_4ms_Encoder +RGB_ROTARY_ENCODER + + +0 +10 +9 +PCM_4ms_Encoder +ROTENC-12MM-BUT + + +0 +7 +6 +PCM_4ms_Experimental_FP +Button_LED_PB61303_Adjusted + + +0 +8 +8 +PCM_4ms_Experimental_FP +Button_LED_PB61303_Adjusted+ + + +0 +8 +8 +PCM_4ms_Experimental_FP +FPC_1x06_TEConn_2328702 + + +0 +8 +7 +PCM_4ms_Experimental_FP +QFN-48_EP_7x7_P0.5mm_Pad0.55x0.30 + + +0 +52 +49 +PCM_4ms_Experimental_FP +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +PCM_4ms_Experimental_FP +Speaker_AS04008CO-R +https://www.mouser.com/datasheet/2/334/AS04008CO-R-32837.pdf + +0 +16 +3 +PCM_4ms_Experimental_FP +Speaker_AS04008CO-R_cutout +https://www.mouser.com/datasheet/2/334/AS04008CO-R-32837.pdf + +0 +6 +3 +PCM_4ms_Experimental_FP +XLR-NCJ6FA-V-0-TEST + + +0 +0 +0 +PCM_4ms_Experimental_FP +XLR-TEST + + +0 +8 +4 +PCM_4ms_Faceplate +Faceplate_Hole_Encoder_290 + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Encoder_KnurledShaft_Alpha + +Rotary Encoder RGB +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Encoder_RGB_360 + +Rotary Encoder RGB +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Encoder_RGB_NoBushing + +Rotary Encoder RGB +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Encoder_RGB_WithKnob + +Rotary Encoder RGB +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_FSR_slot + + +0 +0 +0 +PCM_4ms_Faceplate +Faceplate_Hole_Jack_3.5mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Jack_3.5mm_Copper8mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Jack_Barrel_315 + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Jack_Quarter_Inch + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_LED_3mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_LED_Button_5.4mm_With_Mask_Opening + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_LED_Button_7mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_LED_Button_7mm_With_Mask_Opening + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Lightpipe_115 + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Lightpipe_With_Mask_Opening + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Pot_9mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Pot_9mm_Metal_Collar + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Pot_16mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Pot_16mm_Hole8mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Rail_Hole + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Slider_25mm_Slot + + +0 +0 +0 +PCM_4ms_Faceplate +Faceplate_Hole_Spacer_Mount_256 + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_SubMini_Toggle + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_SubMini_Toggle_HoleSize5.5mm + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_Trim_3.175mm_With_Mask_Opening + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Hole_XLR_Quarter_Inch + + +0 +3 +1 +PCM_4ms_Faceplate +Faceplate_Rail_Mount_Slot + + +0 +0 +0 +PCM_4ms_Faceplate +Faceplate_Rail_Mount_Slot-Circular + + +0 +0 +0 +PCM_4ms_Faceplate +Faceplate_Rail_Mount_Slot_Plated + + +0 +1 +1 +PCM_4ms_Faceplate +Faceplate_Slide_Switch_MS2201L6_Nexsun + + +0 +0 +0 +PCM_4ms_Faceplate +Faceplate_Slide_Switch_SS22D06_Runrun + + +0 +0 +0 +PCM_4ms_Faceplate +Pot_10Turn_3590S-2-202L +module 1 pin (ou trou mecanique de percage) +DEV +0 +2 +2 +PCM_4ms_Faceplate +Rail_Connection_4HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_5HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_6HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_8HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_12HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_16HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_20HP + + +0 +1 +1 +PCM_4ms_Faceplate +Rail_Connection_26HP + + +0 +1 +1 +PCM_4ms_Faceplate +Switch_Toggle_Mini_6.35mm_With_Mask_Opening + + +0 +1 +1 +PCM_4ms_Hardware +MountingHole_2-56 +Mounting hole, Befestigungsbohrung, 3mm, No Annular, Kein Restring, +Mounting hole, Befestigungsbohrung, 3mm, No Annular, Kein Restring, +0 +1 +1 +PCM_4ms_Hardware +MountingHole_XXXTAB_AdhesiveBase +Mounting hole, Befestigungsbohrung, 3mm, No Annular, Kein Restring, +Mounting hole, Befestigungsbohrung, 3mm, No Annular, Kein Restring, +0 +1 +1 +PCM_4ms_Inductor +COIL_5030 + + +0 +2 +2 +PCM_4ms_Inductor +COIL_5040 + + +0 +2 +2 +PCM_4ms_Inductor +COIL_5252metric_2020 + + +0 +2 +2 +PCM_4ms_Inductor +COIL_6045 + + +0 +2 +2 +PCM_4ms_Inductor +COIL_SRP1040 + + +0 +2 +2 +PCM_4ms_Inductor +COIL_SRP6540 + + +0 +2 +2 +PCM_4ms_Inductor +COIL_SRU1048 + + +0 +2 +2 +PCM_4ms_Inductor +FB_Axial_8.5x3.5mm +Resitance 3 pas +R +0 +2 +2 +PCM_4ms_Inductor +L_Bourns-SRU1048 +Bourns SRU1048 series SMD inductor, https://www.mouser.com/datasheet/2/54/RU1048-1391431.pdf +Bourns SRU1048 SMD inductor +0 +2 +2 +PCM_4ms_Inductor +L_Bourns_SRN8040 +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf +Inductor +0 +2 +2 +PCM_4ms_Jack +BARRELJACK-PJ064 + + +0 +3 +3 +PCM_4ms_Jack +Barrel_RtAngle_PJ066 + + +0 +3 +3 +PCM_4ms_Jack +Barrel_Vert_PJ064 + + +0 +3 +3 +PCM_4ms_Jack +Barrel_Vert_PJ064_slotted + + +0 +3 +3 +PCM_4ms_Jack +EighthInch_PJ398SM + + +0 +3 +3 +PCM_4ms_Jack +EighthInch_PJ398SM_Alt-GND + + +0 +3 +3 +PCM_4ms_Jack +EighthInch_Stereo_PJ366ST + + +0 +3 +3 +PCM_4ms_Jack +Jack_3.5mm_CUI_SJ-3523-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +3 +3 +PCM_4ms_Jack +QuarterInch_Mono_RtAngle_2Switches_NRJ4HF + + +0 +6 +6 +PCM_4ms_Jack +QuarterInch_Stereo_RtAngle_3Switches_NRJ6HF + + +0 +8 +8 +PCM_4ms_Jack +QuarterInch_Stereo_Vert_2Switches_REAN-NYS232 +Rean 1/4" Enclosed Switched Stereo Jack + +0 +5 +5 +PCM_4ms_Jack +QuarterInch_Stereo_Vert_2Switches_SwitchCraftNYS234 +Switchcraft 1/4" Enclosed Switched Stereo Jack + +0 +5 +5 +PCM_4ms_Jack +QuarterInch_Stereo_Vert_SwitchCraftNYS234-3 +Switchcraft 1/4" Enclosed Switched Stereo Jack + +0 +3 +3 +PCM_4ms_Jack +XLR-NCJ6FA-V-0 + + +0 +8 +4 +PCM_4ms_Jack +XLR-NCJ6FA-V-0-SHORTED + + +0 +8 +4 +PCM_4ms_LED +LED_3mm_C1A2 +LED 3mm round vertical +LED 3mm round vertical +0 +2 +2 +PCM_4ms_LED +LED_3mm_C1A2_Polarity_Indicator +LED 3mm round vertical +LED 3mm round vertical +0 +2 +2 +PCM_4ms_LED +LED_3mm_Dual_3pin_MLS +LED, diameter 3.0mm, 2 pins, diameter 3.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 2 pins diameter 3.0mm 3 pins +0 +3 +3 +PCM_4ms_LED +LED_5mm_RightAngle +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_4ms_LED +LED_0603_1608Metric +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +PCM_4ms_LED +LED_Kingbright_APA3010_3x1.0mm_Horizontal +LED RGB, APA3010, https://www.mouser.com/datasheet/2/216/APA3010SURCK-25319.pdf +LED RGB APA3010 KINGBRIGHT 3x1.0mm +0 +3 +3 +PCM_4ms_LED +LED_PLCC-4 + + +0 +4 +4 +PCM_4ms_Package_DIP +DIP-8pin_TH +8-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +PCM_4ms_Package_DIP +DIP-14_W7.62mm +14-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +14 +14 +PCM_4ms_Package_DIP +DIP-20_W7.62mm +20-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +20 +20 +PCM_4ms_Package_DIP +DIP-28_W7.62mm +28-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +28 +28 +PCM_4ms_Package_DIP +OSD32MP1-BRK +Connector for attaching an OSD32MP1-BRK breakout board +OSD32MP1 STM32MP15x +0 +120 +120 +PCM_4ms_Package_QFP +BGA-176+25_10.0x10.0mm + + +0 +201 +201 +PCM_4ms_Package_QFP +LQFP-32_7x7mm_P0.8mm_ARM +LQFP32: plastic low profile quad flat package; 32 leads; body 7 x 7 x 1.4 mm (see NXP sot358-1_po.pdf and sot358-1_fr.pdf) +QFP 0.8 +0 +32 +32 +PCM_4ms_Package_QFP +LQFP-144_20x20mm_Pitch0.5mm +144-Lead Plastic Low Profile Quad Flatpack (PL) - 20x20x1.40 mm Body [LQFP], 2.00 mm Footprint (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +144 +144 +PCM_4ms_Package_QFP +LQFP-144_20x20mm_Pitch0.5mm_ARM +144-Lead Plastic Low Profile Quad Flatpack (PL) - 20x20x1.40 mm Body [LQFP], 2.00 mm Footprint (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +144 +144 +PCM_4ms_Package_QFP +TFBGA-257_10x10mm_perP0.5_cntrP0.65 + +STM32MP15xxAD +0 +257 +216 +PCM_4ms_Package_QFP +TQFP-32_7x7mm_P0.8mm +32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +32 +32 +PCM_4ms_Package_QFP +Texas-X2QFN-10_1.5x2mm_Pitch0.5mm +Texas X2QFN, 10 Pin, 1.5mm x 2mm, Pitch 0.5mm +Texas X2QFN-10 NoLead +0 +10 +10 +PCM_4ms_Package_QFP +Texas-X2QFN-10_1.5x2mm_Pitch0.5mm_Handsoldering +Texas X2QFN, 10 Pin, 1.5mm x 2mm, Pitch 0.5mm +Texas X2QFN-10 NoLead +0 +10 +10 +PCM_4ms_Package_SOIC +SM-8 + + +0 +8 +8 +PCM_4ms_Package_SOIC +SOIC-8-1EP_3.9x4.9mm_Pitch1.27mm +8-Lead Thermally Enhanced Plastic Small Outline (SE) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf) +SOIC 1.27 +0 +12 +9 +PCM_4ms_Package_SOIC +SOIC-8-1EP_3.9x4.9mm_Pitch1.27mm_HandSolder +8-Lead Thermally Enhanced Plastic Small Outline (SE) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf) +SOIC 1.27 +0 +9 +9 +PCM_4ms_Package_SOIC +SOIC-8_3.9x4.9mm_Pitch1.27mm +8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf) +SOIC 1.27 +0 +8 +8 +PCM_4ms_Package_SOIC +SOIC-8_5.28x4.9mm_Pitch1.27mm +8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf) +SOIC 1.27 +0 +8 +8 +PCM_4ms_Package_SOIC +SOIC-14_3.9x8.65mm_Pitch1.27mm +16-Lead Plastic Small Outline (SL) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf) +SOIC 1.27 +0 +14 +14 +PCM_4ms_Package_SOIC +SOIC-16_3.9x9.9mm_Pitch1.27mm +16-Lead Plastic Small Outline (SL) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf) +SOIC 1.27 +0 +16 +16 +PCM_4ms_Package_SOT +SOT-23 +SOT-23, Standard +SOT-23 +0 +3 +3 +PCM_4ms_Package_SOT +SOT-23-5 +5-pin SOT23 package +SOT-23-5 +0 +5 +5 +PCM_4ms_Package_SOT +SOT-23-THIN-16 + + +0 +16 +16 +PCM_4ms_Package_SOT +SOT-363_SC-70-6 +SOT-363, SC-70-6 +SOT-363 SC-70-6 +0 +6 +6 +PCM_4ms_Package_SOT +SOT-523 + + +0 +3 +3 +PCM_4ms_Package_SOT +SOT-583 + + +0 +8 +8 +PCM_4ms_Package_SOT +SOT23-3_PO123 +SOT-23, Standard +SOT-23 +0 +3 +3 +PCM_4ms_Package_SOT +SOT23-3_PO132 +SOT-23, Standard +SOT-23 +0 +3 +3 +PCM_4ms_Package_SOT +SOT23-3_PO213 +SOT-23, Standard +SOT-23 +0 +3 +3 +PCM_4ms_Package_SOT +SOT23-8 +8-pin SOT-23 package, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf +SOT-23-8 +0 +8 +8 +PCM_4ms_Package_SOT +SOT89-3 +SOT-89-3 +SOT-89-3 +0 +6 +3 +PCM_4ms_Package_SOT +SOT223 +SOT-223 + +0 +4 +4 +PCM_4ms_Package_SOT +TSOT-23-5 +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23-5 +0 +5 +5 +PCM_4ms_Package_SOT +TSOT-23-6 +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf +TSOT-23-6 MK06A TSOT-6 +0 +6 +6 +PCM_4ms_Package_SSOP +HTSSOP-20_4.4x6.5mm_Pitch0.65mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +21 +21 +PCM_4ms_Package_SSOP +MSOP-10_3x3mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +10 +10 +PCM_4ms_Package_SSOP +QSOP-16_3.9x4.9mm_P0.635mm +16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.635 +0 +16 +16 +PCM_4ms_Package_SSOP +SSOP-28_5.3x10.2mm_Pitch0.65mm +28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +28 +28 +PCM_4ms_Package_SSOP +TSOP-54_11.76x22.22mm_Pitch0.8mm +http://download.micron.com/pdf/datasheets/dram/sdram/256MSDRAM.pdf +54-Pin TSOP (400 mil) +0 +54 +54 +PCM_4ms_Package_SSOP +TSSOP-8_4.4x3mm_Pitch0.65mm +8-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +8 +8 +PCM_4ms_Package_SSOP +TSSOP-14_4.4x5mm_P0.65mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +14 +14 +PCM_4ms_Package_SSOP +TSSOP-24_4.4x7.8mm_Pitch0.65mm +TSSOP28: plastic thin shrink small outline package; 24 leads; body width 4.4 mm + +0 +24 +24 +PCM_4ms_Package_SSOP +TSSOP-28_4.4x9.7mm_Pitch0.65mm +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf) +SSOP 0.65 +0 +28 +28 +PCM_4ms_Package_SSOP +U-MAX8 + + +0 +8 +8 +PCM_4ms_Package_SSOP +U-MAX10-EP +µMAX 10 with EPAD +µMAX10 UMAX10 µMAX-10 UMAX-10 EP Extended Pad +0 +11 +11 +PCM_4ms_Package_TO +TO-92_OffsetPin2 +TO-92 leads molded, narrow, drill 0.6mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_4ms_Package_TO +TO-220-3_Horizontal + +TO-220 Horizontal RM 2.54mm +0 +3 +3 +PCM_4ms_Package_TO +TO-220-3_Horizontal_TabPad +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +5 +4 +PCM_4ms_Package_TO +TO-220-3_Horizontal_TabPad_Short +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +5 +5 +PCM_4ms_Package_TO +TO-220-3_Vertical +TO-220, Vertical, RM 2.54mm +TO-220 Vertical RM 2.54mm +0 +3 +3 +PCM_4ms_Package_TO +TO-252-2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +7 +3 +PCM_4ms_Potentiometer +Pot_9mm_DShaft + + +0 +5 +5 +PCM_4ms_Potentiometer +Pot_9mm_Dshaft_Det + + +0 +5 +5 +PCM_4ms_Potentiometer +Pot_9mm_Knurl_Det + + +0 +5 +5 +PCM_4ms_Potentiometer +Pot_9mm_Knurl_NoDet + + +0 +5 +5 +PCM_4ms_Potentiometer +Pot_10Turn_3590S-2-202L +module 1 pin (ou trou mecanique de percage) +DEV +0 +2 +2 +PCM_4ms_Potentiometer +Pot_16mm_21Det_RV16AF-4A + +POT +0 +3 +3 +PCM_4ms_Potentiometer +Pot_16mm_CtrDet_RV16AF-4A + +POT POTENTIOMETER +0 +3 +3 +PCM_4ms_Potentiometer +Pot_16mm_NoDet_RV16AF-4A + +POT POTENTIOMETER +0 +3 +3 +PCM_4ms_Potentiometer +Pot_Slider_LED_20mm_RA2045F + + +0 +6 +6 +PCM_4ms_Potentiometer +Pot_Trim_7x6.6mm_T73YE + + +0 +3 +3 +PCM_4ms_Potentiometer +Pot_Trim_Round_6mm + + +0 +3 +3 +PCM_4ms_Potentiometer +Pot_Trim_Round_10mm + + +0 +3 +3 +PCM_4ms_Potentiometer +Pot_Trim_SMT_PVZ3A + + +0 +3 +3 +PCM_4ms_Potentiometer +Pot_Trim_SMT_TC33X + + +0 +3 +3 +PCM_4ms_Potentiometer +Pot_Wheel_Dual_TH_AlpsRK10J1xA +http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RKJ1/RK14J12A0A0K.html +Pot wheel Thumb dual +0 +7 +5 +PCM_4ms_Potentiometer +Potentiometer_Alpha_RV112_Dual_Vert +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +8 +8 +PCM_4ms_Potentiometer +Potentiometer_Alpha_RV112_Dual_Vert_Knurled +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +8 +8 +PCM_4ms_Potentiometer +Potentiometer_Alps_RK09L_Double_Vertical +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +8 +8 +PCM_4ms_Resistor +R_0402 +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +PCM_4ms_Resistor +R_0603 +Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf) +resistor 0603 +0 +2 +2 +PCM_4ms_Resistor +R_0805_2012Metric +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +resistor +0 +2 +2 +PCM_4ms_Resistor +R_1206_3216Metric +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +PCM_4ms_Resistor +R_Array_BUS_SIP6 +8-pin Resistor SIP pack +R +0 +6 +6 +PCM_4ms_Resistor +R_Array_BUS_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +PCM_4ms_Resistor +R_Array_BUS_SIP10 +8-pin Resistor SIP pack +R +0 +10 +10 +PCM_4ms_Resistor +R_Array_ISO_SIP6 +6-pin Resistor SIP pack +R +0 +6 +6 +PCM_4ms_Resistor +R_Array_ISO_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +PCM_4ms_Resistor +R_Array_ISO_SIP10 +8-pin Resistor SIP pack +R +0 +10 +10 +PCM_4ms_Resistor +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resitance 3 pas +R +0 +2 +2 +PCM_4ms_Sensor +LDR_RtAngle_P300mil +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +PCM_4ms_SolderJumper +JUMPER_SMD_1x2 +SOLDER JUMPER +SOLDER JUMPER +0 +2 +2 +PCM_4ms_SolderJumper +JUMPER_SMD_1x2_tiny +SOLDER JUMPER +SOLDER JUMPER +0 +2 +2 +PCM_4ms_SolderJumper +JUMPER_SMD_1x2_tiny_shorted +SOLDER JUMPER +SOLDER JUMPER +0 +2 +2 +PCM_4ms_SolderJumper +JUMPER_SMD_1x3 +SOLDER JUMPER +SOLDER JUMPER +0 +3 +3 +PCM_4ms_SolderJumper +Net_Tie_0.16mm_6mil +Net Tie, 0.16mm/6mil trace +net tie 0.16mm/6mil trace +0 +2 +2 +PCM_4ms_Switch +Button_LED_PB61303 + + +0 +8 +8 +PCM_4ms_Switch +Button_PB20B + + +0 +4 +4 +PCM_4ms_Switch +Button_RgbLED_SPST_PB615303HL-7mm + + +0 +8 +8 +PCM_4ms_Switch +Button_RgbLED_SPST_TC002 + + +0 +8 +8 +PCM_4ms_Switch +Button_RgbLED_SPST_TC002_SMD + + +0 +8 +8 +PCM_4ms_Switch +Button_Tact_PTS540 + + +0 +4 +4 +PCM_4ms_Switch +Button_Tact_Sqkg + + +0 +4 +4 +PCM_4ms_Switch +Slide_Switch_DP3T_RtAngle_ESwitch_2308A + + +0 +10 +8 +PCM_4ms_Switch +Slide_Switch_Runrun_SS22D06 + + +0 +12 +8 +PCM_4ms_Switch +Slide_Switch_SPDT_Nexsun_MS2201L6 + + +0 +10 +7 +PCM_4ms_Switch +Switch_Toggle_DPDT_SubMini +Through hole straight pin header, 2x03, 2.54mm pitch, double rows +Through hole pin header THT 2x03 2.54mm double row +0 +6 +6 +PCM_4ms_Switch +Switch_Toggle_SPDT_Mini_SolderLug + + +0 +3 +3 +PCM_4ms_Switch +Switch_Toggle_SPDT_SubMini + + +0 +3 +3 +PCM_4ms_Switch +Switch_Toggle_SPST_SubMini + + +0 +2 +2 +PCM_4ms_Symbol +4msLogo_3.8x1.7mm + + +0 +0 +0 +PCM_4ms_Symbol +4msLogo_15.5x6.6mm + + +0 +0 +0 +PCM_4ms_Symbol +4msLogo_Inverted_3.9x1.7mm + + +0 +0 +0 +PCM_4ms_Symbol +4msLogo_Inverted_88x40mm + + +0 +0 +0 +PCM_4ms_TestPoint +TestPoint_Pad_04 + + +0 +1 +1 +PCM_4ms_TestPoint +TestPoint_Pad_06 + + +0 +1 +1 +PCM_4ms_TestPoint +TestPoint_Pad_10 + + +0 +1 +1 +PCM_4ms_TestPoint +TestPoint_WireHole +module 1 pin (ou trou mecanique de percage) +DEV +0 +1 +1 +PCM_Capacitor_SMD_AKL +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor +0 +4 +2 +PCM_Capacitor_SMD_AKL +C_0201_0603Metric_Pad0.64x0.40mm +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_AKL +C_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_AKL +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0402_1005Metric_Pad0.74x0.62mm +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0402_1005Metric_Pad0.74x0.62mm_HandSolder +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0504_1310Metric_Pad0.83x1.28mm +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0504_1310Metric_Pad0.83x1.28mm_HandSolder +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0603_1608Metric_Pad1.05x0.95mm +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0603_1608Metric_Pad1.08x0.95mm +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0603_1608Metric_Pad1.08x0.95mm_HandSolder +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0805_2012Metric_Pad1.15x1.40mm +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0805_2012Metric_Pad1.18x1.45mm +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_0805_2012Metric_Pad1.18x1.45mm_HandSolder +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor +0 +4 +2 +PCM_Capacitor_SMD_AKL +C_01005_0402Metric_Pad0.57x0.30mm +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_AKL +C_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_AKL +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1206_3216Metric_Pad1.33x1.80mm +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1206_3216Metric_Pad1.33x1.80mm_HandSolder +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1206_3216Metric_Pad1.42x1.75mm +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1210_3225Metric_Pad1.33x2.70mm +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1210_3225Metric_Pad1.33x2.70mm_HandSolder +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1210_3225Metric_Pad1.42x2.65mm +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1806_4516Metric +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1806_4516Metric_Pad1.57x1.80mm +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1806_4516Metric_Pad1.57x1.80mm_HandSolder +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1812_4532Metric +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1812_4532Metric_Pad1.30x3.40mm +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1812_4532Metric_Pad1.57x3.40mm +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1812_4532Metric_Pad1.57x3.40mm_HandSolder +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1825_4564Metric +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1825_4564Metric_Pad1.57x6.80mm +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1825_4564Metric_Pad1.57x6.80mm_HandSolder +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1825_4564Metric_Pad1.88x6.70mm +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_1825_4564Metric_Pad1.88x6.70mm_HandSolder +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2010_5025Metric +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2010_5025Metric_Pad1.52x2.65mm +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2220_5650Metric +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2220_5650Metric_Pad1.97x5.40mm +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2220_5650Metric_Pad1.97x5.40mm_HandSolder +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2225_5664Metric +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2225_5664Metric_Pad1.80x6.60mm +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2225_5664Metric_Pad1.80x6.60mm_HandSolder +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2512_6332Metric +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2512_6332Metric_Pad1.52x3.35mm +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2816_7142Metric +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2816_7142Metric_Pad3.20x4.45mm +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_3640_9110Metric +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_3640_9110Metric_Pad2.10x10.45mm +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_3640_9110Metric_Pad2.10x10.45mm_HandSolder +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Murata_TZB4-A +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZB4 TZB4-A +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Murata_TZB4-B +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZB4 TZB4-A +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Murata_TZC3 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZC3 +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Murata_TZR1 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZR1 +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Murata_TZW4 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZW4 +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Murata_TZY2 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZY2 +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Sprague-Goodman_SGC3 +trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf, Alternate KiCad Library + Sprague Goodman SGC3 +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Voltronics_JN +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JN +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Voltronics_JQ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JQ +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Voltronics_JR +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JR +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Voltronics_JV +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JV +0 +2 +2 +PCM_Capacitor_SMD_AKL +C_Trimmer_Voltronics_JZ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JR +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor +0 +4 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0201_0603Metric_Pad0.64x0.40mm +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0402_1005Metric_Pad0.74x0.62mm +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0504_1310Metric_Pad0.83x1.28mm +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0603_1608Metric_Pad1.05x0.95mm +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0603_1608Metric_Pad1.08x0.95mm +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0805_2012Metric_Pad1.15x1.40mm +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_0805_2012Metric_Pad1.18x1.45mm +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor +0 +4 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_01005_0402Metric_Pad0.57x0.30mm +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1206_3216Metric_Pad1.33x1.80mm +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1206_3216Metric_Pad1.42x1.75mm +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1210_3225Metric_Pad1.33x2.70mm +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1210_3225Metric_Pad1.42x2.65mm +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1806_4516Metric +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1806_4516Metric_Pad1.57x1.80mm +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1812_4532Metric +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1812_4532Metric_Pad1.30x3.40mm +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1812_4532Metric_Pad1.57x3.40mm +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1825_4564Metric +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1825_4564Metric_Pad1.57x6.80mm +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_1825_4564Metric_Pad1.88x6.70mm +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2010_5025Metric +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2010_5025Metric_Pad1.52x2.65mm +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2220_5650Metric +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2220_5650Metric_Pad1.97x5.40mm +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2225_5664Metric +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2225_5664Metric_Pad1.80x6.60mm +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2512_6332Metric +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2512_6332Metric_Pad1.52x3.35mm +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2816_7142Metric +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_2816_7142Metric_Pad3.20x4.45mm +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_3640_9110Metric +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_3640_9110Metric_Pad2.10x10.45mm +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Murata_TZB4-A +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZB4 TZB4-A +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Murata_TZB4-B +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZB4 TZB4-A +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Murata_TZC3 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZC3 +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Murata_TZR1 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZR1 +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Murata_TZW4 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZW4 +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Murata_TZY2 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZY2 +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Sprague-Goodman_SGC3 +trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf, Alternate KiCad Library + Sprague Goodman SGC3 +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Voltronics_JN +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JN +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Voltronics_JQ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JQ +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Voltronics_JR +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JR +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Voltronics_JV +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JV +0 +2 +2 +PCM_Capacitor_SMD_Handsoldering_AKL +C_Trimmer_Voltronics_JZ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JR +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library +capacitor electrolytic +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor +0 +4 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0201_0603Metric_Pad0.64x0.40mm +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0402_1005Metric_Pad0.74x0.62mm +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0504_1310Metric_Pad0.83x1.28mm +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0603_1608Metric_Pad1.05x0.95mm +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0603_1608Metric_Pad1.08x0.95mm +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0805_2012Metric_Pad1.15x1.40mm +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_0805_2012Metric_Pad1.18x1.45mm +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor +0 +4 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_01005_0402Metric_Pad0.57x0.30mm +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +capacitor handsolder +0 +4 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1206_3216Metric_Pad1.33x1.80mm +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1206_3216Metric_Pad1.42x1.75mm +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1210_3225Metric_Pad1.33x2.70mm +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1210_3225Metric_Pad1.42x2.65mm +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1806_4516Metric +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1806_4516Metric_Pad1.57x1.80mm +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1812_4532Metric +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1812_4532Metric_Pad1.30x3.40mm +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1812_4532Metric_Pad1.57x3.40mm +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1825_4564Metric +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1825_4564Metric_Pad1.57x6.80mm +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_1825_4564Metric_Pad1.88x6.70mm +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2010_5025Metric +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2010_5025Metric_Pad1.52x2.65mm +Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2220_5650Metric +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2220_5650Metric_Pad1.97x5.40mm +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2225_5664Metric +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2225_5664Metric_Pad1.80x6.60mm +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2512_6332Metric +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2512_6332Metric_Pad1.52x3.35mm +Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2816_7142Metric +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_2816_7142Metric_Pad3.20x4.45mm +Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_3640_9110Metric +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_3640_9110Metric_Pad2.10x10.45mm +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library +capacitor handsolder +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm, Alternate KiCad Library +capacitor electrolyic nonpolar +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Murata_TZB4-A +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZB4 TZB4-A +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Murata_TZB4-B +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZB4 TZB4-A +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Murata_TZC3 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZC3 +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Murata_TZR1 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZR1 +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Murata_TZW4 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZW4 +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Murata_TZY2 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library + Murata TZY2 +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Sprague-Goodman_SGC3 +trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf, Alternate KiCad Library + Sprague Goodman SGC3 +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Voltronics_JN +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JN +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Voltronics_JQ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JQ +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Voltronics_JR +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JR +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Voltronics_JV +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JV +0 +2 +2 +PCM_Capacitor_SMD_US_Handsoldering_AKL +C_Trimmer_Voltronics_JZ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library + Voltronics JR +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D8.0mm_W2.5mm_P5.00mm +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, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L15mm_W15mm_P10x10mm +C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C rect 15x15 10x10 +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L17mm_W8.5mm_P12.50mm +C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L36.5mm_W15mm_P32.50mm +C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm +C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm +C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm +C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm +C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole +C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole +0 +2 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +3 +2 +PCM_Capacitor_THT_AKL +C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D8.0mm_W2.5mm_P5.00mm +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, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L15mm_W15mm_P10x10mm +C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C rect 15x15 10x10 +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L17mm_W8.5mm_P12.50mm +C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L36.5mm_W15mm_P32.50mm +C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm +C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm +C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm +C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm +C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole +C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole +0 +2 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +3 +2 +PCM_Capacitor_THT_AKL_Double +C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D8.0mm_W2.5mm_P5.00mm +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, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L15mm_W15mm_P10x10mm +C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C rect 15x15 10x10 +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L17mm_W8.5mm_P12.50mm +C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L36.5mm_W15mm_P32.50mm +C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm +C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm +C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm +C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm +C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole +C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole +0 +2 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +3 +2 +PCM_Capacitor_THT_US_AKL +C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support +0 +6 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported +CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support +0 +8 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support +0 +4 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support +0 +6 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 +CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported +CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 +CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported +CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library +CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support +0 +8 +3 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D8.0mm_W2.5mm_P5.00mm +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, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L15mm_W15mm_P10x10mm +C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C rect 15x15 10x10 +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L17mm_W8.5mm_P12.50mm +C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L36.5mm_W15mm_P32.50mm +C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library +C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole +C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm +C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm +C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm +C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole +C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library +C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm +C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole +C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole +0 +2 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +3 +2 +PCM_Capacitor_THT_US_AKL_Double +C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm +C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library +C trimmer GKU pitch 5mm width 5mm length 5.6mm +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-1608-08_AVX-J +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-1608-10_AVX-L +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-2012-12_Kemet-R +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-2012-15_AVX-P +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-10_Kemet-I +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-12_Kemet-S +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-18_Kemet-A +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-12_Kemet-T +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-15_AVX-H +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-21_Kemet-B +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-15_Kemet-U +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-20_AVX-F +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-28_Kemet-C +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7132-20_AVX-U +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7132-28_AVX-C +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-15_AVX-R +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-20_AVX-M +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-28_AVX-M +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-38_AVX-R +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-15_Kemet-W +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-20_Kemet-V +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-30_AVX-N +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-31_Kemet-D +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-40_Kemet-Y +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-43_Kemet-X +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7360-38_Kemet-E +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm_HandSolder +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7361-38_AVX-V +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7361-438_AVX-U +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_AKL +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-1608-08_AVX-J +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-1608-10_AVX-L +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-2012-12_Kemet-R +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-2012-15_AVX-P +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3216-10_Kemet-I +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3216-12_Kemet-S +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3216-18_Kemet-A +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3528-12_Kemet-T +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3528-15_AVX-H +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3528-21_Kemet-B +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-6032-15_Kemet-U +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-6032-20_AVX-F +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-6032-28_Kemet-C +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7132-20_AVX-U +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7132-28_AVX-C +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-15_AVX-R +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-20_AVX-M +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-28_AVX-M +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-38_AVX-R +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-15_Kemet-W +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-20_Kemet-V +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-30_AVX-N +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-31_Kemet-D +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-40_Kemet-Y +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-43_Kemet-X +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7360-38_Kemet-E +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7361-38_AVX-V +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7361-438_AVX-U +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-1608-08_AVX-J +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-1608-10_AVX-L +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-2012-12_Kemet-R +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-2012-15_AVX-P +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3216-10_Kemet-I +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3216-12_Kemet-S +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3216-18_Kemet-A +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3528-12_Kemet-T +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3528-15_AVX-H +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3528-21_Kemet-B +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-6032-15_Kemet-U +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-6032-20_AVX-F +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-6032-28_Kemet-C +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7132-20_AVX-U +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7132-28_AVX-C +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-15_AVX-R +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-20_AVX-M +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-28_AVX-M +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-38_AVX-R +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-15_Kemet-W +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-20_Kemet-V +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-30_AVX-N +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-31_Kemet-D +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-40_Kemet-Y +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-43_Kemet-X +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7360-38_Kemet-E +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7361-38_AVX-V +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7361-438_AVX-U +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library +capacitor tantalum +0 +2 +2 +PCM_Crystal_AKL +Crystal_AT310_D3.0mm_L10.0mm_Horizontal +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +5 +3 +PCM_Crystal_AKL +Crystal_AT310_D3.0mm_L10.0mm_Vertical +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +5 +3 +PCM_Crystal_AKL +Crystal_C26-LF_D2.1mm_L6.5mm_Vertical +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +5 +3 +PCM_Crystal_AKL +Crystal_C38-LF_D3.0mm_L8.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_DS10_D1.0mm_L4.3mm_Horizontal +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +5 +3 +PCM_Crystal_AKL +Crystal_DS10_D1.0mm_L4.3mm_Vertical +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_DS15_D1.5mm_L5.0mm_Horizontal +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +5 +3 +PCM_Crystal_AKL +Crystal_DS15_D1.5mm_L5.0mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_DS26_D2.0mm_L6.0mm_Horizontal +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +5 +3 +PCM_Crystal_AKL +Crystal_DS26_D2.0mm_L6.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC18-U_Horizontal +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC18-U_Horizontal_1EP_style1 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC18-U_Horizontal_1EP_style2 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC18-U_Vertical +Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystalHC-18/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC33-U_Horizontal +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC33-U_Horizontal_1EP_style1 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC33-U_Horizontal_1EP_style2 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC33-U_Vertical +Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystalHC-33/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC35-U +Crystal, Quarz, HC35/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/TO71xx.pdf, Alternate KiCad Library +Crystal Quarz HC35/U +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC49-4H_Vertical +Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystalHC-49-4H +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC49-U-3Pin_Vertical +Crystal THT HC-49/U, 3pin-version, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC49-U_Horizontal +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC49-U_Horizontal_1EP_style1 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC49-U_Horizontal_1EP_style2 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC49-U_Vertical +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC50_Horizontal +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC50_Horizontal_1EP_style1 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC50_Horizontal_1EP_style2 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC50_Vertical +Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystalHC-50 +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC51-U_Vertical +Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystalHC-51/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC51_Horizontal +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC51_Horizontal_1EP_style1 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC51_Horizontal_1EP_style2 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC52-6mm_Horizontal +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC52-6mm_Horizontal_1EP_style1 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC52-6mm_Horizontal_1EP_style2 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC52-6mm_Vertical +Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC52-8mm_Horizontal +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC52-8mm_Horizontal_1EP_style1 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC52-8mm_Horizontal_1EP_style2 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC52-8mm_Vertical +Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC52-U-3Pin_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystalHC-52/U +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC52-U_Horizontal +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_HC52-U_Horizontal_1EP_style1 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL +Crystal_HC52-U_Horizontal_1EP_style2 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL +Crystal_HC52-U_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal HC-52/U +0 +2 +2 +PCM_Crystal_AKL +Crystal_Round_D1.0mm_Vertical +Crystal THT DS10 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_Round_D1.5mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_Round_D2.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_Round_D3.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_8.7x3.8mm_P5.50mm +SMD Crystal, 8.7x3.8mm plactic package with 5.5mm pin spacing, https://www.tme.eu/Document/c3b87d1b0b54566e1a28c0895ecac49d/LFXTAL003000REEL.pdf, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_0603-2Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_0603-2Pin_6.0x3.5mm_BigPads +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_0603-4Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_0603-4Pin_6.0x3.5mm_BigPads +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_2012-2Pin_2.0x1.2mm +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_2012-2Pin_2.0x1.2mm_BigPads +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_2016-4Pin_2.0x1.6mm +SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_2520-4Pin_2.5x2.0mm +SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_3215-2Pin_3.2x1.5mm +SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf, Alternate KiCad Library +SMD SMT Crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_3225-4Pin_3.2x2.5mm +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_3225-4Pin_3.2x2.5mm_BigPads +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_5032-2Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_5032-2Pin_5.0x3.2mm_BigPads +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_5032-4Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_7050-2Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_7050-2Pin_7.0x5.0mm_BigPads +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_7050-4Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_BigPads +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm +SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm +Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf, Alternate KiCad Library +SMD SMT crystal Abracon ABM10 +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm +Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm +http://www.ecsxtal.com/store/pdf/CSM-3X.pdf, Alternate KiCad Library +Crystal CSM-3X +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_BigPads +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_BigPads +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_BigPads +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_BigPads +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_BigPads +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_BigPads +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_BigPads +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_BigPads +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_FrontierElectronics_FM206 +SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf, Alternate KiCad Library +['FM206'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_SMD_G8-2Pin_3.2x1.5mm +SMD Crystal G8, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_G8-2Pin_3.2x1.5mm_BigPads +SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_HC49-SD +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_HC49-SD_BigPads +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_HC49-SD_HandSoldering +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_BigPads +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_BigPads +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_BigPads +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_BigPads +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_BigPads +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm +SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_BigPads +SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering +SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_MS1V-T1K +SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf, Alternate KiCad Library +['MS1V-T1K'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_SMD_MicroCrystal_MS3V-T1R +SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf, Alternate KiCad Library +['MS3V-T1R'] +0 +3 +3 +PCM_Crystal_AKL +Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm +SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_BigPads +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_BigPads +crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_BigPads +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_BigPads +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_BigPads +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_BigPads +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_BigPads +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_BigPads +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_BigPads +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_BigPads +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_BigPads +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_TXC_7A-2Pin_5x3.2mm +SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_BigPads +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_AKL +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_BigPads +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm +http://www.txccrystal.com/images/pdf/ax-automotive.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_AKL +Resonator-2Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL +Resonator-2Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL +Resonator-2Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL +Resonator-2Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL +Resonator-3Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator-3Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator-3Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0mm^2 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD-3Pin_7.2x3.0mm +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +2 +2 +PCM_Crystal_AKL +Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm_BigPads +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm_HandSoldering +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +2 +2 +PCM_Crystal_AKL +Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library +SMD SMT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm_BigPads +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library +SMD SMT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm_HandSoldering +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library +SMD SMT ceramic resonator filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm_BigPads +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm_HandSoldering +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm_BigPads +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm_BigPads +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_AKL +Resonator_muRata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxG, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=8.0x3.0mm^2 package, package length=8.0mm, package width=3.0mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter CSTLSxxxG +0 +3 +3 +PCM_Crystal_AKL +Resonator_muRata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxX, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=5.5x3.0mm^2 package, package length=5.5mm, package width=3.0mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter CSTLSxxxX +0 +3 +3 +PCM_Crystal_AKL +Resonator_muRata_DSN6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSN6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter DSN6 +0 +3 +3 +PCM_Crystal_AKL +Resonator_muRata_DSS6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSS6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins, Alternate KiCad Library +THT ceramic resonator filter DSS6 +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_AT310_D3.0mm_L10.0mm_Horizontal +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_AT310_D3.0mm_L10.0mm_Vertical +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library +['AT310'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 +Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library +['C26-LF'] +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 +Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library +['C38-LF'] +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_DS10_D1.0mm_L4.3mm_Horizontal +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS10'] +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_DS15_D1.5mm_L5.0mm_Horizontal +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS15'] +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_DS26_D2.0mm_L6.0mm_Horizontal +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library +['DS26'] +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC18-U_Horizontal +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC18-U_Horizontal_1EP_style1 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC18-U_Horizontal_1EP_style2 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC18-U_Vertical +Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystalHC-18/U +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC33-U_Horizontal +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC33-U_Horizontal_1EP_style1 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC33-U_Horizontal_1EP_style2 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC33-U_Vertical +Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library +THT crystalHC-33/U +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC49-4H_Vertical +Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystalHC-49-4H +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC49-U_Horizontal +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC49-U_Horizontal_1EP_style1 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC49-U_Horizontal_1EP_style2 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC49-U_Vertical +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC50_Horizontal +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC50_Horizontal_1EP_style1 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC50_Horizontal_1EP_style2 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC50_Vertical +Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystalHC-50 +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC51-U_Vertical +Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystalHC-51/U +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC51_Horizontal +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC51_Horizontal_1EP_style1 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC51_Horizontal_1EP_style2 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-6mm_Horizontal +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC52-6mm_Horizontal_1EP_style1 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-6mm_Horizontal_1EP_style2 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-6mm_Vertical +Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC52-8mm_Horizontal +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC52-8mm_Horizontal_1EP_style1 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-8mm_Horizontal_1EP_style2 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-8mm_Vertical +Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystalHC-49/U +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC52-U_Horizontal +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +2 +2 +PCM_Crystal_AKL_Double +Crystal_HC52-U_Horizontal_1EP_style1 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +3 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-U_Horizontal_1EP_style2 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal +0 +5 +3 +PCM_Crystal_AKL_Double +Crystal_HC52-U_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library +THT crystal HC-52/U +0 +2 +2 +PCM_Crystal_AKL_Double +Resonator-2Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL_Double +Resonator-2Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL_Double +Resonator-2Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_AKL_Double +Resonator-2Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins, Alternate KiCad Library +THT ceramic resonator filter +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_8.7x3.8mm_P5.50mm +SMD Crystal, 8.7x3.8mm plactic package with 5.5mm pin spacing, https://www.tme.eu/Document/c3b87d1b0b54566e1a28c0895ecac49d/LFXTAL003000REEL.pdf, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_0603-2Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_0603-2Pin_6.0x3.5mm_BigPads +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_0603-4Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_0603-4Pin_6.0x3.5mm_BigPads +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_2012-2Pin_2.0x1.2mm +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_2012-2Pin_2.0x1.2mm_BigPads +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_2016-4Pin_2.0x1.6mm +SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_2520-4Pin_2.5x2.0mm +SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_3215-2Pin_3.2x1.5mm +SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf, Alternate KiCad Library +SMD SMT Crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_3225-4Pin_3.2x2.5mm +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_3225-4Pin_3.2x2.5mm_BigPads +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_5032-2Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_5032-2Pin_5.0x3.2mm_BigPads +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_5032-4Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_7050-2Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_7050-2Pin_7.0x5.0mm_BigPads +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_7050-4Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_BigPads +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm +SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm +Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf, Alternate KiCad Library +SMD SMT crystal Abracon ABM10 +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm +Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm +http://www.ecsxtal.com/store/pdf/CSM-3X.pdf, Alternate KiCad Library +Crystal CSM-3X +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_BigPads +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_BigPads +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_BigPads +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_BigPads +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_BigPads +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_BigPads +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_BigPads +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_BigPads +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_FrontierElectronics_FM206 +SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf, Alternate KiCad Library +['FM206'] +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_G8-2Pin_3.2x1.5mm +SMD Crystal G8, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_G8-2Pin_3.2x1.5mm_BigPads +SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_HC49-SD +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_HC49-SD_BigPads +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_BigPads +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_BigPads +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_BigPads +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_BigPads +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_BigPads +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm +SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_BigPads +SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_MS1V-T1K +SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf, Alternate KiCad Library +['MS1V-T1K'] +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_MicroCrystal_MS3V-T1R +SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf, Alternate KiCad Library +['MS3V-T1R'] +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm +SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_BigPads +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_BigPads +crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_BigPads +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_BigPads +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_BigPads +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_BigPads +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_BigPads +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_BigPads +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_BigPads +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_BigPads +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_BigPads +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_TXC_7A-2Pin_5x3.2mm +SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_BigPads +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +4 +4 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_BigPads +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library +SMD SMT crystal hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm +http://www.txccrystal.com/images/pdf/ax-automotive.pdf, Alternate KiCad Library +SMD SMT crystal +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD-3Pin_7.2x3.0mm +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD-3Pin_7.2x3.0mm_BigPads +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm_BigPads +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +2 +2 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library +SMD SMT ceramic resonator filter +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm_BigPads +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library +SMD SMT ceramic resonator filter +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm_BigPads +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm_BigPads +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter +0 +3 +3 +PCM_Crystal_Handsoldering_AKL +Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm_BigPads +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +PCM_Diode_SMD_AKL +D_0201_0603Metric +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +diode 0201 +0 +4 +2 +PCM_Diode_SMD_AKL +D_0201_0603Metric_TVS +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 0201 TVS +0 +4 +2 +PCM_Diode_SMD_AKL +D_0402_1005Metric +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0402 +0 +2 +2 +PCM_Diode_SMD_AKL +D_0402_1005Metric_TVS +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 0402 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_0603_1608Metric +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 +0 +2 +2 +PCM_Diode_SMD_AKL +D_0603_1608Metric_Castellated +Diode SMD 0603 (1608 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_0603_1608Metric_Pad1.05x0.95mm +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_0603_1608Metric_TVS +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 0603 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_0805_2012Metric +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 +0 +2 +2 +PCM_Diode_SMD_AKL +D_0805_2012Metric_Castellated +Diode SMD 0805 (2012 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_0805_2012Metric_Pad1.15x1.40mm +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_0805_2012Metric_TVS +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Bidirectional zener or TVS, Alternate KiCad Library +diode 0805 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_0805_2012Metric_Zener +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Zener, Alternate KiCad Library +diode 0805 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_01005_0402Metric +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +diode 01005 +0 +4 +2 +PCM_Diode_SMD_AKL +D_01005_0402Metric_TVS +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 01005 TVS +0 +4 +2 +PCM_Diode_SMD_AKL +D_1206_3216Metric +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 +0 +2 +2 +PCM_Diode_SMD_AKL +D_1206_3216Metric_Castellated +Diode SMD 1206 (3216 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_1206_3216Metric_Pad1.42x1.75mm +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1206_3216Metric_TVS +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1206 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_1206_3216Metric_Zener +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 1206 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_1210_3225Metric +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 +0 +2 +2 +PCM_Diode_SMD_AKL +D_1210_3225Metric_Castellated +Diode SMD 1210 (3225 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_1210_3225Metric_Pad1.42x2.65mm +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1210_3225Metric_TVS +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1210 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_1210_3225Metric_Zener +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 1210 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_1806_4516Metric +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 +0 +2 +2 +PCM_Diode_SMD_AKL +D_1806_4516Metric_Castellated +Diode SMD 1806 (4516 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_1806_4516Metric_Pad1.57x1.80mm +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1806_4516Metric_Pad1.57x1.80mm_HandSolder +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1806_4516Metric_TVS +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1806 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_1806_4516Metric_Zener +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Zener, Alternate KiCad Library +diode 1806 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_1812_4532Metric +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 +0 +2 +2 +PCM_Diode_SMD_AKL +D_1812_4532Metric_Castellated +Diode SMD 1812 (4532 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_1812_4532Metric_Pad1.30x3.40mm +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_1812_4532Metric_TVS +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1812 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_1812_4532Metric_Zener +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Zener, Alternate KiCad Library +diode 1812 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_2010_5025Metric +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 +0 +2 +2 +PCM_Diode_SMD_AKL +D_2010_5025Metric_Castellated +Diode SMD 2010 (5025 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_2010_5025Metric_Pad1.52x2.65mm +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2010_5025Metric_TVS +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2010 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_2010_5025Metric_Zener +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 2010 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_2114_3652Metric +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 +0 +2 +2 +PCM_Diode_SMD_AKL +D_2114_3652Metric_Castellated +Diode SMD 2114 (3652 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_2114_3652Metric_Pad1.85x3.75mm +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2114_3652Metric_Pad1.85x3.75mm_HandSolder +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2114_3652Metric_TVS +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2114 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_2114_3652Metric_Zener +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library +diode 2114 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_2512_6332Metric +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 +0 +2 +2 +PCM_Diode_SMD_AKL +D_2512_6332Metric_Castellated +Diode SMD 2512 (6332 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_2512_6332Metric_Pad1.52x3.35mm +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2512_6332Metric_TVS +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2512 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_2512_6332Metric_Zener +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 2512 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_2816_7142Metric +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 +0 +2 +2 +PCM_Diode_SMD_AKL +D_2816_7142Metric_Castellated +Diode SMD 2816 (7142 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_2816_7142Metric_Pad3.20x4.45mm +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_2816_7142Metric_TVS +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2816 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_2816_7142Metric_Zener +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Zener, Alternate KiCad Library +diode 2816 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_3220_8050Metric +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 +0 +2 +2 +PCM_Diode_SMD_AKL +D_3220_8050Metric_Castellated +Diode SMD 3220 (8050 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 castellated +0 +2 +2 +PCM_Diode_SMD_AKL +D_3220_8050Metric_Pad2.65x5.15mm +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_3220_8050Metric_Pad2.65x5.15mm_HandSolder +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 handsolder +0 +2 +2 +PCM_Diode_SMD_AKL +D_3220_8050Metric_TVS +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 3220 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_3220_8050Metric_Zener +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library +diode 3220 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF +Diode, MELF,,, Alternate KiCad Library +Diode MELF +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF-RM10_Universal +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole,, Alternate KiCad Library +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF-RM10_Universal_Handsoldering +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole,, Alternate KiCad Library +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF_BigPads +Diode MELF Handsoldering, Alternate KiCad Library +Diode MELF Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF_Handsoldering +Diode MELF Handsoldering, Alternate KiCad Library +Diode MELF Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF_TVS +Diode, MELF, Bidirerctional zener or TVS, Alternate KiCad Library +Diode MELF TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_MELF_Zener +Diode, MELF, Zener, Alternate KiCad Library +Diode MELF Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_MicroMELF +Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode +0 +2 +2 +PCM_Diode_SMD_AKL +D_MicroMELF_BigPads +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode +0 +2 +2 +PCM_Diode_SMD_AKL +D_MicroMELF_Handsoldering +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode +0 +2 +2 +PCM_Diode_SMD_AKL +D_MicroMELF_TVS +Diode, MicroMELF, Bidirectional zener or TVS, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_MicroMELF_Zener +Diode, MicroMELF, Zener, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_MicroSMP +MicroSMP (DO-219AD) Diode SMD Footprint, https://www.tme.eu/Document/bb412acf78155f7171e3c753949ff078/mse1p.pdf, Alternate KiCAD Library +MicroSMP DO-219AD +0 +2 +2 +PCM_Diode_SMD_AKL +D_MiniMELF +Diode Mini-MELF, Alternate KiCad Library +Diode Mini-MELF +0 +2 +2 +PCM_Diode_SMD_AKL +D_MiniMELF_BigPads +Diode Mini-MELF Handsoldering, Alternate KiCad Library +Diode Mini-MELF Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_MiniMELF_Handsoldering +Diode Mini-MELF Handsoldering, Alternate KiCad Library +Diode Mini-MELF Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_MiniMELF_TVS +Diode Mini-MELF, Bidirectional zener or TVS, Alternate KiCad Library +Diode Mini-MELF TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_MiniMELF_Zener +Diode Mini-MELF, Zener, Alternate KiCad Library +Diode Mini-MELF Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_PowerDI-5 +PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf, Alternate KiCad Library +PowerDI diode vishay +0 +7 +2 +PCM_Diode_SMD_AKL +D_PowerDI-123 +http://www.diodes.com/_files/datasheets/ds30497.pdf, Alternate KiCad Library +PowerDI diode vishay +0 +2 +2 +PCM_Diode_SMD_AKL +D_Powermite2_AK +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library +PowerMite2 +0 +6 +2 +PCM_Diode_SMD_AKL +D_Powermite2_KA +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library +PowerMite2 +0 +6 +2 +PCM_Diode_SMD_AKL +D_Powermite3 +Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340), Alternate KiCad Library +PowerMite3 +0 +7 +3 +PCM_Diode_SMD_AKL +D_Powermite_AK +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library +Powermite +0 +6 +2 +PCM_Diode_SMD_AKL +D_Powermite_KA +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library +Powermite +0 +6 +2 +PCM_Diode_SMD_AKL +D_QFN_3.3x3.3mm_P0.65mm +QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf), Alternate KiCad Library +diode qfn 3.3 +0 +3 +2 +PCM_Diode_SMD_AKL +D_SC-80 +JEITA SC-80, Alternate KiCad Library +SC-80 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SC-80_BigPads +JEITA SC-80, Alternate KiCad Library +SC-80 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SC-80_HandSoldering +JEITA SC-80, Alternate KiCad Library +SC-80 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SC-80_TVS +JEITA SC-80, Bidirectional zener or TVS, Alternate KiCad Library +SC-80 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SC-80_Zener +JEITA SC-80, Zener, Alternate KiCad Library +SC-80 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA +Diode SMA (DO-214AC), Alternate KiCad Library +Diode SMA (DO-214AC) +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA-SMB_Universal +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, Alternate KiCad Library +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA-SMB_Universal_Handsoldering +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, Alternate KiCad Library +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMAFL +SMA Flat Lead Diode Package, https://www.centralsemi.com/PDFS/CASE/SMAFLPD.PDF, Alternate KiCAD Library +SMAFL SMA flat lead diode +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA_BigPads +Diode SMA (DO-214AC) Handsoldering, Alternate KiCad Library +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA_Handsoldering +Diode SMA (DO-214AC) Handsoldering, Alternate KiCad Library +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA_TVS +Diode SMA (DO-214AC), Bidirectional zener or TVS, Alternate KiCad Library +Diode SMA (DO-214AC) TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMA_Zener +Diode SMA (DO-214AC), Zener, Alternate KiCad Library +Diode SMA (DO-214AC) Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB +Diode SMB (DO-214AA), Alternate KiCad Library +Diode SMB (DO-214AA) +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB-SMC_Universal +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, Alternate KiCad Library +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB-SMC_Universal_Handsoldering +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, Alternate KiCad Library +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMBFL +SMB Flat Lead Package, https://www.centralsemi.com/PDFS/CASE/SMBFLPD.PDF, Alternate KiCAD Library +SMBFL SMB flat lead diode +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB_BigPads +Diode SMB (DO-214AA) Handsoldering, Alternate KiCad Library +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB_Handsoldering +Diode SMB (DO-214AA) Handsoldering, Alternate KiCad Library +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB_Modified +Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf), Alternate KiCad Library +Diode SMB (DO-214AA) +0 +3 +3 +PCM_Diode_SMD_AKL +D_SMB_TVS +Diode SMB (DO-214AA), Bidirectional zener or TVS, Alternate KiCad Library +Diode SMB (DO-214AA) TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMB_Zener +Diode SMB (DO-214AA), Zener, Alternate KiCad Library +Diode SMB (DO-214AA) Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC +Diode SMC (DO-214AB), Alternate KiCad Library +Diode SMC (DO-214AB) +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC-RM10_Universal +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole, Alternate KiCad Library +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC-RM10_Universal_Handsoldering +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole, Alternate KiCad Library +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC_BigPads +Diode SMC (DO-214AB) Handsoldering, Alternate KiCad Library +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC_Handsoldering +Diode SMC (DO-214AB) Handsoldering, Alternate KiCad Library +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC_TVS +Diode SMC (DO-214AB), Bidirectional zener or TVS, Alternate KiCad Library +Diode SMC (DO-214AB) TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMC_Zener +Diode SMC (DO-214AB), Zener, Alternate KiCad Library +Diode SMC (DO-214AB) Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMF +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Alternate KiCad Library +Diode SMF (DO-214AB) +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMF_TVS +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Bidirectional zener or TVS, Alternate KiCad Library +Diode SMF (DO-214AB) TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMF_Zener +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Zener, Alternate KiCad Library +Diode SMF (DO-214AB) Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SMP +SMP Diode Package (DO220AA), https://www.tme.eu/Document/aa5a89b017df4ae26aca1b4f51120387/au1p.pdf, Alternate KiCAD Library +SMP diode DO220AA +0 +6 +2 +PCM_Diode_SMD_AKL +D_SMP_Reverse +SMP Diode Package (DO220AA), https://www.tme.eu/Document/aa5a89b017df4ae26aca1b4f51120387/au1p.pdf, Alternate KiCAD Library +SMP diode DO220AA +0 +6 +2 +PCM_Diode_SMD_AKL +D_SOD-110 +SOD-110, Alternate KiCad Library +SOD-110 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-110_Zener +SOD-110, Zener, Alternate KiCad Library +SOD-110 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-123 +SOD-123, Alternate KiCad Library +SOD-123 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-123F +D_SOD-123F, Alternate KiCad Library +D_SOD-123F +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-123F_TVS +D_SOD-123F, Bidirectional zener or TVS, Alternate KiCad Library +D_SOD-123F TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-123F_Zener +D_SOD-123F, Zener, Alternate KiCad Library +D_SOD-123F Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-123_TVS +SOD-123, Bidirectional zener or TVS, Alternate KiCad Library +SOD-123 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-123_Zener +SOD-123, Zener, Alternate KiCad Library +SOD-123 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-128 +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Alternate KiCad Library +D_SOD-128 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-128_TVS +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Bidirectional zener or TVS, Alternate KiCad Library +D_SOD-128 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-128_Zener +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Zener, Alternate KiCad Library +D_SOD-128 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323 +SOD-323, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323F +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Alternate KiCad Library +SOD-323F +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323F_TVS +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Bidirectional zener or TVS, Alternate KiCad Library +SOD-323F TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323F_Zener +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Zener, Alternate KiCad Library +SOD-323F Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323_BigPads +SOD-323, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323_HandSoldering +SOD-323, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323_TVS +SOD-323, Bidirectional zener or TVS, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-323_Zener +SOD-323, Zener, Alternate KiCad Library +SOD-323 Zener +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-523 +http://www.diodes.com/datasheets/ap02001.pdf p.144, Alternate KiCad Library +Diode SOD523 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-523_TVS +http://www.diodes.com/datasheets/ap02001.pdf p.144, Bidirectional zener or TVS, Alternate KiCad Library +Diode SOD523 TVS +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-882_DFN1006-2 +SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library +SOD-882 DFN1006-2 diode smd +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-882_DFN1006-2_TVS +SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library +SOD-882 DFN1006-2 diode smd +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-923 +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Alternate KiCad Library +Diode SOD923 +0 +2 +2 +PCM_Diode_SMD_AKL +D_SOD-923_TVS +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Bidirectional zener or TVS, Alternate KiCad Library +Diode SOD923, Alternate KiCad Library +0 +2 +2 +PCM_Diode_SMD_AKL +D_TUMD2 +ROHM - TUMD2, Alternate KiCad Library +TUMD2 +0 +2 +2 +PCM_Diode_SMD_AKL +Diode_Bridge_Bourns_CD-DF4xxS +8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf, Alternate KiCad Library +Surface Mount Bridge Rectifier Diode +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_Diotec_ABS +SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf, Alternate KiCad Library +ABS MBLS +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm +SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf, Alternate KiCad Library +Diotec MicroDil diode bridge +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_Diotec_SO-DIL-Slim +SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf, Alternate KiCad Library +DFS SO-DIL Slim +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_MBF +SMD Diode Bridge, Diodes MBF, https://www.diodes.com/assets/Package-Files/MBF.pdf, Alternate KiCAD Library +SMD diode bridge mbf +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_MBS +SMD Diode Bridge, Diodes MBS, https://www.diodes.com/assets/Package-Files/MBS.pdf, Alternate KiCAD Library +SMD diode bridge rectifier mbs +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_Vishay_DFS +SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library +DFS +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_Vishay_DFSFlat +SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf, Alternate KiCad Library +DFS +0 +4 +4 +PCM_Diode_SMD_AKL +Diode_Bridge_Vishay_MBLS +SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library +DFS +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +D_0201_0603Metric +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +diode 0201 +0 +4 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0201_0603Metric_TVS +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 0201 TVS +0 +4 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0402_1005Metric +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0402 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0402_1005Metric_TVS +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 0402 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0603_1608Metric +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0603_1608Metric_Castellated +Diode SMD 0603 (1608 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0603_1608Metric_Pad1.05x0.95mm +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 0603 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0603_1608Metric_TVS +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 0603 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0805_2012Metric +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0805_2012Metric_Castellated +Diode SMD 0805 (2012 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0805_2012Metric_Pad1.15x1.40mm +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +diode 0805 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0805_2012Metric_TVS +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Bidirectional zener or TVS, Alternate KiCad Library +diode 0805 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_0805_2012Metric_Zener +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Zener, Alternate KiCad Library +diode 0805 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_01005_0402Metric +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +diode 01005 +0 +4 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_01005_0402Metric_TVS +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 01005 TVS +0 +4 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1206_3216Metric +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1206_3216Metric_Castellated +Diode SMD 1206 (3216 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1206_3216Metric_Pad1.42x1.75mm +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1206 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1206_3216Metric_TVS +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1206 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1206_3216Metric_Zener +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 1206 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1210_3225Metric +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1210_3225Metric_Castellated +Diode SMD 1210 (3225 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1210_3225Metric_Pad1.42x2.65mm +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 1210 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1210_3225Metric_TVS +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1210 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1210_3225Metric_Zener +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 1210 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1806_4516Metric +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1806_4516Metric_Castellated +Diode SMD 1806 (4516 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1806_4516Metric_Pad1.57x1.80mm +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +diode 1806 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1806_4516Metric_TVS +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1806 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1806_4516Metric_Zener +Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Zener, Alternate KiCad Library +diode 1806 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1812_4532Metric +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1812_4532Metric_Castellated +Diode SMD 1812 (4532 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1812_4532Metric_Pad1.30x3.40mm +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +diode 1812 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1812_4532Metric_TVS +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 1812 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_1812_4532Metric_Zener +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Zener, Alternate KiCad Library +diode 1812 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2010_5025Metric +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2010_5025Metric_Castellated +Diode SMD 2010 (5025 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2010_5025Metric_Pad1.52x2.65mm +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2010 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2010_5025Metric_TVS +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2010 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2010_5025Metric_Zener +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 2010 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2114_3652Metric +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2114_3652Metric_Castellated +Diode SMD 2114 (3652 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2114_3652Metric_Pad1.85x3.75mm +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 2114 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2114_3652Metric_TVS +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2114 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2114_3652Metric_Zener +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library +diode 2114 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2512_6332Metric +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2512_6332Metric_Castellated +Diode SMD 2512 (6332 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2512_6332Metric_Pad1.52x3.35mm +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +diode 2512 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2512_6332Metric_TVS +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2512 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2512_6332Metric_Zener +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library +diode 2512 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2816_7142Metric +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2816_7142Metric_Castellated +Diode SMD 2816 (7142 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2816_7142Metric_Pad3.20x4.45mm +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +diode 2816 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2816_7142Metric_TVS +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 2816 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_2816_7142Metric_Zener +Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Zener, Alternate KiCad Library +diode 2816 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_3220_8050Metric +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_3220_8050Metric_Castellated +Diode SMD 3220 (8050 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 castellated +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_3220_8050Metric_Pad2.65x5.15mm +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library +diode 3220 handsolder +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_3220_8050Metric_TVS +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library +diode 3220 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_3220_8050Metric_Zener +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library +diode 3220 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MELF +Diode, MELF,,, Alternate KiCad Library +Diode MELF +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MELF-RM10_Universal +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole,, Alternate KiCad Library +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MELF_BigPads +Diode MELF Handsoldering, Alternate KiCad Library +Diode MELF Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MELF_TVS +Diode, MELF, Bidirerctional zener or TVS, Alternate KiCad Library +Diode MELF TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MELF_Zener +Diode, MELF, Zener, Alternate KiCad Library +Diode MELF Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MicroMELF +Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MicroMELF_BigPads +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MicroMELF_TVS +Diode, MicroMELF, Bidirectional zener or TVS, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MicroMELF_Zener +Diode, MicroMELF, Zener, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library +MicroMELF Diode Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MicroSMP +MicroSMP (DO-219AD) Diode SMD Footprint, https://www.tme.eu/Document/bb412acf78155f7171e3c753949ff078/mse1p.pdf, Alternate KiCAD Library +MicroSMP DO-219AD +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MiniMELF +Diode Mini-MELF, Alternate KiCad Library +Diode Mini-MELF +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MiniMELF_BigPads +Diode Mini-MELF Handsoldering, Alternate KiCad Library +Diode Mini-MELF Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MiniMELF_Diac +Diode Mini-MELF, Diac Symbol, Alternate KiCad Library +Diode Mini-MELF +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MiniMELF_TVS +Diode Mini-MELF, Bidirectional zener or TVS, Alternate KiCad Library +Diode Mini-MELF TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_MiniMELF_Zener +Diode Mini-MELF, Zener, Alternate KiCad Library +Diode Mini-MELF Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_PowerDI-5 +PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf, Alternate KiCad Library +PowerDI diode vishay +0 +7 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_PowerDI-123 +http://www.diodes.com/_files/datasheets/ds30497.pdf, Alternate KiCad Library +PowerDI diode vishay +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_Powermite2_AK +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library +PowerMite2 +0 +6 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_Powermite2_KA +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library +PowerMite2 +0 +6 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_Powermite3 +Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340), Alternate KiCad Library +PowerMite3 +0 +7 +3 +PCM_Diode_SMD_Handsoldering_AKL +D_Powermite_AK +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library +Powermite +0 +6 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_Powermite_KA +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library +Powermite +0 +6 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_QFN_3.3x3.3mm_P0.65mm +QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf), Alternate KiCad Library +diode qfn 3.3 +0 +3 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SC-80 +JEITA SC-80, Alternate KiCad Library +SC-80 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SC-80_BigPads +JEITA SC-80, Alternate KiCad Library +SC-80 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SC-80_TVS +JEITA SC-80, Bidirectional zener or TVS, Alternate KiCad Library +SC-80 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SC-80_Zener +JEITA SC-80, Zener, Alternate KiCad Library +SC-80 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMA +Diode SMA (DO-214AC), Alternate KiCad Library +Diode SMA (DO-214AC) +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMA-SMB_Universal +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, Alternate KiCad Library +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMAFL +SMA Flat Lead Diode Package, https://www.centralsemi.com/PDFS/CASE/SMAFLPD.PDF, Alternate KiCAD Library +SMAFL SMA flat lead diode +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMA_BigPads +Diode SMA (DO-214AC) Handsoldering, Alternate KiCad Library +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMA_TVS +Diode SMA (DO-214AC), Bidirectional zener or TVS, Alternate KiCad Library +Diode SMA (DO-214AC) TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMA_Zener +Diode SMA (DO-214AC), Zener, Alternate KiCad Library +Diode SMA (DO-214AC) Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMB +Diode SMB (DO-214AA), Alternate KiCad Library +Diode SMB (DO-214AA) +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMB-SMC_Universal +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, Alternate KiCad Library +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMBFL +SMB Flat Lead Package, https://www.centralsemi.com/PDFS/CASE/SMBFLPD.PDF, Alternate KiCAD Library +SMBFL SMB flat lead diode +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMB_BigPads +Diode SMB (DO-214AA) Handsoldering, Alternate KiCad Library +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMB_Modified +Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf), Alternate KiCad Library +Diode SMB (DO-214AA) +0 +3 +3 +PCM_Diode_SMD_Handsoldering_AKL +D_SMB_TVS +Diode SMB (DO-214AA), Bidirectional zener or TVS, Alternate KiCad Library +Diode SMB (DO-214AA) TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMB_Zener +Diode SMB (DO-214AA), Zener, Alternate KiCad Library +Diode SMB (DO-214AA) Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMC +Diode SMC (DO-214AB), Alternate KiCad Library +Diode SMC (DO-214AB) +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMC-RM10_Universal +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole, Alternate KiCad Library +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMC_BigPads +Diode SMC (DO-214AB) Handsoldering, Alternate KiCad Library +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMC_TVS +Diode SMC (DO-214AB), Bidirectional zener or TVS, Alternate KiCad Library +Diode SMC (DO-214AB) TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMC_Zener +Diode SMC (DO-214AB), Zener, Alternate KiCad Library +Diode SMC (DO-214AB) Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMF +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Alternate KiCad Library +Diode SMF (DO-214AB) +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMF_TVS +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Bidirectional zener or TVS, Alternate KiCad Library +Diode SMF (DO-214AB) TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMF_Zener +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Zener, Alternate KiCad Library +Diode SMF (DO-214AB) Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SMP +SMP Diode Package (DO220AA), https://www.tme.eu/Document/aa5a89b017df4ae26aca1b4f51120387/au1p.pdf, Alternate KiCAD Library +SMP diode DO220AA +0 +6 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-110 +SOD-110, Alternate KiCad Library +SOD-110 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-110_Zener +SOD-110, Zener, Alternate KiCad Library +SOD-110 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-123 +SOD-123, Alternate KiCad Library +SOD-123 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-123F +D_SOD-123F, Alternate KiCad Library +D_SOD-123F +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-123F_TVS +D_SOD-123F, Bidirectional zener or TVS, Alternate KiCad Library +D_SOD-123F TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-123F_Zener +D_SOD-123F, Zener, Alternate KiCad Library +D_SOD-123F Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-123_TVS +SOD-123, Bidirectional zener or TVS, Alternate KiCad Library +SOD-123 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-123_Zener +SOD-123, Zener, Alternate KiCad Library +SOD-123 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-128 +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Alternate KiCad Library +D_SOD-128 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-128_TVS +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Bidirectional zener or TVS, Alternate KiCad Library +D_SOD-128 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-128_Zener +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Zener, Alternate KiCad Library +D_SOD-128 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323 +SOD-323, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323F +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Alternate KiCad Library +SOD-323F +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323F_TVS +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Bidirectional zener or TVS, Alternate KiCad Library +SOD-323F TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323F_Zener +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Zener, Alternate KiCad Library +SOD-323F Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323_BigPads +SOD-323, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323_HandSoldering +SOD-323, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323_TVS +SOD-323, Bidirectional zener or TVS, Alternate KiCad Library +SOD-323 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-323_Zener +SOD-323, Zener, Alternate KiCad Library +SOD-323 Zener +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-523 +http://www.diodes.com/datasheets/ap02001.pdf p.144, Alternate KiCad Library +Diode SOD523 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-523_TVS +http://www.diodes.com/datasheets/ap02001.pdf p.144, Bidirectional zener or TVS, Alternate KiCad Library +Diode SOD523 TVS +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-882_DFN1006-2 +SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library +SOD-882 DFN1006-2 diode smd +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-882_DFN1006-2_TVS +SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library +SOD-882 DFN1006-2 diode smd +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-923 +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Alternate KiCad Library +Diode SOD923 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_SOD-923_TVS +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Bidirectional zener or TVS, Alternate KiCad Library +Diode SOD923, Alternate KiCad Library +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +D_TUMD2 +ROHM - TUMD2, Alternate KiCad Library +TUMD2 +0 +2 +2 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Bourns_CD-DF4xxS +8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf, Alternate KiCad Library +Surface Mount Bridge Rectifier Diode +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Diotec_ABS +SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf, Alternate KiCad Library +ABS MBLS +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm +SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf, Alternate KiCad Library +Diotec MicroDil diode bridge +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Diotec_SO-DIL-Slim +SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf, Alternate KiCad Library +DFS SO-DIL Slim +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_MBF +SMD Diode Bridge, Diodes MBF, https://www.diodes.com/assets/Package-Files/MBF.pdf, Alternate KiCAD Library +SMD diode bridge mbf +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_MBS +SMD Diode Bridge, Diodes MBS, https://www.diodes.com/assets/Package-Files/MBS.pdf, Alternate KiCAD Library +SMD diode bridge rectifier mbs +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Vishay_DFS +SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library +DFS +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Vishay_DFSFlat +SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf, Alternate KiCad Library +DFS +0 +4 +4 +PCM_Diode_SMD_Handsoldering_AKL +Diode_Bridge_Vishay_MBLS +SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library +DFS +0 +4 +4 +PCM_Diode_THT_AKL +D_5KPW_P7.62mm_Vertical_AnodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P7.62mm_Vertical_KathodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P7.62mm_Vertical_TVS +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P12.70mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P12.70mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P15.24mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P15.24mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P20.32mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P20.32mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P25.40mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P25.40mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P30.48mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P30.48mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P35.56mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P35.56mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P40.64mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KPW_P40.64mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P7.62mm_Vertical_AnodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P7.62mm_Vertical_KathodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P7.62mm_Vertical_TVS +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P10.16mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P10.16mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P12.70mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P12.70mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P15.24mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P15.24mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P20.32mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P20.32mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P25.40mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P25.40mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P30.48mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P30.48mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P35.56mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P35.56mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P40.64mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5KP_P40.64mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp_Zener +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp_Zener +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P5.08mm_Vertical_TVS +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P10.16mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P10.16mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P10.16mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P12.70mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P12.70mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P12.70mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P15.24mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P15.24mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P15.24mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P20.32mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P20.32mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P20.32mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P25.40mm_Horizontal +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P25.40mm_Horizontal_TVS +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P25.40mm_Horizontal_Zener +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P30.48mm_Horizontal +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P30.48mm_Horizontal_TVS +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_CASE-017AA_P30.48mm_Horizontal_Zener +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P5.08mm_Vertical_AnodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P5.08mm_Vertical_KathodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P5.08mm_Vertical_TVS +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P10.16mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P10.16mm_Horizontal_TVS +Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P12.70mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P12.70mm_Horizontal_TVS +Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P15.24mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P15.24mm_Horizontal_TVS +Diode, 5W series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P20.32mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P20.32mm_Horizontal_TVS +Diode, 5W series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P25.40mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P25.40mm_Horizontal_TVS +Diode, 5W series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P30.48mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_5W_P30.48mm_Horizontal_TVS +Diode, 5W series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_7.3x22_P7.62mm_Vertical_AnodeUp +Diode, 7.3mm x 22mm body size, Axial, Vertical, pin pitch=7.62mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Vertical pin pitch 7.62mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_7.3x22_P7.62mm_Vertical_KathodeUp +Diode, 7.3mm x 22mm body size, Axial, Vertical, pin pitch=7.62mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Vertical pin pitch 7.62mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_7.3x22_P25.40mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=25.40mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 25.40mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_7.3x22_P30.48mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=30.48mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 30.48mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_7.3x22_P35.56mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=35.56mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 35.56mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_7.3x22_P40.64mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=40.64mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 40.64mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P2.54mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P2.54mm_Vertical_AnodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P2.54mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P2.54mm_Vertical_KathodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P2.54mm_Vertical_TVS +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P5.08mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P5.08mm_Vertical_AnodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P5.08mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P5.08mm_Vertical_KathodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P5.08mm_Vertical_TVS +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P7.62mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P7.62mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P7.62mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P10.16mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P10.16mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P10.16mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P12.70mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P12.70mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P12.70mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P15.24mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P15.24mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P15.24mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P20.32mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P20.32mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P20.32mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P25.40mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_A-405_P30.48mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P7.62mm_Vertical_AnodeUp +Diode, CASE-194-04, Axial, Vertical, pin pitch=7.62mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Vertical pin pitch 7.62mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P7.62mm_Vertical_KathodeUp +Diode, CASE-194-04, Axial, Vertical, pin pitch=7.62mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Vertical pin pitch 7.62mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P12.70mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 12.70mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P15.24mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 15.24mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P20.32mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 20.32mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P25.40mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 25.40mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_CASE-194_P30.48mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 30.48mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P2.54mm_Vertical_AnodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 2.54mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P2.54mm_Vertical_KathodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 2.54mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P5.08mm_Vertical_AnodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 5.08mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P5.08mm_Vertical_KathodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 5.08mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P10.16mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P12.70mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 12.70mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P15.24mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P20.32mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P25.40mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-7_DO-204AA_P30.48mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P2.54mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P2.54mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P3.81mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P3.81mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P3.81mm_Vertical_TVS +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P5.08mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P5.08mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P5.08mm_Vertical_TVS +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P10.16mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P10.16mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P10.16mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P12.70mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P12.70mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P12.70mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P15.24mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P15.24mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P15.24mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P20.32mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P20.32mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P20.32mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P25.40mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P25.40mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P25.40mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P30.48mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P30.48mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-15_P30.48mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P5.08mm_Vertical_AnodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P5.08mm_Vertical_KathodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P5.08mm_Vertical_TVS +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P12.70mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P12.70mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P12.70mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P15.24mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P15.24mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P15.24mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P20.32mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P20.32mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P20.32mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P25.40mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P25.40mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P25.40mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P30.48mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P30.48mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-27_P30.48mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P7.62mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P7.62mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P10.16mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P10.16mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P12.70mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P12.70mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P15.24mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P15.24mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P20.32mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P20.32mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P25.40mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-34_SOD68_P25.40mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P3.81mm_Vertical_Diac +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P5.08mm_Vertical_Diac +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P7.62mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P7.62mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P7.62mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P10.16mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P10.16mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P10.16mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P12.70mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P12.70mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P12.70mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P15.24mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P15.24mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P15.24mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P20.32mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P20.32mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P20.32mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P25.40mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P25.40mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-35_SOD27_P25.40mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P3.81mm_Vertical_TVS +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P5.08mm_Vertical_TVS +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P7.62mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P7.62mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P7.62mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P10.16mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P10.16mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P10.16mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P12.70mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P12.70mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P12.70mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P15.24mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P15.24mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P15.24mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P20.32mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P20.32mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P20.32mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P25.40mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P25.40mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P25.40mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P30.48mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P30.48mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-41_SOD81_P30.48mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P3.81mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P3.81mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P5.08mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P5.08mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P5.08mm_Vertical_TVS +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P12.70mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P12.70mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P12.70mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P15.24mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P15.24mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P15.24mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P20.32mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P20.32mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P20.32mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P25.40mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P25.40mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P25.40mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P30.48mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P30.48mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P30.48mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P35.56mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P35.56mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AD_P35.56mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P3.81mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P3.81mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P3.81mm_Vertical_TVS +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P5.08mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P5.08mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P5.08mm_Vertical_TVS +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P12.70mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P12.70mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P12.70mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P15.24mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P15.24mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P15.24mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P20.32mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P20.32mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P20.32mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P25.40mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P25.40mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P25.40mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P30.48mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P30.48mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P30.48mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P35.56mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P35.56mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201AE_P35.56mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P3.81mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P3.81mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P3.81mm_Vertical_TVS +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P5.08mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P5.08mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P5.08mm_Vertical_TVS +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P12.70mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P12.70mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P12.70mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P15.24mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P15.24mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P15.24mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P20.32mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P20.32mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P20.32mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P25.40mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P25.40mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P25.40mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P30.48mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P30.48mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P30.48mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P35.56mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P35.56mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_DO-201_P35.56mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P7.62mm_Vertical_AnodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P7.62mm_Vertical_AnodeUp_Zener +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P7.62mm_Vertical_KathodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P7.62mm_Vertical_KathodeUp_Zener +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P7.62mm_Vertical_TVS +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P12.70mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P12.70mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P12.70mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P15.24mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P15.24mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P15.24mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P20.00mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P20.00mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P20.00mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P25.40mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P25.40mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P25.40mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P30.48mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P30.48mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P30.48mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P35.56mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P35.56mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P35.56mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P40.64mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_P600_R-6_P40.64mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-23 +Diode, SOD-23, Old and obsolete plastic diode package, Do not confuse with SOT-23 , https://www.web-bcs.com/pdf/Tf/BA/BA178.pdf, Alternate KiCad Library +Diode SOD-23 +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P5.08mm_Vertical_AnodeUp +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P5.08mm_Vertical_AnodeUp_Zener +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P5.08mm_Vertical_KathodeUp +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P5.08mm_Vertical_KathodeUp_Zener +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P7.62mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P7.62mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P10.16mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P10.16mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P12,70mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P12,70mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P12.70mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P12.70mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P15.24mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P15.24mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P20.32mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P20.32mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P25.40mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P25.40mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P30.48mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-57_P30.48mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P5.08mm_Vertical_AnodeUp +Diode, SOD-61A series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.9*2.5mm^2, ,https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Vertical pin pitch 5.08mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P5.08mm_Vertical_KathodeUp +Diode, SOD-61A series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.9*2.5mm^2, ,https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Vertical pin pitch 5.08mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P10.16mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 10.16mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P12.70mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 12.70mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P15.24mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 15.24mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P20.32mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 20.32mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P25.40mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 25.40mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61A_P30.48mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 30.48mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61_P5.08mm_Vertical_AnodeUp +Diode, SOD-61 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11.5*3mm^2, ,https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Vertical pin pitch 5.08mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61_P5.08mm_Vertical_KathodeUp +Diode, SOD-61 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11.5*3mm^2, ,https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Vertical pin pitch 5.08mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61_P15.24mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 15.24mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61_P20.32mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 20.32mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61_P25.40mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 25.40mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-61_P30.48mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 30.48mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P5.08mm_Vertical_AnodeUp +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P5.08mm_Vertical_AnodeUp_Zener +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P5.08mm_Vertical_KathodeUp +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P5.08mm_Vertical_KathodeUp_Zener +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P7.62mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P7.62mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P10.16mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P10.16mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P12.70mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P12.70mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P15.24mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P15.24mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P20.32mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P20.32mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P25.40mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P25.40mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P30.48mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_SOD-64_P30.48mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P2.54mm_Vertical_AnodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P2.54mm_Vertical_KathodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P5.08mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P5.08mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P7.62mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P7.62mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P10.16mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P10.16mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P12.70mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P12.70mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P15.24mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P15.24mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P20.32mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P20.32mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P25.40mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +D_T-1_P25.40mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL +Diode_Bridge_3F_35x25x5.5mm_P7.5mm +Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library +diode bridge rectifier three phase 3F +0 +5 +5 +PCM_Diode_THT_AKL +Diode_Bridge_3F_35x25x5.5mm_P7.5mm_B +Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library +diode bridge rectifier three phase 3F +0 +5 +5 +PCM_Diode_THT_AKL +Diode_Bridge_3F_40x21.5x5.4mm_P7.5mm +Three Phase Rectifier Bridge, 40x21.5x5.4mm Pin Pitch 7.5mm, https://www.tme.eu/Document/610b0e9a98397aeaef704f0ed736f58e/DBI25-xxP.pdf, Alternate KiCAD Library +diode bridge rectifier three phase 3F DBI +0 +5 +5 +PCM_Diode_THT_AKL +Diode_Bridge_15.1x15.1x6.3mm_P10.9mm +Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xxS +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_15.2x15.2x6.3mm_P10.9mm +Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf +Diode Bridge KBPC6xx +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_15.7x15.7x6.3mm_P10.8mm +Single phase bridge rectifier case 15.7x15.7 +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_16.7x16.7x6.3mm_P10.8mm +Single phase bridge rectifier case 16.7x16.7 +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm_B +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_19.0x19.0x6.8mm_P12.7mm +Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xx +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_28.6x28.6x7.3mm_P5.08mm_Vertical +Single phase bridge rectifier case 28.6x28.6mm, Vertical mount, pitch 5.08mm, see https://www.tme.eu/Document/c6b90344b8f3d76b02c7159a1dcbbfbb/BR15xL_ser.pdf +Rectifier Bridge Square 28.6x26.8mm vertical +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm +Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf +Diode Bridge KBPCxxxxWP +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm +Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf +Diotec rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_DIP-4_W5.08mm_P2.54mm +4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf +DIL DIP PDIP 5.08mm 2.54 +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_DIP-4_W7.62mm_P5.08mm +4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf +DIL DIP PDIP 5.08mm 7.62mm 300mil +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_GBJ +GBJ rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +GBJ rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_GBJL +GBJL rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +GBJL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_GBJS +GBJS rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +GBJS rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_KBJ +KBJ rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +KBJ rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_KBJL +KBJL rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +KBJL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_KBP +KBP rectifier package, 3.81mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +KBP rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Round_D8.9mm +4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF +diode bridge 8.9mm 8.85mm WOB pitch 5.08mm +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Round_D9.0mm +4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf +diode bridge 9.0mm 8.85mm WOB pitch 5.0mm +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Round_D9.8mm +4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf +diode bridge 9.8mm WOG pitch 5.08mm +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Vishay_GBL +Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf +Vishay GBL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Vishay_GBU +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Vishay_KBL +Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf +Vishay KBL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Vishay_KBPC1 +Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Vishay_KBPC6 +Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL +Diode_Bridge_Vishay_KBU +Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf +Vishay KBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +D_5KPW_P7.62mm_Vertical_AnodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P7.62mm_Vertical_KathodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P7.62mm_Vertical_TVS +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P12.70mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P12.70mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P15.24mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P15.24mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P20.32mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P20.32mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P25.40mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P25.40mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P30.48mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P30.48mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P35.56mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P35.56mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P40.64mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KPW_P40.64mm_Horizontal_TVS +Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P7.62mm_Vertical_AnodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P7.62mm_Vertical_KathodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P7.62mm_Vertical_TVS +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P10.16mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P10.16mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P12.70mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P12.70mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P15.24mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P15.24mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P20.32mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P20.32mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P25.40mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P25.40mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P30.48mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P30.48mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P35.56mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P35.56mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P40.64mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5KP_P40.64mm_Horizontal_TVS +Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp_Zener +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp_Zener +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P5.08mm_Vertical_TVS +Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P10.16mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P10.16mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P10.16mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P12.70mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P12.70mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P12.70mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P15.24mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P15.24mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P15.24mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P20.32mm_Horizontal +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P20.32mm_Horizontal_TVS +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P20.32mm_Horizontal_Zener +Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P25.40mm_Horizontal +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P25.40mm_Horizontal_TVS +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P25.40mm_Horizontal_Zener +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P30.48mm_Horizontal +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P30.48mm_Horizontal_TVS +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_5W_CASE-017AA_P30.48mm_Horizontal_Zener +Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library +Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_7.3x22_P7.62mm_Vertical_AnodeUp +Diode, 7.3mm x 22mm body size, Axial, Vertical, pin pitch=7.62mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Vertical pin pitch 7.62mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_7.3x22_P7.62mm_Vertical_KathodeUp +Diode, 7.3mm x 22mm body size, Axial, Vertical, pin pitch=7.62mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Vertical pin pitch 7.62mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_7.3x22_P25.40mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=25.40mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 25.40mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_7.3x22_P30.48mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=30.48mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 30.48mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_7.3x22_P35.56mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=35.56mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 35.56mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_7.3x22_P40.64mm_Horizontal +Diode, 7.3mm x 22mm body size, Axial, Horizontal, pin pitch=40.64mm, https://www.tme.eu/Document/88eb08765dfdbcb7fde87e4b3c72eaf5/by4.pdf, Alternate KiCad Library +Diode Axial Horizontal pin pitch 40.64mm length 22mm diameter 7.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P2.54mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P2.54mm_Vertical_AnodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P2.54mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P2.54mm_Vertical_KathodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P2.54mm_Vertical_TVS +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P5.08mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P5.08mm_Vertical_AnodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P5.08mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P5.08mm_Vertical_KathodeUp_Zener +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P5.08mm_Vertical_TVS +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P7.62mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P7.62mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P7.62mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P10.16mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P10.16mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P10.16mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P12.70mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P12.70mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P12.70mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P15.24mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P15.24mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P15.24mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P20.32mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P20.32mm_Horizontal_TVS +Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P20.32mm_Horizontal_Zener +Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P25.40mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_A-405_P30.48mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library +Diode A-405 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P7.62mm_Vertical_AnodeUp +Diode, CASE-194-04, Axial, Vertical, pin pitch=7.62mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Vertical pin pitch 7.62mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P7.62mm_Vertical_KathodeUp +Diode, CASE-194-04, Axial, Vertical, pin pitch=7.62mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Vertical pin pitch 7.62mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P12.70mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 12.70mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P15.24mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 15.24mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P20.32mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 20.32mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P25.40mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 25.40mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_CASE-194_P30.48mm_Horizontal +Diode, CASE-194, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=6.25*8.69mm^2, , https://www.mouser.pl/datasheet/2/308/MR750_D-1811774.pdf, Alternate KiCad Library +Diode CASE-194 Axial Horizontal pin pitch 30.48mm length 6.25mm diameter 8.69mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P2.54mm_Vertical_AnodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 2.54mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P2.54mm_Vertical_KathodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 2.54mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P5.08mm_Vertical_AnodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 5.08mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P5.08mm_Vertical_KathodeUp +Diode, DO-7, DO-204AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Vertical pin pitch 5.08mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P10.16mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P12.70mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 12.70mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P15.24mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P20.32mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P25.40mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-7_DO-204AA_P30.48mm_Horizontal +Diode, DO-7, DO-204AA, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*2.72mm^2, , http://njsemi.com/datasheets/1N4500.pdf, Alternate KiCad Library +Diode DO-7 DO-204AA Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 2.72mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P2.54mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P2.54mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P3.81mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P3.81mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P3.81mm_Vertical_TVS +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P5.08mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P5.08mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P5.08mm_Vertical_TVS +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P10.16mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P10.16mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P10.16mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P12.70mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P12.70mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P12.70mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P15.24mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P15.24mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P15.24mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P20.32mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P20.32mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P20.32mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P25.40mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P25.40mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P25.40mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P30.48mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P30.48mm_Horizontal_TVS +Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-15_P30.48mm_Horizontal_Zener +Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library +Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P5.08mm_Vertical_AnodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P5.08mm_Vertical_KathodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P5.08mm_Vertical_TVS +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P12.70mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P12.70mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P12.70mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P15.24mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P15.24mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P15.24mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P20.32mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P20.32mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P20.32mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P25.40mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P25.40mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P25.40mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P30.48mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P30.48mm_Horizontal_TVS +Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-27_P30.48mm_Horizontal_Zener +Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library +Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P7.62mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P7.62mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P10.16mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P10.16mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P12.70mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P12.70mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P15.24mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P15.24mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P20.32mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P20.32mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P25.40mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-34_SOD68_P25.40mm_Horizontal_Zener +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library +Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P3.81mm_Vertical_Diac +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P5.08mm_Vertical_Diac +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P7.62mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P7.62mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P7.62mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P10.16mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P10.16mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P10.16mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P12.70mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P12.70mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P12.70mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P15.24mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P15.24mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P15.24mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P20.32mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P20.32mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P20.32mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P25.40mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P25.40mm_Horizontal_Diac +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-35_SOD27_P25.40mm_Horizontal_Zener +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library +Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P3.81mm_Vertical_TVS +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P5.08mm_Vertical_TVS +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P7.62mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P7.62mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P7.62mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P10.16mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P10.16mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P10.16mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P12.70mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P12.70mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P12.70mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P15.24mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P15.24mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P15.24mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P20.32mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P20.32mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P20.32mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P25.40mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P25.40mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P25.40mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P30.48mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P30.48mm_Horizontal_TVS +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-41_SOD81_P30.48mm_Horizontal_Zener +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library +Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P3.81mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P3.81mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P5.08mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P5.08mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P5.08mm_Vertical_TVS +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P12.70mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P12.70mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P12.70mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P15.24mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P15.24mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P15.24mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P20.32mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P20.32mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P20.32mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P25.40mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P25.40mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P25.40mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P30.48mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P30.48mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P30.48mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P35.56mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P35.56mm_Horizontal_TVS +Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AD_P35.56mm_Horizontal_Zener +Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library +Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P3.81mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P3.81mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P3.81mm_Vertical_TVS +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P5.08mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P5.08mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P5.08mm_Vertical_TVS +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P12.70mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P12.70mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P12.70mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P15.24mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P15.24mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P15.24mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P20.32mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P20.32mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P20.32mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P25.40mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P25.40mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P25.40mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P30.48mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P30.48mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P30.48mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P35.56mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P35.56mm_Horizontal_TVS +Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201AE_P35.56mm_Horizontal_Zener +Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library +Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P3.81mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P3.81mm_Vertical_AnodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P3.81mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P3.81mm_Vertical_KathodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P3.81mm_Vertical_TVS +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P5.08mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P5.08mm_Vertical_AnodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P5.08mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P5.08mm_Vertical_KathodeUp_Zener +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P5.08mm_Vertical_TVS +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P12.70mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P12.70mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P12.70mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P15.24mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P15.24mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P15.24mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P20.32mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P20.32mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P20.32mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P25.40mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P25.40mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P25.40mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P30.48mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P30.48mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P30.48mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P35.56mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P35.56mm_Horizontal_TVS +Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_DO-201_P35.56mm_Horizontal_Zener +Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library +Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P7.62mm_Vertical_AnodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P7.62mm_Vertical_AnodeUp_Zener +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P7.62mm_Vertical_KathodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P7.62mm_Vertical_KathodeUp_Zener +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P7.62mm_Vertical_TVS +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P12.70mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P12.70mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P12.70mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P15.24mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P15.24mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P15.24mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P20.00mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P20.00mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P20.00mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P25.40mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P25.40mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P25.40mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P30.48mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P30.48mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P30.48mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P35.56mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P35.56mm_Horizontal_TVS +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P35.56mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P40.64mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_P600_R-6_P40.64mm_Horizontal_Zener +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library +Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-23 +Diode, SOD-23, Old and obsolete plastic diode package, Do not confuse with SOT-23 , https://www.web-bcs.com/pdf/Tf/BA/BA178.pdf, Alternate KiCad Library +Diode SOD-23 +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P5.08mm_Vertical_AnodeUp +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P5.08mm_Vertical_AnodeUp_Zener +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P5.08mm_Vertical_KathodeUp +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P5.08mm_Vertical_KathodeUp_Zener +Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P7.62mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P7.62mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P10.16mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P10.16mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P12,70mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P12,70mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P12.70mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P12.70mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P15.24mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P15.24mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P20.32mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P20.32mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P25.40mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P25.40mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P30.48mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-57_P30.48mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P5.08mm_Vertical_AnodeUp +Diode, SOD-61A series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.9*2.5mm^2, ,https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Vertical pin pitch 5.08mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P5.08mm_Vertical_KathodeUp +Diode, SOD-61A series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.9*2.5mm^2, ,https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Vertical pin pitch 5.08mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P10.16mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 10.16mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P12.70mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 12.70mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P15.24mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 15.24mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P20.32mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 20.32mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P25.40mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 25.40mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61A_P30.48mm_Horizontal +Diode, SOD-61A series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.9*2.5mm, , https://www.web-bcs.com/js/geoms/SOD61A.webp, Alternate KiCad Library +Diode SOD-61A series Axial Horizontal pin pitch 30.48mm length 4.9mm diameter 2.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61_P5.08mm_Vertical_AnodeUp +Diode, SOD-61 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11.5*3mm^2, ,https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Vertical pin pitch 5.08mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61_P5.08mm_Vertical_KathodeUp +Diode, SOD-61 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11.5*3mm^2, ,https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Vertical pin pitch 5.08mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61_P15.24mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 15.24mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61_P20.32mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 20.32mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61_P25.40mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 25.40mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-61_P30.48mm_Horizontal +Diode, SOD-61 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=11.5*3mm, , https://www.web-bcs.com/js/geoms/SOD61.webp, Alternate KiCad Library +Diode SOD-61 series Axial Horizontal pin pitch 30.48mm length 11.5mm diameter 3mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P5.08mm_Vertical_AnodeUp +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P5.08mm_Vertical_AnodeUp_Zener +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P5.08mm_Vertical_KathodeUp +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P5.08mm_Vertical_KathodeUp_Zener +Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P7.62mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P7.62mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P10.16mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P10.16mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P12.70mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P12.70mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P15.24mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P15.24mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P20.32mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P20.32mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P25.40mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P25.40mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P30.48mm_Horizontal +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_SOD-64_P30.48mm_Horizontal_Zener +Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library +Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P2.54mm_Vertical_AnodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P2.54mm_Vertical_KathodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P5.08mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P5.08mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P7.62mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P7.62mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P10.16mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P10.16mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P12.70mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P12.70mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P15.24mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P15.24mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P20.32mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P20.32mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P25.40mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +D_T-1_P25.40mm_Horizontal_Zener +Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library +Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm +0 +2 +2 +PCM_Diode_THT_AKL_Double +Diode_Bridge_3F_35x25x5.5mm_P7.5mm +Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library +diode bridge rectifier three phase 3F +0 +5 +5 +PCM_Diode_THT_AKL_Double +Diode_Bridge_3F_35x25x5.5mm_P7.5mm_B +Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library +diode bridge rectifier three phase 3F +0 +5 +5 +PCM_Diode_THT_AKL_Double +Diode_Bridge_3F_40x21.5x5.4mm_P7.5mm +Three Phase Rectifier Bridge, 40x21.5x5.4mm Pin Pitch 7.5mm, https://www.tme.eu/Document/610b0e9a98397aeaef704f0ed736f58e/DBI25-xxP.pdf, Alternate KiCAD Library +diode bridge rectifier three phase 3F DBI +0 +5 +5 +PCM_Diode_THT_AKL_Double +Diode_Bridge_15.1x15.1x6.3mm_P10.9mm +Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xxS +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_15.2x15.2x6.3mm_P10.9mm +Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf +Diode Bridge KBPC6xx +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_15.7x15.7x6.3mm_P10.8mm +Single phase bridge rectifier case 15.7x15.7 +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_16.7x16.7x6.3mm_P10.8mm +Single phase bridge rectifier case 16.7x16.7 +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm_B +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_19.0x19.0x6.8mm_P12.7mm +Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xx +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_28.6x28.6x7.3mm_P5.08mm_Vertical +Single phase bridge rectifier case 28.6x28.6mm, Vertical mount, pitch 5.08mm, see https://www.tme.eu/Document/c6b90344b8f3d76b02c7159a1dcbbfbb/BR15xL_ser.pdf +Rectifier Bridge Square 28.6x26.8mm vertical +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm +Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf +Diode Bridge KBPCxxxxWP +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm +Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf +Diotec rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_DIP-4_W5.08mm_P2.54mm +4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf +DIL DIP PDIP 5.08mm 2.54 +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_DIP-4_W7.62mm_P5.08mm +4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf +DIL DIP PDIP 5.08mm 7.62mm 300mil +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_GBJ +GBJ rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +GBJ rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_GBJL +GBJL rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +GBJL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_GBJS +GBJS rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +GBJS rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_KBJ +KBJ rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +KBJ rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_KBJL +KBJL rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +KBJL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_KBP +KBP rectifier package, 3.81mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ +KBP rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Round_D8.9mm +4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF +diode bridge 8.9mm 8.85mm WOB pitch 5.08mm +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Round_D9.0mm +4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf +diode bridge 9.0mm 8.85mm WOB pitch 5.0mm +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Round_D9.8mm +4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf +diode bridge 9.8mm WOG pitch 5.08mm +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Vishay_GBL +Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf +Vishay GBL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Vishay_GBU +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Vishay_KBL +Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf +Vishay KBL rectifier diode bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Vishay_KBPC1 +Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Vishay_KBPC6 +Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +PCM_Diode_THT_AKL_Double +Diode_Bridge_Vishay_KBU +Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf +Vishay KBU rectifier diode bridge +0 +4 +4 +PCM_Elektuur +Pad_0.048in_Drill0.028in +Single round THT pad ⌀ 0.048 in, hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur +Pad_0.058in_Drill0.036in +Single round THT pad ⌀ 0.058 in, hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur +Pad_0.060in_Drill0.034in +Single round THT pad ⌀ 0.060 in, hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur +Pad_0.060x0.043in_Drill0.034in +Single obround THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur +Pad_0.063in_Drill0.039in +Single round THT pad ⌀ 0.063 in, hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur +Pad_0.072in_Drill0.040in +Single round THT pad ⌀ 0.072 in, hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_0.072in_Drill0.052in +Single round THT pad ⌀ 0.072 in, hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_0.097in_Drill0.040in +Single round THT pad ⌀ 0.097 in, hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur +Pad_0.097x0.068in_Drill0.040in +Single obround THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur +Pad_0.097x0.068in_Drill0.040in_Offset +Single obround THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_0.121in_Drill0.048in +Single round THT pad ⌀ 0.121 in, hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur +Pad_1.21mm_Drill0.7mm +Single round THT pad ⌀ 1.21 mm, hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur +Pad_1.45mm_Drill0.9mm +Single round THT pad ⌀ 1.45 mm, hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur +Pad_1.51mm_Drill0.8mm +Single round THT pad ⌀ 1.51 mm, hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur +Pad_1.51x1.07mm_Drill0.8mm +Single obround THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur +Pad_1.57mm_Drill1.0mm +Single round THT pad ⌀ 1.57 mm, hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur +Pad_1.81mm_Drill1.0mm +Single round THT pad ⌀ 1.81 mm, hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_1.81mm_Drill1.3mm +Single round THT pad ⌀ 1.81 mm, hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_2.41mm_Drill1.0mm +Single round THT pad ⌀ 2.41 mm, hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur +Pad_2.41x1.71mm_Drill1.0mm +Single obround THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur +Pad_2.41x1.71mm_Drill1.0mm_Offset +Single obround THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_3.02mm_Drill1.2mm +Single round THT pad ⌀ 3.02 mm, hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.048x0.048in_Drill0.028in +Single chamfered THT pad 0.048×0.048 in², hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.058x0.058in_Drill0.036in +Single chamfered THT pad 0.058×0.058 in², hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.060x0.043in_Drill0.034in +Single chamfered THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur +Pad_Chamfer_0.060x0.060in_Drill0.034in +Single chamfered THT pad 0.060×0.060 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.063x0.063in_Drill0.039in +Single chamfered THT pad 0.063×0.063 in², hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.072x0.072in_Drill0.040in +Single chamfered THT pad 0.072×0.072 in², hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.072x0.072in_Drill0.052in +Single chamfered THT pad 0.072×0.072 in², hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.097x0.068in_Drill0.040in +Single chamfered THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur +Pad_Chamfer_0.097x0.068in_Drill0.040in_Offset +Single chamfered THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_Chamfer_0.097x0.097in_Drill0.040in +Single chamfered THT pad 0.097×0.097 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_0.121x0.121in_Drill0.048in +Single chamfered THT pad 0.121×0.121 in², hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_1.21x1.21mm_Drill0.7mm +Single chamfered THT pad 1.21×1.21 mm², hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_1.45x1.45mm_Drill0.9mm +Single chamfered THT pad 1.45×1.45 mm², hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_1.51x1.07mm_Drill0.8mm +Single chamfered THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur +Pad_Chamfer_1.51x1.51mm_Drill0.8mm +Single chamfered THT pad 1.51×1.51 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_1.57x1.57mm_Drill1.0mm +Single chamfered THT pad 1.57×1.57 mm², hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_1.81x1.81mm_Drill1.0mm +Single chamfered THT pad 1.81×1.81 mm², hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_1.81x1.81mm_Drill1.3mm +Single chamfered THT pad 1.81×1.81 mm², hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_2.41x1.71mm_Drill1.0mm +Single chamfered THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur +Pad_Chamfer_2.41x1.71mm_Drill1.0mm_Offset +Single chamfered THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_Chamfer_2.41x2.41mm_Drill1.0mm +Single chamfered THT pad 2.41×2.41 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur +Pad_Chamfer_3.02x3.02mm_Drill1.2mm +Single chamfered THT pad 3.02×3.02 mm², hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.048x0.048in_Drill0.028in +Single octagonal THT pad 0.048×0.048 in², hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.058x0.058in_Drill0.036in +Single octagonal THT pad 0.058×0.058 in², hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.060x0.043in_Drill0.034in +Single octagonal THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur +Pad_Octa_0.060x0.060in_Drill0.034in +Single octagonal THT pad 0.060×0.060 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.063x0.063in_Drill0.039in +Single octagonal THT pad 0.063×0.063 in², hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.072x0.072in_Drill0.040in +Single octagonal THT pad 0.072×0.072 in², hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.072x0.072in_Drill0.052in +Single octagonal THT pad 0.072×0.072 in², hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.097x0.068in_Drill0.040in +Single octagonal THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur +Pad_Octa_0.097x0.068in_Drill0.040in_Offset +Single octagonal THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_Octa_0.097x0.097in_Drill0.040in +Single octagonal THT pad 0.097×0.097 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_0.121x0.121in_Drill0.048in +Single octagonal THT pad 0.121×0.121 in², hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur +Pad_Octa_1.21x1.21mm_Drill0.7mm +Single octagonal THT pad 1.21×1.21 mm², hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_1.45x1.45mm_Drill0.9mm +Single octagonal THT pad 1.45×1.45 mm², hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_1.51x1.07mm_Drill0.8mm +Single octagonal THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur +Pad_Octa_1.51x1.51mm_Drill0.8mm +Single octagonal THT pad 1.51×1.51 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_1.57x1.57mm_Drill1.0mm +Single octagonal THT pad 1.57×1.57 mm², hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_1.81x1.81mm_Drill1.0mm +Single octagonal THT pad 1.81×1.81 mm², hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_1.81x1.81mm_Drill1.3mm +Single octagonal THT pad 1.81×1.81 mm², hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_2.41x1.71mm_Drill1.0mm +Single octagonal THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur +Pad_Octa_2.41x1.71mm_Drill1.0mm_Offset +Single octagonal THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_Octa_2.41x2.41mm_Drill1.0mm +Single octagonal THT pad 2.41×2.41 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur +Pad_Octa_3.02x3.02mm_Drill1.2mm +Single octagonal THT pad 3.02×3.02 mm², hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.048x0.048in_Drill0.028in +Single square THT pad 0.048×0.048 in², hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.058x0.058in_Drill0.036in +Single square THT pad 0.058×0.058 in², hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.060x0.043in_Drill0.034in +Single rectangular THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur +Pad_Rect_0.060x0.060in_Drill0.034in +Single square THT pad 0.060×0.060 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.063x0.063in_Drill0.039in +Single square THT pad 0.063×0.063 in², hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.072x0.072in_Drill0.040in +Single square THT pad 0.072×0.072 in², hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.072x0.072in_Drill0.052in +Single square THT pad 0.072×0.072 in², hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.097x0.068in_Drill0.040in +Single rectangular THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur +Pad_Rect_0.097x0.068in_Drill0.040in_Offset +Single rectangular THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_Rect_0.097x0.097in_Drill0.040in +Single square THT pad 0.097×0.097 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_0.121x0.121in_Drill0.048in +Single square THT pad 0.121×0.121 in², hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur +Pad_Rect_1.21x1.21mm_Drill0.7mm +Single square THT pad 1.21×1.21 mm², hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_1.45x1.45mm_Drill0.9mm +Single square THT pad 1.45×1.45 mm², hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_1.51x1.07mm_Drill0.8mm +Single rectangular THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur +Pad_Rect_1.51x1.51mm_Drill0.8mm +Single square THT pad 1.51×1.51 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_1.57x1.57mm_Drill1.0mm +Single square THT pad 1.57×1.57 mm², hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_1.81x1.81mm_Drill1.0mm +Single square THT pad 1.81×1.81 mm², hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_1.81x1.81mm_Drill1.3mm +Single square THT pad 1.81×1.81 mm², hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_2.41x1.71mm_Drill1.0mm +Single rectangular THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur +Pad_Rect_2.41x1.71mm_Drill1.0mm_Offset +Single rectangular THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur +Pad_Rect_2.41x2.41mm_Drill1.0mm +Single square THT pad 2.41×2.41 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur +Pad_Rect_3.02x3.02mm_Drill1.2mm +Single square THT pad 3.02×3.02 mm², hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.048in_Drill0.028in +Single round THT pad ⌀ 0.048 in, hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.058in_Drill0.036in +Single round THT pad ⌀ 0.058 in, hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.060in_Drill0.034in +Single round THT pad ⌀ 0.060 in, hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.060x0.043in_Drill0.034in +Single obround THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_0.063in_Drill0.039in +Single round THT pad ⌀ 0.063 in, hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.072in_Drill0.040in +Single round THT pad ⌀ 0.072 in, hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.072in_Drill0.052in +Single round THT pad ⌀ 0.072 in, hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.097in_Drill0.040in +Single round THT pad ⌀ 0.097 in, hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_0.097x0.068in_Drill0.040in +Single obround THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_0.097x0.068in_Drill0.040in_Offset +Single obround THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_0.121in_Drill0.048in +Single round THT pad ⌀ 0.121 in, hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_1.21mm_Drill0.7mm +Single round THT pad ⌀ 1.21 mm, hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_1.45mm_Drill0.9mm +Single round THT pad ⌀ 1.45 mm, hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_1.51mm_Drill0.8mm +Single round THT pad ⌀ 1.51 mm, hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_1.51x1.07mm_Drill0.8mm +Single obround THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_1.57mm_Drill1.0mm +Single round THT pad ⌀ 1.57 mm, hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_1.81mm_Drill1.0mm +Single round THT pad ⌀ 1.81 mm, hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_1.81mm_Drill1.3mm +Single round THT pad ⌀ 1.81 mm, hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_2.41mm_Drill1.0mm +Single round THT pad ⌀ 2.41 mm, hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_2.41x1.71mm_Drill1.0mm +Single obround THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_2.41x1.71mm_Drill1.0mm_Offset +Single obround THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_3.02mm_Drill1.2mm +Single round THT pad ⌀ 3.02 mm, hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.048x0.048in_Drill0.028in +Single chamfered THT pad 0.048×0.048 in², hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.058x0.058in_Drill0.036in +Single chamfered THT pad 0.058×0.058 in², hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.060x0.043in_Drill0.034in +Single chamfered THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.060x0.060in_Drill0.034in +Single chamfered THT pad 0.060×0.060 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.063x0.063in_Drill0.039in +Single chamfered THT pad 0.063×0.063 in², hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.072x0.072in_Drill0.040in +Single chamfered THT pad 0.072×0.072 in², hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.072x0.072in_Drill0.052in +Single chamfered THT pad 0.072×0.072 in², hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.097x0.068in_Drill0.040in +Single chamfered THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.097x0.068in_Drill0.040in_Offset +Single chamfered THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.097x0.097in_Drill0.040in +Single chamfered THT pad 0.097×0.097 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_0.121x0.121in_Drill0.048in +Single chamfered THT pad 0.121×0.121 in², hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.21x1.21mm_Drill0.7mm +Single chamfered THT pad 1.21×1.21 mm², hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.45x1.45mm_Drill0.9mm +Single chamfered THT pad 1.45×1.45 mm², hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.51x1.07mm_Drill0.8mm +Single chamfered THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.51x1.51mm_Drill0.8mm +Single chamfered THT pad 1.51×1.51 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.57x1.57mm_Drill1.0mm +Single chamfered THT pad 1.57×1.57 mm², hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.81x1.81mm_Drill1.0mm +Single chamfered THT pad 1.81×1.81 mm², hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_1.81x1.81mm_Drill1.3mm +Single chamfered THT pad 1.81×1.81 mm², hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_2.41x1.71mm_Drill1.0mm +Single chamfered THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_Chamfer_2.41x1.71mm_Drill1.0mm_Offset +Single chamfered THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_Chamfer_2.41x2.41mm_Drill1.0mm +Single chamfered THT pad 2.41×2.41 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Chamfer_3.02x3.02mm_Drill1.2mm +Single chamfered THT pad 3.02×3.02 mm², hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.048x0.048in_Drill0.028in +Single octagonal THT pad 0.048×0.048 in², hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.058x0.058in_Drill0.036in +Single octagonal THT pad 0.058×0.058 in², hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.060x0.043in_Drill0.034in +Single octagonal THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_Octa_0.060x0.060in_Drill0.034in +Single octagonal THT pad 0.060×0.060 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.063x0.063in_Drill0.039in +Single octagonal THT pad 0.063×0.063 in², hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.072x0.072in_Drill0.040in +Single octagonal THT pad 0.072×0.072 in², hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.072x0.072in_Drill0.052in +Single octagonal THT pad 0.072×0.072 in², hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.097x0.068in_Drill0.040in +Single octagonal THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_Octa_0.097x0.068in_Drill0.040in_Offset +Single octagonal THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_Octa_0.097x0.097in_Drill0.040in +Single octagonal THT pad 0.097×0.097 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_0.121x0.121in_Drill0.048in +Single octagonal THT pad 0.121×0.121 in², hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_1.21x1.21mm_Drill0.7mm +Single octagonal THT pad 1.21×1.21 mm², hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_1.45x1.45mm_Drill0.9mm +Single octagonal THT pad 1.45×1.45 mm², hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_1.51x1.07mm_Drill0.8mm +Single octagonal THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_Octa_1.51x1.51mm_Drill0.8mm +Single octagonal THT pad 1.51×1.51 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_1.57x1.57mm_Drill1.0mm +Single octagonal THT pad 1.57×1.57 mm², hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_1.81x1.81mm_Drill1.0mm +Single octagonal THT pad 1.81×1.81 mm², hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_1.81x1.81mm_Drill1.3mm +Single octagonal THT pad 1.81×1.81 mm², hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_2.41x1.71mm_Drill1.0mm +Single octagonal THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_Octa_2.41x1.71mm_Drill1.0mm_Offset +Single octagonal THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_Octa_2.41x2.41mm_Drill1.0mm +Single octagonal THT pad 2.41×2.41 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Octa_3.02x3.02mm_Drill1.2mm +Single octagonal THT pad 3.02×3.02 mm², hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.048x0.048in_Drill0.028in +Single square THT pad 0.048×0.048 in², hole ⌀ 0.028 in, nominal trace width 0.020 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.058x0.058in_Drill0.036in +Single square THT pad 0.058×0.058 in², hole ⌀ 0.036 in, nominal trace width 0.024 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.060x0.043in_Drill0.034in +Single rectangular THT pad 0.060×0.043 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_Rect_0.060x0.060in_Drill0.034in +Single square THT pad 0.060×0.060 in², hole ⌀ 0.034 in, nominal trace width 0.025 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.063x0.063in_Drill0.039in +Single square THT pad 0.063×0.063 in², hole ⌀ 0.039 in, nominal trace width 0.026 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.072x0.072in_Drill0.040in +Single square THT pad 0.072×0.072 in², hole ⌀ 0.040 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.072x0.072in_Drill0.052in +Single square THT pad 0.072×0.072 in², hole ⌀ 0.052 in, nominal trace width 0.030 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.097x0.068in_Drill0.040in +Single rectangular THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +5 +1 +PCM_Elektuur_1 +Pad_Rect_0.097x0.068in_Drill0.040in_Offset +Single rectangular THT pad 0.097×0.068 in², hole ⌀ 0.040 in, nominal trace width 0.040 in, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_Rect_0.097x0.097in_Drill0.040in +Single square THT pad 0.097×0.097 in², hole ⌀ 0.040 in, nominal trace width 0.040 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_0.121x0.121in_Drill0.048in +Single square THT pad 0.121×0.121 in², hole ⌀ 0.048 in, nominal trace width 0.050 in + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_1.21x1.21mm_Drill0.7mm +Single square THT pad 1.21×1.21 mm², hole ⌀ 0.7 mm, nominal trace width 0.5 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_1.45x1.45mm_Drill0.9mm +Single square THT pad 1.45×1.45 mm², hole ⌀ 0.9 mm, nominal trace width 0.6 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_1.51x1.07mm_Drill0.8mm +Single rectangular THT pad 1.51×1.07 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_Rect_1.51x1.51mm_Drill0.8mm +Single square THT pad 1.51×1.51 mm², hole ⌀ 0.85 mm, nominal trace width 0.625 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_1.57x1.57mm_Drill1.0mm +Single square THT pad 1.57×1.57 mm², hole ⌀ 0.975 mm, nominal trace width 0.65 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_1.81x1.81mm_Drill1.0mm +Single square THT pad 1.81×1.81 mm², hole ⌀ 1 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_1.81x1.81mm_Drill1.3mm +Single square THT pad 1.81×1.81 mm², hole ⌀ 1.3 mm, nominal trace width 0.75 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_2.41x1.71mm_Drill1.0mm +Single rectangular THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +5 +1 +PCM_Elektuur_1 +Pad_Rect_2.41x1.71mm_Drill1.0mm_Offset +Single rectangular THT pad 2.41×1.71 mm², hole ⌀ 1 mm, nominal trace width 1 mm, offset hole + +0 +5 +1 +PCM_Elektuur_1 +Pad_Rect_2.41x2.41mm_Drill1.0mm +Single square THT pad 2.41×2.41 mm², hole ⌀ 1 mm, nominal trace width 1 mm + +0 +1 +1 +PCM_Elektuur_1 +Pad_Rect_3.02x3.02mm_Drill1.2mm +Single square THT pad 3.02×3.02 mm², hole ⌀ 1.2 mm, nominal trace width 1.25 mm + +0 +1 +1 +PCM_Ferrite_SMD_AKL +Ferrite_0201_0603Metric +Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +ferrite bead 0201 +0 +4 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0201_0603Metric_Pad0.64x0.40mm_BigPads +Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +ferrite beads big pads 0201 +0 +4 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0402_1005Metric +Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 0402 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0402_1005Metric_Pad0.77x0.64mm_BigPads +Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead big pads 0402 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0603_1608Metric +Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 0603 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0603_1608Metric_Pad1.05x0.95mm_BigPads +Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead big pads 0603 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0805_2012Metric +Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead 0805 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0805_2012Metric_Pad1.05x1.20mm_BigPads +Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead big pads 0805 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_0805_2012Metric_Pad1.15x1.40mm_BigPads +Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +ferrite bead big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_01005_0402Metric +Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +ferrite bead 01005 +0 +4 +2 +PCM_Ferrite_SMD_AKL +Ferrite_01005_0402Metric_Pad0.57x0.30mm_BigPads +Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +ferrite bead big pads 01005 +0 +4 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1008_2520Metric +Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library +ferrite bead 1008 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1008_2520Metric_Pad1.43x2.20mm_BigPads +Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library +ferrite bead big pads 1008 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1206_3216Metric +Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead 1206 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1206_3216Metric_Pad1.22x1.90mm_BigPads +Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead big pads 1206 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1206_3216Metric_Pad1.42x1.75mm_BigPads +Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 1206 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1210_3225Metric +Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 1210 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1210_3225Metric_Pad1.42x2.65mm_BigPads +Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 1210 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1806_4516Metric +Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +ferrite bead 1806 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1806_4516Metric_Pad1.57x1.80mm_BigPads +Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +ferrite bead 1806 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1812_4532Metric +Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +ferrite 1812 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_1812_4532Metric_Pad1.30x3.40mm_BigPads +Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +ferrite bead 1812 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_2010_5025Metric +Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2010 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_2010_5025Metric_Pad1.52x2.65mm_BigPads +Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2010 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_2512_6332Metric +Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2512 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_2512_6332Metric_Pad1.52x3.35mm_BigPads +Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2512 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_2816_7142Metric +Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +ferrite bead 2816 +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_2816_7142Metric_Pad3.20x4.45mm_BigPads +Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +ferrite bead 2816 big pads +0 +2 +2 +PCM_Ferrite_SMD_AKL +Ferrite_CommonMode_Delevan_4222 +API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf, Alternate KiCAD Library +surface mount common mode ferrite bead +0 +4 +4 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0201_0603Metric +Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +ferrite bead 0201 +0 +4 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0201_0603Metric_Pad0.64x0.40mm_BigPads +Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +ferrite beads big pads 0201 +0 +4 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0402_1005Metric +Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 0402 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0402_1005Metric_Pad0.77x0.64mm_BigPads +Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead big pads 0402 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0603_1608Metric +Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 0603 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0603_1608Metric_Pad1.05x0.95mm_BigPads +Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead big pads 0603 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0805_2012Metric +Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead 0805 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0805_2012Metric_Pad1.05x1.20mm_BigPads +Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead big pads 0805 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_0805_2012Metric_Pad1.15x1.40mm_BigPads +Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +ferrite bead big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_01005_0402Metric +Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +ferrite bead 01005 +0 +4 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_01005_0402Metric_Pad0.57x0.30mm_BigPads +Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +ferrite bead big pads 01005 +0 +4 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1008_2520Metric +Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library +ferrite bead 1008 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1008_2520Metric_Pad1.43x2.20mm_BigPads +Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library +ferrite bead big pads 1008 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1206_3216Metric +Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead 1206 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1206_3216Metric_Pad1.22x1.90mm_BigPads +Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library +ferrite bead big pads 1206 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1206_3216Metric_Pad1.42x1.75mm_BigPads +Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 1206 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1210_3225Metric +Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 1210 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1210_3225Metric_Pad1.42x2.65mm_BigPads +Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 1210 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1806_4516Metric +Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +ferrite bead 1806 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1806_4516Metric_Pad1.57x1.80mm_BigPads +Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +ferrite bead 1806 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1812_4532Metric +Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +ferrite 1812 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_1812_4532Metric_Pad1.30x3.40mm_BigPads +Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +ferrite bead 1812 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_2010_5025Metric +Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2010 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_2010_5025Metric_Pad1.52x2.65mm_BigPads +Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2010 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_2512_6332Metric +Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2512 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_2512_6332Metric_Pad1.52x3.35mm_BigPads +Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +ferrite bead 2512 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_2816_7142Metric +Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +ferrite bead 2816 +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_2816_7142Metric_Pad3.20x4.45mm_BigPads +Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +ferrite bead 2816 big pads +0 +2 +2 +PCM_Ferrite_SMD_Handsoldering_AKL +Ferrite_CommonMode_Delevan_4222 +API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf, Alternate KiCAD Library +surface mount common mode ferrite bead +0 +4 +4 +PCM_Ferrite_THT_AKL +Ferrite_Dual_L10.0mm_D6.0mm_P12.70mm +Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +4 +4 +PCM_Ferrite_THT_AKL +Ferrite_Dual_L10.0mm_D6.0mm_P15.24mm +Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +4 +4 +PCM_Ferrite_THT_AKL +Ferrite_Dual_L10.0mm_D6.0mm_P20.32mm +Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +4 +4 +PCM_Ferrite_THT_AKL +Ferrite_Filter_L8.5mm_W3.5mm_H7.5mm_P2.5mm +Ferrite LCL filter, length 8.5mm, width 3.5mm, height 7.5mm, pin pitch 2.5mm, Alternate KiCAD Library +ferrite axial width 3.5mm length 8.5mm height 7.5mm pitch 2.5mm +0 +3 +3 +PCM_Ferrite_THT_AKL +Ferrite_Filter_L8mm_W2.54mm_H10.5mm_P2.5mm +Ferrite LCL filter, length 8mm, width 2.54mm, height 10.5mm, pin pitch 2.5mm, Alternate KiCAD Library +ferrite axial width 2.54mm length 8mm height 10.5mm pitch 2.5mm +0 +3 +3 +PCM_Ferrite_THT_AKL +Ferrite_Filter_L9mm_W3.2mm_H8mm_P2.5mm +Ferrite LCL filter, length 9mm, width 3.2mm, height 8mm, pin pitch 2.5mm, Alternate KiCAD Library +ferrite axial width 3.2mm length 9mm height 8mm pitch 2.5mm +0 +3 +3 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P2.54mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 2.54mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P5.08mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P7.62mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P5.08mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.2mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L3.5mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P2.54mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4mm pitch 2.54mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P7.62mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.0mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P2.54mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 2.54mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P7.62mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P5,08mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P5,08mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.5mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L4.7mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P2.54mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 2.54mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 2.54mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P5mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D2.3mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P5mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.4mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical_Dual +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P5mm_Vertical +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P5mm_Vertical_Dual +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L5.0mm_D3.6mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L6.7mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P2.54mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 2.54mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.0mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L7.5mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L8.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L9.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6.0mm_P12.70mm +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6.0mm_P12.70mm_Wide +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6.0mm_P15.24mm +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6.0mm_P15.24mm_Wide +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6.0mm_P20.32mm +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6.0mm_P20.32mm_Wide +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L10.0mm_D6mm_P3.5mm_Radial +Ferrite choke, radial, length 10mm, diameter 6mm, pin pitch 3.5mm, Alternate KiCAD Library +ferrite radial diameter 6mm length 10mm pitch 3.5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_L12.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL +Ferrite_Quad_L10.2mm_W6mm_P2.54mm +Ferrite bead, quadruple, 10.2x6mm size, 2.54mm pitch, Alternate KiCAD Library +ferrite quad length 10.2mm width 6mm pitch 2.54mm +0 +8 +6 +PCM_Ferrite_THT_AKL +Ferrite_Quad_L11.2mm_W11.2mm_P2.54mm +Ferrite bead, quadruple, 11.2x11.2mm size, 2.54mm pitch, Alternate KiCAD Library +ferrite quad length 11.2mm width 11.2mm pitch 2.54mm +0 +8 +6 +PCM_Ferrite_THT_AKL +Ferrite_Triple_L7.6mm_W5mm_P2.54mm +Ferrite bead, triple, 7.6x5mm size, 2.54mm pitch, Alternate KiCAD Library +ferrite triple length 7.6mm width 5mm pitch 2.54mm +0 +6 +6 +PCM_Ferrite_THT_AKL_Double +Ferrite_Dual_L10.0mm_D6.0mm_P12.70mm +Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +4 +4 +PCM_Ferrite_THT_AKL_Double +Ferrite_Dual_L10.0mm_D6.0mm_P15.24mm +Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +4 +4 +PCM_Ferrite_THT_AKL_Double +Ferrite_Dual_L10.0mm_D6.0mm_P20.32mm +Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +4 +4 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P5.08mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P7.62mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 3mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P5.08mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.2mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.2mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L3.5mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 3.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P7.62mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.0mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P7.62mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 4.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.5mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L4.7mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 4.7mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P5mm_Vertical +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.3mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D2.3mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P5mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.4mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.4mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P3.81mm_Vertical +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical_Dual +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P5mm_Vertical +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P5mm_Vertical_Dual +Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P7.62mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 7.62mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 7.62mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P10.16mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P12.70mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P15.24mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L5.0mm_D3.6mm_P20.32mm +Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.6mm length 5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L6.7mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 6.7mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical_Dual +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P5mm_Vertical +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P10.16mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P12.70mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P15.24mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.0mm_D2.5mm_P20.32mm +Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 2.5mm length 7mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L7.5mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 7.5mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P10.16mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 10.16mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L8.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 8mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P12.70mm +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L9.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 9mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6.0mm_P12.70mm +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6.0mm_P12.70mm_Wide +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 12.70mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6.0mm_P15.24mm +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6.0mm_P15.24mm_Wide +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6.0mm_P20.32mm +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6.0mm_P20.32mm_Wide +Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 6mm length 10mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L10.0mm_D6mm_P3.5mm_Radial +Ferrite choke, radial, length 10mm, diameter 6mm, pin pitch 3.5mm, Alternate KiCAD Library +ferrite radial diameter 6mm length 10mm pitch 3.5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P3.81mm_Vertical +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 3.81mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical_Dual +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P5mm_Vertical +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P5mm_Vertical_Dual +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 5.08mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P15.24mm +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 15.24mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_L12.0mm_D3.5mm_P20.32mm +Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library +ferrite axial diameter 3.5mm length 12mm pitch 20.32mm +0 +2 +2 +PCM_Ferrite_THT_AKL_Double +Ferrite_Quad_L11.2mm_W11.2mm_P2.54mm +Ferrite bead, quadruple, 11.2x11.2mm size, 2.54mm pitch, Alternate KiCAD Library +ferrite quad length 11.2mm width 11.2mm pitch 2.54mm +0 +8 +6 +PCM_Fuse_AKL +Fuse_0201_0603Metric +Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_AKL +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_0603_1608Metric_Castellated +Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_0805_2012Metric_Castellated +Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_01005_0402Metric +Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_AKL +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_1206_3216Metric_Castellated +Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse handsolder +0 +2 +2 +PCM_Fuse_AKL +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_1210_3225Metric_Castellated +Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_1806_4516Metric +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_1806_4516Metric_Castellated +Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_1812_4532Metric_Castellated +Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_2010_5025Metric_Castellated +Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_2512_6332Metric_Castellated +Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_2816_7142Metric +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_2816_7142Metric_Castellated +Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_AKL +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_2920_7451Metric_Castellated +Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_AKL +Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +resistor handsolder +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL +Fuse_Blade_ATO_directSolder +car blade fuse direct solder, Alternate KiCAD Library +car blade fuse +0 +2 +2 +PCM_Fuse_AKL +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder, Alternate KiCAD Library +car blade fuse mini +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR100 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR125 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR200 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library +Fuse Nano2 +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library +fuse tht radial +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_AKL +Fuse_Littelfuse_TSM600 +Dual Telecom SMT PolyFuse, Alternate KiCAD Library +Fuse dual +0 +4 +4 +PCM_Fuse_AKL +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library +Schurter fuse smd +0 +2 +2 +PCM_Fuse_AKL +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin, Alternate KiCAD Library +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library +car blade fuse mini +0 +4 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library +Fuseholder 5x20mm closed horizontal +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +4 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 5x20mm horizontal closed +0 +3 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +PCM_Fuse_AKL +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library +SMD Nano2 holder +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_OMH-125_Schurter_6x12mm +SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library +fuse holder fuseholder smd +0 +2 +2 +PCM_Fuse_AKL +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder, Alternate KiCAD Library +car blade fuse mini +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR100 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR125 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR200 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library +fuse tht radial +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_AKL_Double +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library +car blade fuse mini +0 +4 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library +Fuseholder 5x20mm closed horizontal +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +4 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 5x20mm horizontal closed +0 +3 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +PCM_Fuse_AKL_Double +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +PCM_Fuse_AKL_Double +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0201_0603Metric +Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0603_1608Metric_Castellated +Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0805_2012Metric_Castellated +Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_01005_0402Metric +Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1206_3216Metric_Castellated +Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1210_3225Metric_Castellated +Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1806_4516Metric +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1806_4516Metric_Castellated +Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +resistor +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1812_4532Metric_Castellated +Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2010_5025Metric_Castellated +Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2512_6332Metric_Castellated +Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2816_7142Metric +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2816_7142Metric_Castellated +Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2920_7451Metric_Castellated +Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_2920_7451Metric_Pad2.10x5.45mm_BigPads +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library +Fuse Nano2 +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuse_Littlefuse_TSM600 +Telecom SMT PolyFuse, Alternate KiCAD Library +fuse TSM600 +0 +4 +4 +PCM_Fuse_Handsoldering_AKL +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library +Schurter fuse smd +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library +SMD Nano2 holder +0 +2 +2 +PCM_Fuse_Handsoldering_AKL +Fuseholder_OMH-125_Schurter_6x12mm +SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library +fuse holder fuseholder smd +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0201_0603Metric +Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_US_AKL +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0603_1608Metric_Castellated +Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0805_2012Metric_Castellated +Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_01005_0402Metric +Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_US_AKL +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1206_3216Metric_Castellated +Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse handsolder +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1210_3225Metric_Castellated +Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1806_4516Metric +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1806_4516Metric_Castellated +Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1812_4532Metric_Castellated +Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2010_5025Metric_Castellated +Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2512_6332Metric_Castellated +Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2816_7142Metric +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2816_7142Metric_Castellated +Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2920_7451Metric_Castellated +Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +resistor handsolder +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Blade_ATO_directSolder +car blade fuse direct solder, Alternate KiCAD Library +car blade fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder, Alternate KiCAD Library +car blade fuse mini +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR100 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR125 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR200 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library +Fuse Nano2 +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library +fuse tht radial +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_Littelfuse_TSM600 +Dual Telecom SMT PolyFuse, Alternate KiCAD Library +Fuse dual +0 +4 +4 +PCM_Fuse_US_AKL +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library +Schurter fuse smd +0 +2 +2 +PCM_Fuse_US_AKL +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin, Alternate KiCAD Library +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library +car blade fuse mini +0 +4 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library +Fuseholder 5x20mm closed horizontal +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +4 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 5x20mm horizontal closed +0 +3 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +PCM_Fuse_US_AKL +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library +SMD Nano2 holder +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_OMH-125_Schurter_6x12mm +SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library +fuse holder fuseholder smd +0 +2 +2 +PCM_Fuse_US_AKL +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library +0ZRE BelFuse radial PTC +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder, Alternate KiCAD Library +car blade fuse mini +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library +ptc resettable fuse polyfuse THT +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR100 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR125 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library +LVR200 PTC resettable polyswitch +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library +fuse tht radial +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library +car blade fuse mini +0 +4 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library +Fuseholder 5x20mm closed horizontal +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library +fuse holder vertical 5x20mm +0 +4 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 5x20mm horizontal closed +0 +3 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +PCM_Fuse_US_AKL_Double +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0201_0603Metric +Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0603_1608Metric_Castellated +Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0805_2012Metric_Castellated +Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_01005_0402Metric +Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library +fuse +0 +4 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1206_3216Metric_Castellated +Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1210_3225Metric_Castellated +Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1806_4516Metric +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1806_4516Metric_Castellated +Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads +Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +resistor +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1812_4532Metric_Castellated +Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2010_5025Metric_Castellated +Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2512_6332Metric_Castellated +Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2816_7142Metric +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2816_7142Metric_Castellated +Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads +Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2920_7451Metric_Castellated +Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse castellated +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_2920_7451Metric_Pad2.10x5.45mm_BigPads +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library +fuse big pads +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library +Fuse Nano2 +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuse_Littlefuse_TSM600 +Telecom SMT PolyFuse, Alternate KiCAD Library +fuse TSM600 +0 +4 +4 +PCM_Fuse_US_Handsoldering_AKL +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library +Schurter fuse smd +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library +SMD Nano2 holder +0 +2 +2 +PCM_Fuse_US_Handsoldering_AKL +Fuseholder_OMH-125_Schurter_6x12mm +SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library +fuse holder fuseholder smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_6.3x6.3_H3 +Choke, SMD, 6.3x6.3mm 3mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_7.3x7.3_H3.5 +Choke, SMD, 7.3x7.3mm 3.5mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_7.3x7.3_H4.5 +Choke, SMD, 7.3x7.3mm 4.5mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_10.4x10.4_H4.8 +Choke, SMD, 10.4x10.4mm 4.8mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_12x12mm_H4.5mm +Choke, SMD, 12x12mm 4.5mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_12x12mm_H6mm +Choke, SMD, 12x12mm 6mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_12x12mm_H8mm +Choke, SMD, 12x12mm 8mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0201_0603Metric +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +inductor +0 +4 +2 +PCM_Inductor_SMD_AKL +L_0201_0603Metric_Pad0.64x0.40mm +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +inductor handsolder +0 +4 +2 +PCM_Inductor_SMD_AKL +L_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +inductor handsolder +0 +4 +2 +PCM_Inductor_SMD_AKL +L_0402_1005Metric +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0402_1005Metric_Pad0.77x0.64mm +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0603_1608Metric +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0603_1608Metric_Pad1.05x0.95mm +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0805_2012Metric +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0805_2012Metric_Pad1.05x1.20mm +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0805_2012Metric_Pad1.05x1.20mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0805_2012Metric_Pad1.15x1.40mm +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_01005_0402Metric +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +inductor +0 +4 +2 +PCM_Inductor_SMD_AKL +L_01005_0402Metric_Pad0.57x0.30mm +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +inductor handsolder +0 +4 +2 +PCM_Inductor_SMD_AKL +L_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +inductor handsolder +0 +4 +2 +PCM_Inductor_SMD_AKL +L_1008_2520Metric +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1008_2520Metric_Pad1.43x2.20mm +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1008_2520Metric_Pad1.43x2.20mm_HandSolder +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1206_3216Metric +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1206_3216Metric_Pad1.22x1.90mm +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1206_3216Metric_Pad1.22x1.90mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1206_3216Metric_Pad1.42x1.75mm +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1210_3225Metric +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1210_3225Metric_Pad1.42x2.65mm +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1806_4516Metric +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1806_4516Metric_Pad1.57x1.80mm +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1806_4516Metric_Pad1.57x1.80mm_HandSolder +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1812_4532Metric +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1812_4532Metric_Pad1.30x3.40mm +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2010_5025Metric +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2010_5025Metric_Pad1.52x2.65mm +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2512_6332Metric +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2512_6332Metric_Pad1.52x3.35mm +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2816_7142Metric +Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2816_7142Metric_Pad3.20x4.45mm +Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Abracon_ASPI-0630LR +smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf, Alternate KiCad Library +inductor abracon smd shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Abracon_ASPI-3012S +smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf, Alternate KiCad Library +inductor abracon smd shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRN1060 +Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf, Alternate KiCad Library +Bourns SRN1060 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRN4018 +Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf, Alternate KiCad Library +Bourns SRN4018 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRN6028 +Bourns SRN6028 series SMD inductor, Alternate KiCad Library +Bourns SRN6028 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRN8040_8x8.15mm +Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf, Alternate KiCad Library +Bourns SRN8040 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRR1005 +Bourns SRR1005 series SMD inductor, Alternate KiCad Library +Bourns SRR1005 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRU1028_10.0x10.0mm +Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf, Alternate KiCad Library +Bourns SRU1028 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRU8028_8.0x8.0mm +Bourns SRU8028 series SMD inductor, Alternate KiCad Library +Bourns SRU8028 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns-SRU8043 +Bourns SRU8043 series SMD inductor, Alternate KiCad Library +Bourns SRU8043 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SDR1806 +https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf, Alternate KiCad Library +Bourns SDR1806 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRF1260 +Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf), Alternate KiCad Library +Inductor Bourns_SRF1260 +0 +4 +4 +PCM_Inductor_SMD_AKL +L_Bourns_SRN6045TA +http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf, Alternate KiCad Library +Semi-shielded Power Inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRN8040TA +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf, Alternate KiCad Library +Inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRP1245A +Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf, Alternate KiCad Library +Bourns SRP1245A SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRP2313AA +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf, Alternate KiCad Library +Bourns SRR1260 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRP5030T +Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf), Alternate KiCad Library +Inductor Bourns_SRP5030T +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRP7028A_7.3x6.6mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf), Alternate KiCad Library +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRR1210A +Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf, Alternate KiCad Library +Bourns SRR1210A SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Bourns_SRR1260 +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf, Alternate KiCad Library +Bourns SRR1260 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_LPS4018 +SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf, Alternate KiCad Library +L Coilcraft LPS4018 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_LPS5030 +Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint, Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_XAL60xx_6.36x6.56mm +Coilcraft XAL60xx series, https://www.coilcraft.com/pdfs/xal60xx.pdf, Alternate KiCad Library +L Coilcraft XAL60xx +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_XAL5030 +L_Coilcraft_XAL5030, Alternate KiCad Library +L Coilcraft XAL5030 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_XxL4020 +L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf, Alternate KiCad Library +L Coilcraft XxL4020 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_XxL4030 +L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf, Alternate KiCad Library +L Coilcraft XxL4030 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Coilcraft_XxL4040 +L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf, Alternate KiCad Library +L Coilcraft XxL4040 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_CommonModeChoke_Coilcraft_0603USB +Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf, Alternate KiCad Library +surface mount common mode bead +0 +4 +4 +PCM_Inductor_SMD_AKL +L_CommonModeChoke_Coilcraft_0805USB +Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf, Alternate KiCad Library +surface mount common mode bead +0 +4 +4 +PCM_Inductor_SMD_AKL +L_CommonModeChoke_Coilcraft_1812CAN +Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf, Alternate KiCad Library +surface mount common mode bead +0 +4 +4 +PCM_Inductor_SMD_AKL +L_CommonModeChoke_Wuerth_WE-SL5 +WE-SL5 SMT Common Mode Line Filter, https://www.we-online.de/katalog/en/WE-SL5/, https://www.we-online.de/katalog/datasheet/744272471.pdf, Alternate KiCad Library +SMT Common Mode Line Filter +0 +4 +4 +PCM_Inductor_SMD_AKL +L_CommonMode_Wuerth_WE-SL2 +http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1, Alternate KiCad Library +Wuerth WE-SL2 +0 +4 +4 +PCM_Inductor_SMD_AKL +L_Fastron_PISN +Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library +Choke Drossel PISN SMD Fastron +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Fastron_PISN_BigPads +Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library +Choke Drossel PISN SMD Fastron +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Fastron_PISN_Handsoldering +Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library +Choke Drossel PISN SMD Fastron +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Fastron_PISR +Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library +Choke Drossel PISR Fastron SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Fastron_PISR_BigPads +Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library +Choke Drossel PISR Fastron SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Fastron_PISR_Handsoldering +Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library +Choke Drossel PISR Fastron SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Murata_DEM35xxC +https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx, Alternate KiCad Library +Inductor SMD DEM35xxC +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Murata_LQH2MCNxxxx02_2.0x1.6mm +Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf), Alternate KiCad Library +chip coil inductor Murata LQH2MC +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Murata_LQH55DN_5.7x5.0mm +Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf, Alternate KiCad Library +inductor smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_1turn_HDM0131A +Neosid, Air-Coil, SML, 1turn, HDM0131A, Alternate KiCad Library +Neosid Air-Coil SML 1turn HDM0131A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_2turn_HAM0231A +Neosid, Air-Coil, SML, 2turn, HAM0231A, Alternate KiCad Library +Neosid Air-Coil SML 2turn HAM0231A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_2turn_HDM0231A +Neosid, Air-Coil, SML, 2turn, HDM0231A, Alternate KiCad Library +Neosid Air-Coil SML 2turn HDM0231A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_3turn_HAM0331A +Neosid, Air-Coil, SML, 2turn, HAM0331A, Alternate KiCad Library +Neosid Air-Coil SML 3turn HAM0331A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_3turn_HDM0331A +Neosid, Air-Coil, SML, 3turn, HDM0331A, Alternate KiCad Library +Neosid Air-Coil SML 3turn HDM0331A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_4turn_HAM0431A +Neosid, Air-Coil, SML, 4turn, HAM0431A, Alternate KiCad Library +Neosid Air-Coil SML 4turn HAM0431A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_4turn_HDM0431A +Neosid, Air-Coil, SML, 4turn, HDM0431A, Alternate KiCad Library +Neosid Air-Coil SML 4turn HDM0431A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_5turn_HAM0531A +Neosid, Air-Coil, SML, 5turn, HAM0531A, Alternate KiCad Library +Neosid Air-Coil SML 5turn HAM0531A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_5turn_HDM0531A +Neosid, Air-Coil, SML, 5turn, HDM0531A, Alternate KiCad Library +Neosid Air-Coil SML 5turn HDM0531A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A +Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, Alternate KiCad Library +Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A +Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, Alternate KiCad Library +Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Air-Coil_SML_6turn_HAM0631A +Neosid, Air-Coil, SML, 6turn, HAM0631A, Alternate KiCad Library +Neosid Air-Coil SML 6turn HAM0631A +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_MicroCoil_Ms36-L +Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94, Alternate KiCad Library +Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf, Alternate KiCad Library +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms50 +Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf, Alternate KiCad Library +Neosid Power Inductor Ms50 SMD Fixed inductor +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms50T +Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf, Alternate KiCad Library +Neosid Power Inductor Ms50T SMD Fixed inductor high temperature +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms85 +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf, Alternate KiCad Library +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms85T +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf, Alternate KiCad Library +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms95 +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf, Alternate KiCad Library +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms95T +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf, Alternate KiCad Library +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_Ms95a +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf, Alternate KiCad Library +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-NE95H +Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf, Alternate KiCad Library +Neosid Inductor SM-NE95H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-NE127 +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-NE127_BigPads +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-NE127_HandSoldering +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-NE150 +Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf, Alternate KiCad Library +Neosid Inductor SM-NE150 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-PIC0512H +Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf, Alternate KiCad Library +Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-PIC0602H +Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf, Alternate KiCad Library +Neosid Power Inductor SM-PIC0602H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-PIC0612H +Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf, Alternate KiCad Library +Neosid Power Inductor SM-PIC0612H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SM-PIC1004H +Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf, Alternate KiCad Library +Neosid Inductor SM-PIC1004H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SMS-ME3010 +Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf, Alternate KiCad Library +Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SMS-ME3015 +Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf, Alternate KiCad Library +Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SMs42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf, Alternate KiCad Library +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SMs50 +Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf, Alternate KiCad Library +Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SMs85 +Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf, Alternate KiCad Library +Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Neosid_SMs95_SMs95p +Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf, Alternate KiCad Library +Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Pulse_PA4320 +Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf, Alternate KiCad Library +Inductor SMD Pulse PA4320 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Sagami_CER1242B +Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library +inductor sagami cer12xxb smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Sagami_CER1257B +Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library +inductor sagami cer12xxb smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Sagami_CER1277B +Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library +inductor sagami cer12xxb smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_SigTra_SC3316F +http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf, Alternate KiCad Library +Choke +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Sumida_CDMC6D28_7.25x6.5mm +SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf), Alternate KiCad Library +Inductor Sumida SMD CDMC6D28 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Sunlord_MWSA0518_5.4x5.2mm +Inductor, Sunlord, MWSA0518, 5.4mmx5.2mm, Alternate KiCad Library +inductor Sunlord smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_NLV25_2.5x2.0mm +TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf, Alternate KiCad Library +tdk nlv25 nlcv25 nlfv25 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_NLV32_3.2x2.5mm +TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf, Alternate KiCad Library +tdk nlv32 nlcv32 nlfv32 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF6025 +Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf), Alternate KiCad Library +Inductor TDK_SLF6025 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF6028 +Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf), Alternate KiCad Library +Inductor TDK_SLF6028 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF6045 +Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf), Alternate KiCad Library +Inductor TDK_SLF6045 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF7032 +Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf), Alternate KiCad Library +Inductor TDK_SLF7032 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF7045 +Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf), Alternate KiCad Library +Inductor TDK_SLF7045 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF7055 +Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf), Alternate KiCad Library +Inductor TDK_SLF7055 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF10145 +Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf), Alternate KiCad Library +Inductor TDK_SLF10145 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF10165 +Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf), Alternate KiCad Library +Inductor TDK_SLF10165 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF12555 +Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf), Alternate KiCad Library +Inductor SLF12555 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF12565 +Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf), Alternate KiCad Library +Inductor SLF12565 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_SLF12575 +Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf), Alternate KiCad Library +Inductor SLF12575 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_VLF10040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library +inductor TDK VLP smd VLF10040 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TDK_VLP8040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library +inductor TDK VLP smd VLP8040 +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_MD-1616 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_MD-2020 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_MD-3030 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_MD-4040 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_MD-5050 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-20xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-20xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-20xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-24xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-24xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-24xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-30xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-30xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-30xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-40xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-40xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-40xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-50xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-50xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-50xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-60xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-60xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-60xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-80xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-80xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-80xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-10050_9.8x10.0mm +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TracoPower_TCK-047_5.2x5.8mm +Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf, Alternate KiCad Library +inductor smd traco +0 +2 +2 +PCM_Inductor_SMD_AKL +L_TracoPower_TCK-141 +Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-1212 +Inductor, Vishay, IHLP series, 3.0mmx3.0mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-1616 +Inductor, Vishay, IHLP series, 4.1mmx4.1mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-2020 +Inductor, Vishay, IHLP series, 5.1mmx5.1mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-2525 +Inductor, Vishay, IHLP series, 6.3mmx6.3mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-4040 +Inductor, Vishay, IHLP series, 10.2mmx10.2mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-5050 +Inductor, Vishay, IHLP series, 12.7mmx12.7mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHLP-6767 +Inductor, Vishay, IHLP series, 17.0mmx17.0mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHSM-3825 +Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHSM-4825 +Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHSM-5832 +Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Vishay_IHSM-7832 +Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1030 +Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1040 +Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1050 +Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1335 +Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1350 +Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1365 +Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-1890 +Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-2212 +Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-5040 +Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-7030 +Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-7040 +Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCI-7050 +Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1050 +Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1052 +Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1070 +Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1078 +Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1190 +Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1240 +Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1350 +Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-1390 +Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-7050 +Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_HCM-7070 +Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-1610 +Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-2010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-2506 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-2508 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-2510 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-2512 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-3010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-3012 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-3015 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-3020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-4020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_MAPI-4030 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf, Alternate KiCad Library +Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL +0 +4 +4 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-DD-Typ-M-Typ-S +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf, Alternate KiCad Library +Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS +0 +4 +4 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-GF-1210 +Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf, Alternate KiCad Library +Unshielded Inductor WE-GF 1210 Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-7345 +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD 7345 Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-LS +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-LS_BigPads +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-LS_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-M-Typ-S +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-M-Typ-S_BigPads +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD2-Typ-L +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD2 TypL Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD2-Typ-MS +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD2 TypMS Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD2-Typ-XL +Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD2 TypXL Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PD4-Typ-X +Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD4 TypX Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PDF +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PDF Wuerth +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PDF_BigPads +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-PDF_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +PCM_Inductor_SMD_AKL +L_Wuerth_WE-TPC-3816 +L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf, Alternate KiCad Library +wurth wuerth smd inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_6.3x6.3_H3 +Choke, SMD, 6.3x6.3mm 3mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_7.3x7.3_H3.5 +Choke, SMD, 7.3x7.3mm 3.5mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_7.3x7.3_H4.5 +Choke, SMD, 7.3x7.3mm 4.5mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_10.4x10.4_H4.8 +Choke, SMD, 10.4x10.4mm 4.8mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_12x12mm_H4.5mm +Choke, SMD, 12x12mm 4.5mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_12x12mm_H6mm +Choke, SMD, 12x12mm 6mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_12x12mm_H8mm +Choke, SMD, 12x12mm 8mm height, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0201_0603Metric +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +inductor +0 +4 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0201_0603Metric_Pad0.64x0.40mm +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +inductor handsolder +0 +4 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0402_1005Metric +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0402_1005Metric_Pad0.77x0.64mm +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0603_1608Metric +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0603_1608Metric_Pad1.05x0.95mm +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0805_2012Metric +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0805_2012Metric_Pad1.05x1.20mm +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_0805_2012Metric_Pad1.15x1.40mm +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_01005_0402Metric +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +inductor +0 +4 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_01005_0402Metric_Pad0.57x0.30mm +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +inductor handsolder +0 +4 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1008_2520Metric +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1008_2520Metric_Pad1.43x2.20mm +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1206_3216Metric +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1206_3216Metric_Pad1.22x1.90mm +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1206_3216Metric_Pad1.42x1.75mm +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1210_3225Metric +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1210_3225Metric_Pad1.42x2.65mm +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1806_4516Metric +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1806_4516Metric_Pad1.57x1.80mm +Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1812_4532Metric +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_1812_4532Metric_Pad1.30x3.40mm +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_2010_5025Metric +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_2010_5025Metric_Pad1.52x2.65mm +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_2512_6332Metric +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_2512_6332Metric_Pad1.52x3.35mm +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_2816_7142Metric +Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_2816_7142Metric_Pad3.20x4.45mm +Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +inductor handsolder +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Abracon_ASPI-0630LR +smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf, Alternate KiCad Library +inductor abracon smd shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Abracon_ASPI-3012S +smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf, Alternate KiCad Library +inductor abracon smd shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRN1060 +Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf, Alternate KiCad Library +Bourns SRN1060 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRN4018 +Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf, Alternate KiCad Library +Bourns SRN4018 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRN6028 +Bourns SRN6028 series SMD inductor, Alternate KiCad Library +Bourns SRN6028 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRN8040_8x8.15mm +Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf, Alternate KiCad Library +Bourns SRN8040 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRR1005 +Bourns SRR1005 series SMD inductor, Alternate KiCad Library +Bourns SRR1005 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRU1028_10.0x10.0mm +Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf, Alternate KiCad Library +Bourns SRU1028 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRU8028_8.0x8.0mm +Bourns SRU8028 series SMD inductor, Alternate KiCad Library +Bourns SRU8028 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns-SRU8043 +Bourns SRU8043 series SMD inductor, Alternate KiCad Library +Bourns SRU8043 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SDR1806 +https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf, Alternate KiCad Library +Bourns SDR1806 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRF1260 +Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf), Alternate KiCad Library +Inductor Bourns_SRF1260 +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRN6045TA +http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf, Alternate KiCad Library +Semi-shielded Power Inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRN8040TA +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf, Alternate KiCad Library +Inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRP1245A +Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf, Alternate KiCad Library +Bourns SRP1245A SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRP2313AA +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf, Alternate KiCad Library +Bourns SRR1260 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRP5030T +Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf), Alternate KiCad Library +Inductor Bourns_SRP5030T +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRP7028A_7.3x6.6mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf), Alternate KiCad Library +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRR1210A +Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf, Alternate KiCad Library +Bourns SRR1210A SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Bourns_SRR1260 +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf, Alternate KiCad Library +Bourns SRR1260 SMD inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_LPS4018 +SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf, Alternate KiCad Library +L Coilcraft LPS4018 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_LPS5030 +Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint, Alternate KiCad Library +inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_XAL60xx_6.36x6.56mm +Coilcraft XAL60xx series, https://www.coilcraft.com/pdfs/xal60xx.pdf, Alternate KiCad Library +L Coilcraft XAL60xx +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_XAL5030 +L_Coilcraft_XAL5030, Alternate KiCad Library +L Coilcraft XAL5030 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_XxL4020 +L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf, Alternate KiCad Library +L Coilcraft XxL4020 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_XxL4030 +L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf, Alternate KiCad Library +L Coilcraft XxL4030 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Coilcraft_XxL4040 +L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf, Alternate KiCad Library +L Coilcraft XxL4040 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_CommonModeChoke_Coilcraft_0603USB +Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf, Alternate KiCad Library +surface mount common mode bead +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_CommonModeChoke_Coilcraft_0805USB +Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf, Alternate KiCad Library +surface mount common mode bead +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_CommonModeChoke_Coilcraft_1812CAN +Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf, Alternate KiCad Library +surface mount common mode bead +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_CommonModeChoke_Wuerth_WE-SL5 +WE-SL5 SMT Common Mode Line Filter, https://www.we-online.de/katalog/en/WE-SL5/, https://www.we-online.de/katalog/datasheet/744272471.pdf, Alternate KiCad Library +SMT Common Mode Line Filter +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_CommonMode_Wuerth_WE-SL2 +http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1, Alternate KiCad Library +Wuerth WE-SL2 +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_Fastron_PISN +Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library +Choke Drossel PISN SMD Fastron +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Fastron_PISN_Handsoldering +Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library +Choke Drossel PISN SMD Fastron +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Fastron_PISR +Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library +Choke Drossel PISR Fastron SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Fastron_PISR_Handsoldering +Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library +Choke Drossel PISR Fastron SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Murata_DEM35xxC +https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx, Alternate KiCad Library +Inductor SMD DEM35xxC +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Murata_LQH2MCNxxxx02_2.0x1.6mm +Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf), Alternate KiCad Library +chip coil inductor Murata LQH2MC +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Murata_LQH55DN_5.7x5.0mm +Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf, Alternate KiCad Library +inductor smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_1turn_HDM0131A +Neosid, Air-Coil, SML, 1turn, HDM0131A, Alternate KiCad Library +Neosid Air-Coil SML 1turn HDM0131A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_2turn_HAM0231A +Neosid, Air-Coil, SML, 2turn, HAM0231A, Alternate KiCad Library +Neosid Air-Coil SML 2turn HAM0231A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_2turn_HDM0231A +Neosid, Air-Coil, SML, 2turn, HDM0231A, Alternate KiCad Library +Neosid Air-Coil SML 2turn HDM0231A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_3turn_HAM0331A +Neosid, Air-Coil, SML, 2turn, HAM0331A, Alternate KiCad Library +Neosid Air-Coil SML 3turn HAM0331A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_3turn_HDM0331A +Neosid, Air-Coil, SML, 3turn, HDM0331A, Alternate KiCad Library +Neosid Air-Coil SML 3turn HDM0331A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_4turn_HAM0431A +Neosid, Air-Coil, SML, 4turn, HAM0431A, Alternate KiCad Library +Neosid Air-Coil SML 4turn HAM0431A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_4turn_HDM0431A +Neosid, Air-Coil, SML, 4turn, HDM0431A, Alternate KiCad Library +Neosid Air-Coil SML 4turn HDM0431A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_5turn_HAM0531A +Neosid, Air-Coil, SML, 5turn, HAM0531A, Alternate KiCad Library +Neosid Air-Coil SML 5turn HAM0531A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_5turn_HDM0531A +Neosid, Air-Coil, SML, 5turn, HDM0531A, Alternate KiCad Library +Neosid Air-Coil SML 5turn HDM0531A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A +Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, Alternate KiCad Library +Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A +Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, Alternate KiCad Library +Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Air-Coil_SML_6turn_HAM0631A +Neosid, Air-Coil, SML, 6turn, HAM0631A, Alternate KiCad Library +Neosid Air-Coil SML 6turn HAM0631A +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_MicroCoil_Ms36-L +Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94, Alternate KiCad Library +Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf, Alternate KiCad Library +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms50 +Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf, Alternate KiCad Library +Neosid Power Inductor Ms50 SMD Fixed inductor +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms50T +Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf, Alternate KiCad Library +Neosid Power Inductor Ms50T SMD Fixed inductor high temperature +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms85 +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf, Alternate KiCad Library +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms85T +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf, Alternate KiCad Library +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms95 +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf, Alternate KiCad Library +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms95T +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf, Alternate KiCad Library +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_Ms95a +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf, Alternate KiCad Library +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-NE95H +Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf, Alternate KiCad Library +Neosid Inductor SM-NE95H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-NE127 +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-NE127_BigPads +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-NE150 +Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf, Alternate KiCad Library +Neosid Inductor SM-NE150 Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-PIC0512H +Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf, Alternate KiCad Library +Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-PIC0602H +Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf, Alternate KiCad Library +Neosid Power Inductor SM-PIC0602H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-PIC0612H +Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf, Alternate KiCad Library +Neosid Power Inductor SM-PIC0612H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SM-PIC1004H +Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf, Alternate KiCad Library +Neosid Inductor SM-PIC1004H Fixed inductor SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SMS-ME3010 +Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf, Alternate KiCad Library +Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SMS-ME3015 +Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf, Alternate KiCad Library +Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SMs42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf, Alternate KiCad Library +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SMs50 +Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf, Alternate KiCad Library +Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SMs85 +Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf, Alternate KiCad Library +Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Neosid_SMs95_SMs95p +Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf, Alternate KiCad Library +Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Pulse_PA4320 +Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf, Alternate KiCad Library +Inductor SMD Pulse PA4320 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Sagami_CER1242B +Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library +inductor sagami cer12xxb smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Sagami_CER1257B +Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library +inductor sagami cer12xxb smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Sagami_CER1277B +Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library +inductor sagami cer12xxb smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_SigTra_SC3316F +http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf, Alternate KiCad Library +Choke +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Sumida_CDMC6D28_7.25x6.5mm +SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf), Alternate KiCad Library +Inductor Sumida SMD CDMC6D28 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Sunlord_MWSA0518_5.4x5.2mm +Inductor, Sunlord, MWSA0518, 5.4mmx5.2mm, Alternate KiCad Library +inductor Sunlord smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_NLV25_2.5x2.0mm +TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf, Alternate KiCad Library +tdk nlv25 nlcv25 nlfv25 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_NLV32_3.2x2.5mm +TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf, Alternate KiCad Library +tdk nlv32 nlcv32 nlfv32 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF6025 +Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf), Alternate KiCad Library +Inductor TDK_SLF6025 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF6028 +Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf), Alternate KiCad Library +Inductor TDK_SLF6028 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF6045 +Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf), Alternate KiCad Library +Inductor TDK_SLF6045 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF7032 +Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf), Alternate KiCad Library +Inductor TDK_SLF7032 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF7045 +Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf), Alternate KiCad Library +Inductor TDK_SLF7045 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF7055 +Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf), Alternate KiCad Library +Inductor TDK_SLF7055 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF10145 +Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf), Alternate KiCad Library +Inductor TDK_SLF10145 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF10165 +Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf), Alternate KiCad Library +Inductor TDK_SLF10165 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF12555 +Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf), Alternate KiCad Library +Inductor SLF12555 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF12565 +Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf), Alternate KiCad Library +Inductor SLF12565 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_SLF12575 +Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf), Alternate KiCad Library +Inductor SLF12575 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_VLF10040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library +inductor TDK VLP smd VLF10040 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TDK_VLP8040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library +inductor TDK VLP smd VLP8040 +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_MD-1616 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_MD-2020 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_MD-3030 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_MD-4040 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_MD-5050 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm, Alternate KiCad Library +inductor taiyo-yuden md smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-20xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-20xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-24xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-24xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-30xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-30xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-40xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-40xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-50xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-50xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-60xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-60xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-80xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-80xx_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-10050_9.8x10.0mm +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_BigPads +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library +inductor taiyo-yuden nr smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TracoPower_TCK-047_5.2x5.8mm +Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf, Alternate KiCad Library +inductor smd traco +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_TracoPower_TCK-141 +Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf, Alternate KiCad Library +Choke SMD +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-1212 +Inductor, Vishay, IHLP series, 3.0mmx3.0mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-1616 +Inductor, Vishay, IHLP series, 4.1mmx4.1mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-2020 +Inductor, Vishay, IHLP series, 5.1mmx5.1mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-2525 +Inductor, Vishay, IHLP series, 6.3mmx6.3mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-4040 +Inductor, Vishay, IHLP series, 10.2mmx10.2mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-5050 +Inductor, Vishay, IHLP series, 12.7mmx12.7mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHLP-6767 +Inductor, Vishay, IHLP series, 17.0mmx17.0mm, Alternate KiCad Library +inductor vishay ihlp smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHSM-3825 +Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHSM-4825 +Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHSM-5832 +Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Vishay_IHSM-7832 +Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm, Alternate KiCad Library +inductor vishay icsm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1030 +Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1040 +Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1050 +Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1335 +Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1350 +Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1365 +Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-1890 +Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-2212 +Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-5040 +Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-7030 +Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-7040 +Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCI-7050 +Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm, Alternate KiCad Library +inductor Wuerth hci smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1050 +Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1052 +Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1070 +Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1078 +Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1190 +Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1240 +Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1350 +Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-1390 +Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-7050 +Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_HCM-7070 +Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm, Alternate KiCad Library +inductor Wuerth hcm smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-1610 +Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-2010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-2506 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-2508 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-2510 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-2512 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-3010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-3012 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-3015 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-3020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-4020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_MAPI-4030 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm, Alternate KiCad Library +inductor Wuerth smd +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf, Alternate KiCad Library +Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-DD-Typ-M-Typ-S +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf, Alternate KiCad Library +Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS +0 +4 +4 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-GF-1210 +Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf, Alternate KiCad Library +Unshielded Inductor WE-GF 1210 Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD-Typ-7345 +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD 7345 Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD-Typ-LS +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD-Typ-LS_BigPads +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD-Typ-M-Typ-S +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD-Typ-M-Typ-S_BigPads +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD2-Typ-L +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD2 TypL Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD2-Typ-MS +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD2 TypMS Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD2-Typ-XL +Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD2 TypXL Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PD4-Typ-X +Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf, Alternate KiCad Library +Choke Power Inductor WE-PD4 TypX Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PDF +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PDF Wuerth +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-PDF_BigPads +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +PCM_Inductor_SMD_Handsoldering_AKL +L_Wuerth_WE-TPC-3816 +L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf, Alternate KiCad Library +wurth wuerth smd inductor +0 +2 +2 +PCM_Inductor_THT_AKL +Choke_EPCOS_B82722A +Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf, Alternate KiCad Library +chokes epcos tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN102-04-14.0x14.0mm +Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN112-04-17.7x17.1mm +Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN114-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN116-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN122-04-28.0x27.0mm +Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN142-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN143-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN152-04-43.0x41.8mm +Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN202-04-8.8x18.2mm +Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN204-04-9.0x14.0mm +Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN212-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN214-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN216-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN218-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN222-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN232-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +Choke_Schaffner_RN242-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL +L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 +Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23, Alternate KiCad Library +inductor axial horizontal +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L9.5mm_D4.0mm_P2.54mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 +Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 +Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC +Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 +Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P2.5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=2.5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 2.5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P7.5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=7.5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 7.5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P10mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=10mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 10mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P12.5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=12.5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 12.5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P15mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=15mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 15mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P20mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=20mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 20mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P25mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=25mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 25mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Axial_P30mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=30mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 30mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_muRATA_5100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_muRATA_5200 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Wuerth_WE-CMB-L +Wuerth, WE-CMB, Bauform L,, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Wuerth_WE-CMB-M +Wuerth, WE-CMB, Bauform M, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Wuerth_WE-CMB-S +Wuerth, WE-CMB, Bauform S, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Wuerth_WE-CMB-XL +Wuerth, WE-CMB, Bauform XL,, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Wuerth_WE-CMB-XS +Wuerth, WE-CMB, Bauform XS, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL +L_CommonMode_Wuerth_WE-CMB-XXL +Wuerth, WE-CMB, Bauform XXL, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL +L_Radial_D6.0mm_P4.00mm +Inductor, Radial series, Radial, pin pitch=4.00mm, , diameter=6.0mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D7.0mm_P3.00mm +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 3.00mm diameter 7mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D7.2mm_P3.00mm_MuRATA_1700 +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7.2mm, MuRATA, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm MuRATA 1700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D7.5mm_P3.50mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=3.50mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 3.50mm diameter 7.5mm Fastron 07P +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D7.5mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D7.8mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D8.7mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D9.5mm_P5.00mm_Fastron_07HVP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D10.0mm_P5.00mm_Fastron_07M +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D10.0mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS +Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf, Alternate KiCad Library +Inductor Radial Murata 1200RS +0 +4 +2 +PCM_Inductor_THT_AKL +L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.0mm_P5.00mm_Fastron_11P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.0mm_P6.00mm_MuRATA_1900R +Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D12.5mm_P9.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D13.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D14.2mm_P10.00mm_Neosid_SD14 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D18.0mm_P10.00mm +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 18mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D21.0mm_P19.00mm +Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 19.00mm diameter 21mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D24.0mm_P24.00mm +Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm, Alternate KiCad Library +Inductor Radial series Radial pin pitch 24.00mm diameter 24mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D24.4mm_P22.90mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D24.4mm_P23.10mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D24.4mm_P23.40mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D24.4mm_P23.70mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D24.4mm_P23.90mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D28.0mm_P29.20mm +Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm, Alternate KiCad Library +Inductor Radial series Radial pin pitch 29.20mm diameter 28mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D29.8mm_P28.30mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D29.8mm_P28.50mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D29.8mm_P28.80mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D29.8mm_P29.00mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D29.8mm_P29.30mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 +Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 +Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 +Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 +Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 +L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 +L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 +L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 +L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 +L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 +L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 +L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 +L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 +L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 +L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D26.0mm_P5.08mm +inductor 26mm diameter toroid, Alternate KiCad Library +SELF INDUCTOR +0 +3 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 +L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D40.0mm_P48.26mm +L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 +L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 +L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 +L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm +L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm +L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L14.0mm_W6.3mm_P4.57mm_Pulse_A +L_Toroid, Vertical series, Radial, pin pitch=4.57mm, , length*width=13.97*6.35mm^2, Pulse, A, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 4.57mm length 13.97mm width 6.35mm Pulse A +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L14.7mm_W8.6mm_P5.58mm_Pulse_KM-1 +L_Toroid, Vertical series, Radial, pin pitch=5.58mm, , length*width=14.73*8.64mm^2, Pulse, KM-1, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.58mm length 14.73mm width 8.64mm Pulse KM-1 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G +L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 +L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 +L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D +L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 +L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 +L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 +L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL +L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 +L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +Choke_EPCOS_B82722A +Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf, Alternate KiCad Library +chokes epcos tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN102-04-14.0x14.0mm +Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN112-04-17.7x17.1mm +Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN114-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN116-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN122-04-28.0x27.0mm +Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN142-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN143-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN152-04-43.0x41.8mm +Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN202-04-8.8x18.2mm +Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN204-04-9.0x14.0mm +Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN212-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN214-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN216-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN218-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN222-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN232-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +Choke_Schaffner_RN242-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library +chokes schaffner tht +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 +Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23, Alternate KiCad Library +inductor axial horizontal +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 +Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 +Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC +Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 +Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library +Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P2.5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=2.5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 2.5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P7.5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=7.5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 7.5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P10mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=10mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 10mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P12.5mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=12.5mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 12.5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P15mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=15mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 15mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P20mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=20mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 20mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P25mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=25mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 25mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Axial_P30mm_Air +Air-Core Inductor, Axial, Horizontal, pin pitch=30mm, Alternate KiCad Library +Inductor Air Coil Axial Horizontal pin pitch 30mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_muRATA_5100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_muRATA_5200 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library +L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Wuerth_WE-CMB-L +Wuerth, WE-CMB, Bauform L,, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Wuerth_WE-CMB-M +Wuerth, WE-CMB, Bauform M, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Wuerth_WE-CMB-S +Wuerth, WE-CMB, Bauform S, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Wuerth_WE-CMB-XL +Wuerth, WE-CMB, Bauform XL,, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Wuerth_WE-CMB-XS +Wuerth, WE-CMB, Bauform XS, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_CommonMode_Wuerth_WE-CMB-XXL +Wuerth, WE-CMB, Bauform XXL, Alternate KiCad Library +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +PCM_Inductor_THT_AKL_Double +L_Radial_D7.5mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D7.8mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D8.7mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D9.5mm_P5.00mm_Fastron_07HVP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D10.0mm_P5.00mm_Fastron_07M +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D10.0mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS +Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf, Alternate KiCad Library +Inductor Radial Murata 1200RS +0 +4 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.0mm_P5.00mm_Fastron_11P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.0mm_P6.00mm_MuRATA_1900R +Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D12.5mm_P9.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D13.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D14.2mm_P10.00mm_Neosid_SD14 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D18.0mm_P10.00mm +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 10.00mm diameter 18mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D21.0mm_P19.00mm +Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 19.00mm diameter 21mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D24.0mm_P24.00mm +Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm, Alternate KiCad Library +Inductor Radial series Radial pin pitch 24.00mm diameter 24mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D24.4mm_P22.90mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D24.4mm_P23.10mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D24.4mm_P23.40mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D24.4mm_P23.70mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D24.4mm_P23.90mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D28.0mm_P29.20mm +Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm, Alternate KiCad Library +Inductor Radial series Radial pin pitch 29.20mm diameter 28mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D29.8mm_P28.30mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D29.8mm_P28.50mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D29.8mm_P28.80mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D29.8mm_P29.00mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D29.8mm_P29.30mm_muRATA_1400series +Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 +Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 +Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 +Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 +Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library +Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 +L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 +L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 +L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 +L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 +L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 +L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 +L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 +L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 +L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 +L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D26.0mm_P5.08mm +inductor 26mm diameter toroid, Alternate KiCad Library +SELF INDUCTOR +0 +3 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 +L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D40.0mm_P48.26mm +L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 +L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 +L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 +L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm +L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm +L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G +L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 +L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 +L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D +L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 +L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 +L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 +L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 +0 +2 +2 +PCM_Inductor_THT_AKL_Double +L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 +L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library +L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 +0 +2 +2 +PCM_Jumper_AKL +Jumper_P2.54mm_D0.7mm +Jumper 2.54mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 2.54mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P2.54mm_D1.2mm +Jumper 2.54mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 2.54mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P5.08mm_D0.7mm +Jumper 5.08mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 5.08mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P5.08mm_D1.2mm +Jumper 5.08mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 5.08mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P7.62mm_D0.7mm +Jumper 7.62mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 7.62mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P7.62mm_D1.2mm +Jumper 7.62mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 7.62mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P10.16mm_D0.7mm +Jumper 10.16mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 10.16mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P10.16mm_D1.2mm +Jumper 10.16mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 10.16mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P12.70mm_D0.7mm +Jumper 12.70mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 12.70mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P12.70mm_D1.2mm +Jumper 12.70mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 12.70mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P15.24mm_D0.7mm +Jumper 15.24mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 15.24mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P15.24mm_D1.2mm +Jumper 15.24mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 15.24mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P17.78mm_D0.7mm +Jumper 17.78mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 17.78mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P17.78mm_D1.2mm +Jumper 17.78mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 17.78mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P20.32mm_D0.7mm +Jumper 20.32mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 20.32mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P20.32mm_D1.2mm +Jumper 20.32mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 20.32mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P25.40mm_D0.7mm +Jumper 25.40mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 25.40mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P25.40mm_D1.2mm +Jumper 25.40mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 25.40mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P30.48mm_D0.7mm +Jumper 30.48mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 30.48mm +0 +2 +2 +PCM_Jumper_AKL +Jumper_P30.48mm_D1.2mm +Jumper 30.48mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 30.48mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P2.54mm_D0.7mm +Jumper 2.54mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 2.54mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P5.08mm_D0.7mm +Jumper 5.08mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 5.08mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P5.08mm_D1.2mm +Jumper 5.08mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 5.08mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P7.62mm_D0.7mm +Jumper 7.62mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 7.62mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P7.62mm_D1.2mm +Jumper 7.62mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 7.62mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P10.16mm_D0.7mm +Jumper 10.16mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 10.16mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P10.16mm_D1.2mm +Jumper 10.16mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 10.16mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P12.70mm_D0.7mm +Jumper 12.70mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 12.70mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P12.70mm_D1.2mm +Jumper 12.70mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 12.70mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P15.24mm_D0.7mm +Jumper 15.24mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 15.24mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P15.24mm_D1.2mm +Jumper 15.24mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 15.24mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P17.78mm_D0.7mm +Jumper 17.78mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 17.78mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P17.78mm_D1.2mm +Jumper 17.78mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 17.78mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P20.32mm_D0.7mm +Jumper 20.32mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 20.32mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P20.32mm_D1.2mm +Jumper 20.32mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 20.32mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P25.40mm_D0.7mm +Jumper 25.40mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 25.40mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P25.40mm_D1.2mm +Jumper 25.40mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 25.40mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P30.48mm_D0.7mm +Jumper 30.48mm pitch 0.7mm hole diameter, Alternate KiCad Library +Jumper 30.48mm +0 +2 +2 +PCM_Jumper_AKL_Double +Jumper_P30.48mm_D1.2mm +Jumper 30.48mm pitch 1.2mm hole diameter, Alternate KiCad Library +Jumper 30.48mm +0 +2 +2 +PCM_LED_SMD_AKL +LED-APA102-2020 +http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf +LED RGB SPI +0 +8 +6 +PCM_LED_SMD_AKL +LED-L1T2_LUMILEDS +http://www.lumileds.com/uploads/438/DS133-pdf +LUMILEDS LUXEON TX L1T2 LED +0 +3 +3 +PCM_LED_SMD_AKL +LED_1.8mm_GullWing +1.8mm subminiature LED, Gull wing leads, 1.8mm diameter, https://www.tme.eu/Document/4f49387584433289ec12a23aabbb9450/OSXX212411C-TR7_VER.A.3.2.pdf, Alternate KiCad Library +LED gull wing 1.8mm subminiature +0 +2 +2 +PCM_LED_SMD_AKL +LED_1.8mm_GullWing_ReverseMount +1.8mm subminiature LED, Gull wing leads, reverse-mount, 1.8mm diameter, https://www.tme.eu/Document/73cfb279a48f56dcf1d41531607a6531/km-27id-09.pdf, Alternate KiCad Library +LED ReverseMount Reverse gull wing 1.8mm subminiature +0 +2 +2 +PCM_LED_SMD_AKL +LED_1W_3W_R8 +https://www.gme.cz/data/attachments/dsh.518-234.1.pdf +LED 1W 3W 5W +0 +10 +3 +PCM_LED_SMD_AKL +LED_0201_0603Metric +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED +0 +4 +2 +PCM_LED_SMD_AKL +LED_0201_0603Metric_Pad0.64x0.40mm +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED handsolder +0 +4 +2 +PCM_LED_SMD_AKL +LED_0402_1005Metric +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_0402_1005Metric_Pad0.77x0.64mm +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_0603_1608Metric +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_0603_1608Metric_Pad1.05x0.95mm +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_0805_2012Metric +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_0805_2012Metric_Pad1.15x1.40mm +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_1206_3216Metric +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_1206_3216Metric_Pad1.42x1.75mm +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_1206_3216Metric_ReverseMount_Hole1.8x2.4mm +LED SMD 1206 (3216 Metric), reverse mount, square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode reverse +0 +2 +2 +PCM_LED_SMD_AKL +LED_1210_3225Metric +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_1210_3225Metric_Pad1.42x2.65mm +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_1812_4532Metric +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_1812_4532Metric_Pad1.30x3.40mm +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_2010_5025Metric +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_2010_5025Metric_Pad1.52x2.65mm +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_2512_6332Metric +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_2512_6332Metric_Pad1.52x3.35mm +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_AKL +LED_ASMB-KTF0-0A306 +2220 Tricolor PLCC-4 LED, https://docs.broadcom.com/docs/ASMB-KTF0-0A306-DS100 +Tricolor LED +0 +4 +4 +PCM_LED_SMD_AKL +LED_Avago_PLCC4_3.2x2.8mm_CW +https://docs.broadcom.com/docs/AV02-4186EN +LED Avago PLCC-4 ASMB-MTB0-0A3A2 +0 +4 +4 +PCM_LED_SMD_AKL +LED_Avago_PLCC6_3x2.8mm +https://docs.broadcom.com/docs/AV02-3793EN +LED Avago PLCC-6 ASMT-YTB7-0AA02 +0 +6 +6 +PCM_LED_SMD_AKL +LED_CSP_Samsung_LH181B_2.36x2.36mm +High Power CSP LED, 2.36mm x 2.36mm, 1.4A max, https://cdn.samsung.com/led/file/resource/2021/01/Data_Sheet_LH181B_Rev.4.0.pdf +LED Samsung LH181B +0 +2 +2 +PCM_LED_SMD_AKL +LED_Cree-PLCC4_2x2mm_CW +2.0mm x 2.0mm PLCC4 LED, http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/HB/Data-Sheets/CLMVBFKA.pdf +LED Cree PLCC-4 +0 +4 +4 +PCM_LED_SMD_AKL +LED_Cree-PLCC4_3.2x2.8mm_CCW +3.2mm x 2.8mm PLCC4 LED, http://www.cree.com/led-components/media/documents/CLV1AFKB(874).pdf +LED Cree PLCC-4 +0 +4 +4 +PCM_LED_SMD_AKL +LED_Cree-PLCC4_5x5mm_CW +5.0mm x 5.0mm PLCC4 LED +LED Cree PLCC-4 +0 +4 +4 +PCM_LED_SMD_AKL +LED_Cree-PLCC6_4.7x1.5mm +4.7mm x 1.5mm PLCC6 LED, http://www.cree.com/led-components/media/documents/1381-QLS6AFKW.pdf +LED Cree PLCC-6 +0 +6 +6 +PCM_LED_SMD_AKL +LED_Cree-XB +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXBD.pdf +LED Cree XB +0 +5 +3 +PCM_LED_SMD_AKL +LED_Cree-XH +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XHB.pdf +LED Cree XH +0 +8 +2 +PCM_LED_SMD_AKL +LED_Cree-XHP35 +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds--XHP35.pdf +LED Cree XHP35 +0 +6 +3 +PCM_LED_SMD_AKL +LED_Cree-XHP50_6V +Cree XHP50, 6V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED Cree XHP50 +0 +15 +3 +PCM_LED_SMD_AKL +LED_Cree-XHP50_12V +Cree XHP50, 12V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED XHP50 Cree +0 +15 +3 +PCM_LED_SMD_AKL +LED_Cree-XHP70_6V +Cree XHP70 LED, 6V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +PCM_LED_SMD_AKL +LED_Cree-XHP70_12V +Cree XHP70 LED, 12V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +PCM_LED_SMD_AKL +LED_Cree-XP +LED Cree-XP http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXPE2.pdf +LED Cree XP +0 +6 +3 +PCM_LED_SMD_AKL +LED_Cree-XP-G +LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf +LED Cree XP-G +0 +6 +3 +PCM_LED_SMD_AKL +LED_Cree-XQ +LED Cree-XQ http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +PCM_LED_SMD_AKL +LED_Cree-XQ_BigPads +LED Cree-XQ handsoldering pads http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +PCM_LED_SMD_AKL +LED_Dialight_591 +LED SMD 3mm Right Angle series (http://www.dialightsignalsandcomponents.com/Assets/Drawings/2D_Drawings_DrawingDetailedSpec/C17354.pdf) +LED Dialight 591 +0 +2 +2 +PCM_LED_SMD_AKL +LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm +http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf +RGB LED NeoPixel addressable +0 +4 +4 +PCM_LED_SMD_AKL +LED_Kingbright_AAA3528ESGCT +Kingbright, dual LED, 3.5 x 2.8 mm Surface Mount LED Lamp (http://www.kingbrightusa.com/images/catalog/SPEC/AAA3528ESGCT.pdf) +dual led smd +0 +4 +4 +PCM_LED_SMD_AKL +LED_Kingbright_APFA3010_3x1.5mm_Horizontal +LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf +LED RGB APFA3010 KINGBRIGHT 3x1.5mm +0 +4 +4 +PCM_LED_SMD_AKL +LED_LiteOn_LTST-C19HE1WT +LiteOn RGB LED; https://optoelectronics.liteon.com/upload/download/DS22-2008-0044/LTST-C19HE1WT.pdf +LED RGB Chip SMD +0 +4 +4 +PCM_LED_SMD_AKL +LED_LiteOn_LTST-S326 +http://optoelectronics.liteon.com/upload/download/DS22-2000-287/LTST-S326KGJRKT.PDF +LED SMD right angle CCA +0 +3 +3 +PCM_LED_SMD_AKL +LED_Lumex_SML-LX0303SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0303SIUPGUSB.pdf +LED RGB +0 +4 +4 +PCM_LED_SMD_AKL +LED_Lumex_SML-LX0404SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0404SIUPGUSB.pdf +LED RGB +0 +4 +4 +PCM_LED_SMD_AKL +LED_Luminus_MP-3030-1100_3.0x3.0mm +Mid Power LED, Luminus MP-3030-1100, 3.0x3.0mm, 816mW, https://download.luminus.com/datasheets/Luminus_MP3030_1100_Datasheet.pdf +LED Luminus MP-3030-1100 +0 +5 +2 +PCM_LED_SMD_AKL +LED_Osram_Lx_P47F_D2mm +OSRAM, LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf +LED P47F series +0 +3 +2 +PCM_LED_SMD_AKL +LED_Osram_Lx_P47F_D2mm_ReverseMount +OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf +LED ReverseMount Reverse +0 +2 +2 +PCM_LED_SMD_AKL +LED_PLCC-2 +LED PLCC-2 SMD package +LED PLCC-2 SMD +0 +2 +2 +PCM_LED_SMD_AKL +LED_PLCC-2_2216 +LED PLCC-2 2.2x1.6mm SMD package. https://www.tme.eu/Document/723391ba4b1f717ebfe98799382ebdbb/RF-XXTI16DS-EE-Y.pdf. Alternate KiCad Library +LED PLCC-2 SMD 2216 +0 +2 +2 +PCM_LED_SMD_AKL +LED_PLCC-2_3014 +SMD LED, PLCC-2 3.0mm length, 1.4mm width, https://www.tme.eu/Document/6c0a43580aa62cfe77aa9a31554c3255/LTW-K140SZRXX-EU.pdf, Alternate KiCad Library +LED plcc2 3.0x1.4 +0 +2 +2 +PCM_LED_SMD_AKL +LED_PLCC-2_3535 +LED PLCC-2 SMD package, 3.5x3.5mm https://www.tme.eu/Document/5c1b888566ad8bf7fa41166785999271/OSXX3535C1A-150MA_VER%20A.1.1.pdf +LED PLCC-2 SMD 3.5x3.5 +0 +2 +2 +PCM_LED_SMD_AKL +LED_PLCC-4_5.6x3mm_1EP_2.6x1.15mm +5.6mm x 3.0mm PLCC4 LED with an exposed thermal pad, https://www.tme.eu/Document/5e5e780f7397a81e8e7da26da30ecd93/OSXX5630C1A-150mA_Ver.a.5.pdf, Alternate KiCad Library +LED Cree PLCC-4 5.6x3 ep +0 +6 +3 +PCM_LED_SMD_AKL +LED_PLCC-6_3.5x3.5mm +https://www.tme.eu/Document/166cfa4ad94133d1d5c75c6ae9fdadc3/N0M50S15IC.pdf +LED RGB PLCC-6 +0 +6 +6 +PCM_LED_SMD_AKL +LED_PLCC_2835 +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_PLCC_2835_BigPads +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_RGB_1210 +RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN +LED 3227 +0 +4 +4 +PCM_LED_SMD_AKL +LED_RGB_5050-6 +http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf +RGB LED 5050-6 +0 +6 +6 +PCM_LED_SMD_AKL +LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm +http://www.farnell.com/datasheets/2003905.pdf +LED RGB PLCC-6 CLP6C-FBK +0 +6 +6 +PCM_LED_SMD_AKL +LED_RGB_Everlight_EASV3015RGBA0_Horizontal +LED, RGB, right-angle, clear, https://everlightamericas.com/index.php?controller=attachment&id_attachment=3220 +LED RGB right-angle +0 +4 +4 +PCM_LED_SMD_AKL +LED_RGB_Getian_GT-P6PRGB4303 +https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf +LED RGB +0 +14 +7 +PCM_LED_SMD_AKL +LED_RGB_PLCC-6 +RGB LED PLCC-6 +RGB LED PLCC-6 +0 +6 +6 +PCM_LED_SMD_AKL +LED_RGB_Wuerth-PLCC4_3.2x2.8mm_150141M173100 +3.2mm x 2.8mm PLCC4 LED, https://www.we-online.de/katalog/datasheet/150141M173100.pdf +LED RGB Wurth PLCC-4 +0 +4 +4 +PCM_LED_SMD_AKL +LED_ROHM_SMLVN6 +https://www.rohm.com/datasheet/SMLVN6RGB1U +LED ROHM SMLVN6 +0 +6 +6 +PCM_LED_SMD_AKL +LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm +https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf +LED RGB NeoPixel Nano +0 +4 +4 +PCM_LED_SMD_AKL +LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm +https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf +LED RGB NeoPixel Mini +0 +4 +4 +PCM_LED_SMD_AKL +LED_SK6812_EC15_1.5x1.5mm +http://www.newstar-ledstrip.com/product/20181119172602110.pdf +LED RGB NeoPixel +0 +4 +4 +PCM_LED_SMD_AKL +LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm +https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf +LED RGB NeoPixel +0 +4 +4 +PCM_LED_SMD_AKL +LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm +https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf +LED RGB NeoPixel +0 +4 +4 +PCM_LED_SMD_AKL +LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm +https://cdn-shop.adafruit.com/datasheets/WS2812.pdf +LED RGB NeoPixel +0 +6 +6 +PCM_LED_SMD_AKL +LED_Yuji_5730 +LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf +LED Yuji 5730 +0 +5 +3 +PCM_LED_SMD_AKL +LED_miniPLCC_2315 +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +PCM_LED_SMD_AKL +LED_miniPLCC_2315_BigPads +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1.8mm_GullWing +1.8mm subminiature LED, Gull wing leads, 1.8mm diameter, https://www.tme.eu/Document/4f49387584433289ec12a23aabbb9450/OSXX212411C-TR7_VER.A.3.2.pdf, Alternate KiCad Library +LED gull wing 1.8mm subminiature +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1206_3216Metric +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1206_3216Metric_Pad1.42x1.75mm +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1210_3225Metric +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1210_3225Metric_Pad1.42x2.65mm +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1812_4532Metric +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_1812_4532Metric_Pad1.30x3.40mm +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_2010_5025Metric +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_2010_5025Metric_Pad1.52x2.65mm +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_2512_6332Metric +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_2512_6332Metric_Pad1.52x3.35mm +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +PCM_LED_SMD_Handsoldering_AKL +LED_PLCC-2 +LED PLCC-2 SMD package +LED PLCC-2 SMD +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D1.8mm_W3.3mm_H2.4mm +LED, Round, Rectangular size 3.3x2.4mm^2 diameter 1.8mm, 2 pins +LED Round Rectangular size 3.3x2.4mm^2 diameter 1.8mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D2.0mm_W4.0mm_H2.8mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf +LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D2.0mm_W4.8mm_H2.5mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf +LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm +LED, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm-3_CA +LED, diameter 3.0mm, 3 pins, diameter 3.0mm, Common Cathode, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 3 pins diameter 3.0mm commoncathode common cathode +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm-3_CC +LED, diameter 3.0mm, 3 pins, diameter 3.0mm, Common Cathode, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 3 pins diameter 3.0mm commoncathode common cathode +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_BiDir +LED, Dual, Bidirectional, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Clear +IR-LED, diameter 3.0mm, 2 pins, color: clear +IR infrared LED diameter 3.0mm 2 pins clear +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Clear_BiDir +LED, dual, bidirectional. diameter 3.0mm, 2 pins, color: clear +LED diameter 3.0mm 2 pins clear dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_FlatTop +LED, Round, FlatTop, diameter 3.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.9A).pdf +LED Round FlatTop diameter 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_BiDir +LED dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm_BiDir +LED, dua, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm_BiDir +LED, dual ,bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm_BiDir +LED, dual, bidirectional diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm_BiDir +LED, dual ,bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm_BiDir +LED, dual ,bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D3.0mm_IRBlack +IR-ED, diameter 3.0mm, 2 pins, color: black +IR infrared LED diameter 3.0mm 2 pins black +0 +2 +2 +PCM_LED_THT_AKL +LED_D3.0mm_IRGrey +IR-LED, diameter 3.0mm, 2 pins, color: grey +IR infrared LED diameter 3.0mm 2 pins grey +0 +2 +2 +PCM_LED_THT_AKL +LED_D4.0mm +LED, diameter 4.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.12B).pdf +LED diameter 4.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm-3_CA +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm-3_CC +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm-4_RGB +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +PCM_LED_THT_AKL +LED_D5.0mm-4_RGB_Staggered_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +rgb led +0 +4 +4 +PCM_LED_THT_AKL +LED_D5.0mm-4_RGB_Wide_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +PCM_LED_THT_AKL +LED_D5.0mm_BiDir +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Clear +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Clear_BiDir +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_FlatTop +LED, Round, FlatTop, diameter 5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-483GDT(Ver.15B).pdf +LED Round FlatTop diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D5.0mm_IRBlack +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D5.0mm_IRGrey +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D8.0mm +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D8.0mm-3_CA +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D8.0mm-3_CC +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D8.0mm_BiDir +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D10.0mm +LED, diameter 10.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED10-4500RT%23KIN.pdf +LED diameter 10.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_D10.0mm-3_CA +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D10.0mm-3_CC +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_D20.0mm +LED, diameter 20.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/DLC2-6GD%28V6%29.pdf +LED diameter 20.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Indicator_Acom_D3.0mm_W7.0mm_L6.35mm +Two-color LED indicator, Common Anode, PCB mount, LED diameter 3.0mm, 3 pins, https://www.tme.eu/Document/905a4151dde919d2d8d745cddf192c15/l-130wdt-1egw.pdf, Alternate KiCad Library +LED diameter 3.0mm 3 pins indicator 7.0x6.35 common anode acom +0 +3 +3 +PCM_LED_THT_AKL +LED_Indicator_Acom_D5.0mm_W7.5mm_L9.5mm +Two-color LED indicator, Common Cathode, PCB mount, LED diameter 5.0mm, 3 pins, https://www.tme.eu/Document/02e4c29d04845d1c5061e9bd843a2d78/L-59CB_1EGW.pdf, Alternate KiCad Library +LED diameter 5.0mm 3 pins indicator 7.5x9.5 common cathode kcom +0 +3 +3 +PCM_LED_THT_AKL +LED_Indicator_D1.8mm_W2.44mm_L7.62mm +LED indicator, Vertical PCB mount, LED diameter 1.8mm, 2 pins, https://www.tme.eu/Document/c2c5b2134874d40f7c9270694cfe393c/KM2520EJ-1SGD.pdf, Alternate KiCad Library +LED diameter 1.8mm 2 pins indicator 2.44x7.62 +0 +2 +2 +PCM_LED_THT_AKL +LED_Indicator_D3.0mm_W4.6mm_L6.5mm +LED indicator, PCB mount, LED diameter 3.0mm, 2 pins, https://www.tme.eu/Document/c83ca39e931b9f23806af8fa303767f3/H30E-1AD.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.6x6.5 +0 +2 +2 +PCM_LED_THT_AKL +LED_Indicator_D5.0mm_W6.0mm_L9.2mm +LED indicator, PCB mount, LED diameter 5.0mm, 2 pins, https://www.tme.eu/Document/4da22a60eb0ad7b2e3e6bca18c034646/L-1503CB_1LGD.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 6.0x9.2 +0 +2 +2 +PCM_LED_THT_AKL +LED_Indicator_Dual_Acom_D3.0mm_W7.0mm_L9.0mm +Dual two-color LED indicator, PCB mount, LED diameter 3.0mm, 6 pins, https://www.tme.eu/Document/8be51179011fe304506a5b9bcb5d97ce/H280CBC.pdf, Alternate KiCad Library +dual LED diameter 3.0mm 3 pins indicator 7.0x9.0 common anode acom +0 +6 +6 +PCM_LED_THT_AKL +LED_Indicator_Dual_D3.0mm_W4.4mm_L9.1mm +Dual LED indicator, PCB mount, LED diameter 3.0mm, 4 pins, https://www.tme.eu/Document/b674d69546fee33ff395807565c0dcac/FIX-LED-301.pdf, Alternate KiCad Library +dual LED diameter 3.0mm 4 pins indicator 4.4x9.1 +0 +4 +4 +PCM_LED_THT_AKL +LED_Indicator_Dual_D3.0mm_W4.6mm_L10mm +Dual LED indicator, PCB mount, LED diameter 3.0mm, 4 pins, https://www.tme.eu/Document/b674d69546fee33ff395807565c0dcac/FIX-LED-301.pdf, Alternate KiCad Library +dual LED diameter 3.0mm 4 pins indicator 4.6x10 +0 +4 +4 +PCM_LED_THT_AKL +LED_Indicator_Dual_D5.0mm_W6.1mm_L11.0mm +Dual LED indicator, PCB mount, LED diameter 5.0mm, 4 pins, https://www.tme.eu/Document/ca7b334ddf94be58ac39b49aced90d92/L-1503EB.pdf, Alternate KiCad Library +dual LED diameter 5.0mm 4 pins indicator 6.1x11.0 +0 +4 +4 +PCM_LED_THT_AKL +LED_Indicator_Dual_Kcom_D3.0mm_W7.0mm_L9.0mm +Dual two-color LED indicator, PCB mount, LED diameter 3.0mm, 6 pins, https://www.tme.eu/Document/8be51179011fe304506a5b9bcb5d97ce/H280CBC.pdf, Alternate KiCad Library +dual LED diameter 3.0mm 6 pins indicator 7.0x9.0 common cathode kcom +0 +6 +6 +PCM_LED_THT_AKL +LED_Indicator_Kcom_D3.0mm_W7.0mm_L6.35mm +Two-color LED indicator, Common Cathode, PCB mount, LED diameter 3.0mm, 3 pins, https://www.tme.eu/Document/905a4151dde919d2d8d745cddf192c15/l-130wdt-1egw.pdf, Alternate KiCad Library +LED diameter 3.0mm 3 pins indicator 7.0x6.35 common cathode kcom +0 +3 +3 +PCM_LED_THT_AKL +LED_Indicator_Kcom_D5.0mm_W7.5mm_L9.5mm +Two-color LED indicator, Common Cathode, PCB mount, LED diameter 5.0mm, 3 pins, https://www.tme.eu/Document/02e4c29d04845d1c5061e9bd843a2d78/L-59CB_1EGW.pdf, Alternate KiCad Library +LED diameter 5.0mm 3 pins indicator 7.5x9.5 common cathode kcom +0 +3 +3 +PCM_LED_THT_AKL +LED_Indicator_Quad_D3.0mm_W4.6mm_L10.7mm +Quad LED indicator, PCB mount, LED diameter 3.0mm, 2 pins, https://www.tme.eu/Document/b6b3eab7ef1f2fa5f628641ae259d721/L-7104SB-4GD.pdf, Alternate KiCad Library +LED quad diameter 3.0mm 2 pins indicator 4.6x10.7 +0 +8 +8 +PCM_LED_THT_AKL +LED_Indicator_Triple_D3.0mm_W4.5mm_L12.5mm +Triple LED indicator, PCB mount, LED diameter 3.0mm, 6 pins, https://www.tme.eu/Document/b674d69546fee33ff395807565c0dcac/FIX-LED-301.pdf, Alternate KiCad Library +triple LED diameter 3.0mm 6 pins indicator 4.5x12.5 +0 +6 +6 +PCM_LED_THT_AKL +LED_Oval_W5.2mm_H3.8mm +LED_Oval, Oval, Oval size 5.2x3.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.12B).pdf +LED_Oval Oval Oval size 5.2x3.8mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W3.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 3.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 3.0x2.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W3.9mm_H1.8mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W3.9mm_H1.8mm_FlatTop +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W3.9mm_H1.9mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.9mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-144GDT(Ver.14B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.9mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm-CA +LED_Rectangular, Common Anode, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins Common Anode +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm-CC +LED_Rectangular, Common Cathode, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins Common Cathode +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_BiDir +LED_Rectangular, Rectangular, Bidirectional, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins bidirectional +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL +LED_Schurter_PBL +3mm LED indicator, Schurter PBL series, 4mm by 10.5mm body size, https://www.tme.eu/Document/af1fe1f72ec623150447baab24054c5e/pbl.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4x10.5 schurter pbl +0 +2 +2 +PCM_LED_THT_AKL +LED_Schurter_SRL_3mm_Angled +3mm LED indicator, Schurter SRL series, 4.8mm by 6.5mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.8x6.5 schurter srl +0 +2 +2 +PCM_LED_THT_AKL +LED_Schurter_SRL_3mm_Angled_Parallel +3mm LED indicator, Schurter SRL series, 4.8mm by 6.5mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.8x6.5 schurter srl +0 +2 +2 +PCM_LED_THT_AKL +LED_Schurter_SRL_3mm_Straight +3mm LED indicator, Schurter SRL series, 4.8mm by 4.8mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.8x4.8 schurter srl +0 +2 +2 +PCM_LED_THT_AKL +LED_Schurter_SRL_5mm_Angled +5mm LED indicator, Schurter SRL series, 7.3mm by 9.2mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 7.3x9.2 schurter srl +0 +2 +2 +PCM_LED_THT_AKL +LED_Schurter_SRL_5mm_Angled_Parallel +5mm LED indicator, Schurter SRL series, 7.3mm by 9.2mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 7.3x9.2 schurter srl +0 +2 +2 +PCM_LED_THT_AKL +LED_Schurter_SRL_5mm_Straight +5mm LED indicator, Schurter SRL series, 7.3mm by 7.3mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 7.3x7.3 schurter srl +0 +2 +2 +PCM_LED_THT_AKL +LED_SideEmitter_Rectangular_W4.5mm_H1.6mm +LED_SideEmitter_Rectangular, Rectangular, SideEmitter, Rectangular size 4.5x1.6mm^2, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf +LED_SideEmitter_Rectangular Rectangular SideEmitter Rectangular size 4.5x1.6mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL +LED_SuperFlux +LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/2378d08e3712a6a8a7495aa3cb2b8f17/OS5YKAZ141P.pdf +LED Super-Flux +0 +4 +2 +PCM_LED_THT_AKL +LED_SuperFlux_Dual +Dual LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/2010b16034ecfffa90a598de75b651e0/OSRBM4Z2C1D.pdf +LED Super-Flux dual +0 +4 +4 +PCM_LED_THT_AKL +LED_SuperFlux_RGB +RGB LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/272b61f5560930b43483fc2787fe006e/osta71a1d-a.pdf +RGB LED Super-Flux +0 +4 +4 +PCM_LED_THT_AKL +LED_SuperFlux_Reverse +LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/2378d08e3712a6a8a7495aa3cb2b8f17/OS5YKAZ141P.pdf +LED Super-Flux +0 +4 +2 +PCM_LED_THT_AKL +LED_VCCLite_5381H1_6.35x6.35mm +Red 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Red 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL +LED_VCCLite_5381H3_6.35x6.35mm +Amber 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Amber 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL +LED_VCCLite_5381H5_6.35x6.35mm +Green 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Green 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL +LED_VCCLite_5381H7_6.35x6.35mm +Yellow 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Yellow 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D1.8mm_W3.3mm_H2.4mm +LED, Round, Rectangular size 3.3x2.4mm^2 diameter 1.8mm, 2 pins +LED Round Rectangular size 3.3x2.4mm^2 diameter 1.8mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D2.0mm_W4.0mm_H2.8mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf +LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D2.0mm_W4.8mm_H2.5mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf +LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm +LED, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm-3_CA +LED, diameter 3.0mm, 3 pins, diameter 3.0mm, Common Cathode, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 3 pins diameter 3.0mm commoncathode common cathode +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm-3_CC +LED, diameter 3.0mm, 3 pins, diameter 3.0mm, Common Cathode, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 3 pins diameter 3.0mm commoncathode common cathode +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_BiDir +LED, Dual, Bidirectional, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Clear +IR-LED, diameter 3.0mm, 2 pins, color: clear +IR infrared LED diameter 3.0mm 2 pins clear +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Clear_BiDir +LED, dual, bidirectional. diameter 3.0mm, 2 pins, color: clear +LED diameter 3.0mm 2 pins clear dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_FlatTop +LED, Round, FlatTop, diameter 3.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.9A).pdf +LED Round FlatTop diameter 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_BiDir +LED dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm_BiDir +LED, dua, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm_BiDir +LED, dual ,bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm_BiDir +LED, dual, bidirectional diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm_BiDir +LED, dual ,bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm_BiDir +LED, dual ,bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm_BiDir +LED, dual, bidirectional, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins dual bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm_CA +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm_CC +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D3.0mm_IRBlack +IR-ED, diameter 3.0mm, 2 pins, color: black +IR infrared LED diameter 3.0mm 2 pins black +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D3.0mm_IRGrey +IR-LED, diameter 3.0mm, 2 pins, color: grey +IR infrared LED diameter 3.0mm 2 pins grey +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D4.0mm +LED, diameter 4.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.12B).pdf +LED diameter 4.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm-3_CA +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm-3_CC +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_BiDir +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Clear +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Clear_BiDir +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_FlatTop +LED, Round, FlatTop, diameter 5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-483GDT(Ver.15B).pdf +LED Round FlatTop diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm_BiDir +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm_CA +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm_CC +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D5.0mm_IRBlack +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D5.0mm_IRGrey +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D8.0mm +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D8.0mm-3_CA +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D8.0mm-3_CC +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D8.0mm_BiDir +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D10.0mm +LED, diameter 10.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED10-4500RT%23KIN.pdf +LED diameter 10.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_D10.0mm-3_CA +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D10.0mm-3_CC +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_D20.0mm +LED, diameter 20.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/DLC2-6GD%28V6%29.pdf +LED diameter 20.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Indicator_Acom_D3.0mm_W7.0mm_L6.35mm +Two-color LED indicator, Common Anode, PCB mount, LED diameter 3.0mm, 3 pins, https://www.tme.eu/Document/905a4151dde919d2d8d745cddf192c15/l-130wdt-1egw.pdf, Alternate KiCad Library +LED diameter 3.0mm 3 pins indicator 7.0x6.35 common anode acom +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Indicator_Acom_D5.0mm_W7.5mm_L9.5mm +Two-color LED indicator, Common Cathode, PCB mount, LED diameter 5.0mm, 3 pins, https://www.tme.eu/Document/02e4c29d04845d1c5061e9bd843a2d78/L-59CB_1EGW.pdf, Alternate KiCad Library +LED diameter 5.0mm 3 pins indicator 7.5x9.5 common cathode kcom +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Indicator_D1.8mm_W2.44mm_L7.62mm +LED indicator, Vertical PCB mount, LED diameter 1.8mm, 2 pins, https://www.tme.eu/Document/c2c5b2134874d40f7c9270694cfe393c/KM2520EJ-1SGD.pdf, Alternate KiCad Library +LED diameter 1.8mm 2 pins indicator 2.44x7.62 +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Indicator_D3.0mm_W4.6mm_L6.5mm +LED indicator, PCB mount, LED diameter 3.0mm, 2 pins, https://www.tme.eu/Document/c83ca39e931b9f23806af8fa303767f3/H30E-1AD.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.6x6.5 +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Indicator_D5.0mm_W6.0mm_L9.2mm +LED indicator, PCB mount, LED diameter 5.0mm, 2 pins, https://www.tme.eu/Document/4da22a60eb0ad7b2e3e6bca18c034646/L-1503CB_1LGD.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 6.0x9.2 +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Indicator_Dual_Acom_D3.0mm_W7.0mm_L9.0mm +Dual two-color LED indicator, PCB mount, LED diameter 3.0mm, 6 pins, https://www.tme.eu/Document/8be51179011fe304506a5b9bcb5d97ce/H280CBC.pdf, Alternate KiCad Library +dual LED diameter 3.0mm 3 pins indicator 7.0x9.0 common anode acom +0 +6 +6 +PCM_LED_THT_AKL_Double +LED_Indicator_Dual_Kcom_D3.0mm_W7.0mm_L9.0mm +Dual two-color LED indicator, PCB mount, LED diameter 3.0mm, 6 pins, https://www.tme.eu/Document/8be51179011fe304506a5b9bcb5d97ce/H280CBC.pdf, Alternate KiCad Library +dual LED diameter 3.0mm 6 pins indicator 7.0x9.0 common cathode kcom +0 +6 +6 +PCM_LED_THT_AKL_Double +LED_Indicator_Kcom_D3.0mm_W7.0mm_L6.35mm +Two-color LED indicator, Common Cathode, PCB mount, LED diameter 3.0mm, 3 pins, https://www.tme.eu/Document/905a4151dde919d2d8d745cddf192c15/l-130wdt-1egw.pdf, Alternate KiCad Library +LED diameter 3.0mm 3 pins indicator 7.0x6.35 common cathode kcom +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Indicator_Kcom_D5.0mm_W7.5mm_L9.5mm +Two-color LED indicator, Common Cathode, PCB mount, LED diameter 5.0mm, 3 pins, https://www.tme.eu/Document/02e4c29d04845d1c5061e9bd843a2d78/L-59CB_1EGW.pdf, Alternate KiCad Library +LED diameter 5.0mm 3 pins indicator 7.5x9.5 common cathode kcom +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Oval_W5.2mm_H3.8mm +LED_Oval, Oval, Oval size 5.2x3.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.12B).pdf +LED_Oval Oval Oval size 5.2x3.8mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W3.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 3.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 3.0x2.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W3.9mm_H1.8mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W3.9mm_H1.8mm_FlatTop +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W3.9mm_H1.9mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.9mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-144GDT(Ver.14B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.9mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm-CA +LED_Rectangular, Common Anode, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins Common Anode +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm-CC +LED_Rectangular, Common Cathode, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins Common Cathode +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_BiDir +LED_Rectangular, Rectangular, Bidirectional, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins bidirectional +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O1.27mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O3.81mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z1.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z3.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm_BiDir +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm_CA +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Rectangular_W5.0mm_H5.0mm_Horizontal_O6.35mm_Z5.0mm_CC +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +3 +3 +PCM_LED_THT_AKL_Double +LED_Schurter_PBL +3mm LED indicator, Schurter PBL series, 4mm by 10.5mm body size, https://www.tme.eu/Document/af1fe1f72ec623150447baab24054c5e/pbl.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4x10.5 schurter pbl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Schurter_SRL_3mm_Angled +3mm LED indicator, Schurter SRL series, 4.8mm by 6.5mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.8x6.5 schurter srl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Schurter_SRL_3mm_Angled_Parallel +3mm LED indicator, Schurter SRL series, 4.8mm by 6.5mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.8x6.5 schurter srl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Schurter_SRL_3mm_Straight +3mm LED indicator, Schurter SRL series, 4.8mm by 4.8mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 3.0mm 2 pins indicator 4.8x4.8 schurter srl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Schurter_SRL_5mm_Angled +5mm LED indicator, Schurter SRL series, 7.3mm by 9.2mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 7.3x9.2 schurter srl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Schurter_SRL_5mm_Angled_Parallel +5mm LED indicator, Schurter SRL series, 7.3mm by 9.2mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 7.3x9.2 schurter srl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_Schurter_SRL_5mm_Straight +5mm LED indicator, Schurter SRL series, 7.3mm by 7.3mm body size, https://www.tme.eu/Document/ee8b9318a1543bda98440e4c4b2eb62a/0035.1261.pdf, Alternate KiCad Library +LED diameter 5.0mm 2 pins indicator 7.3x7.3 schurter srl +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_SideEmitter_Rectangular_W4.5mm_H1.6mm +LED_SideEmitter_Rectangular, Rectangular, SideEmitter, Rectangular size 4.5x1.6mm^2, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf +LED_SideEmitter_Rectangular Rectangular SideEmitter Rectangular size 4.5x1.6mm^2 2 pins +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_SuperFlux +LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/2378d08e3712a6a8a7495aa3cb2b8f17/OS5YKAZ141P.pdf +LED Super-Flux +0 +4 +2 +PCM_LED_THT_AKL_Double +LED_SuperFlux_Dual +Dual LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/2010b16034ecfffa90a598de75b651e0/OSRBM4Z2C1D.pdf +LED Super-Flux dual +0 +4 +4 +PCM_LED_THT_AKL_Double +LED_SuperFlux_RGB +RGB LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/272b61f5560930b43483fc2787fe006e/osta71a1d-a.pdf +RGB LED Super-Flux +0 +4 +4 +PCM_LED_THT_AKL_Double +LED_SuperFlux_Reverse +LED, through hole, 7.62x7.62mm, https://www.tme.eu/Document/2378d08e3712a6a8a7495aa3cb2b8f17/OS5YKAZ141P.pdf +LED Super-Flux +0 +4 +2 +PCM_LED_THT_AKL_Double +LED_VCCLite_5381H1_6.35x6.35mm +Red 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Red 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_VCCLite_5381H3_6.35x6.35mm +Amber 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Amber 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_VCCLite_5381H5_6.35x6.35mm +Green 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Green 5381 Series LED +0 +2 +2 +PCM_LED_THT_AKL_Double +LED_VCCLite_5381H7_6.35x6.35mm +Yellow 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Yellow 5381 Series LED +0 +2 +2 +PCM_Mounting_Keyboard_Stabilizer +Stabilizer_Cherry_MX_2.00u +Cherry MX PCB Stabilizer 2.00u 2.25u 2.50u 2.75u +Cherry MX Keyboard Stabilizer 2.00u 2.25u 2.50u 2.75u Cutout +0 +0 +0 +PCM_Mounting_Keyboard_Stabilizer +Stabilizer_Cherry_MX_3.00u +Cherry MX PCB Stabilizer 3.00u +Cherry MX Keyboard Stabilizer 3.00u Cutout +0 +0 +0 +PCM_Mounting_Keyboard_Stabilizer +Stabilizer_Cherry_MX_6.00u +Cherry MX PCB Stabilizer 6.00u +Cherry MX Keyboard Stabilizer 6.00u Cutout +0 +0 +0 +PCM_Mounting_Keyboard_Stabilizer +Stabilizer_Cherry_MX_6.25u +Cherry MX PCB Stabilizer 6.25u +Cherry MX Keyboard Stabilizer 6.25u Cutout +0 +0 +0 +PCM_Mounting_Keyboard_Stabilizer +Stabilizer_Cherry_MX_7.00u +Cherry MX PCB Stabilizer 7.00u +Cherry MX Keyboard Stabilizer 7.00u Cutout +0 +0 +0 +PCM_Mounting_Keyboard_Stabilizer +Stabilizer_Cherry_MX_8.00u +Cherry MX PCB Stabilizer 8.00u 9.00u 10.00u +Cherry MX Keyboard Stabilizer 8.00u 9.00u 10.00u Cutout +0 +0 +0 +PCM_Optocoupler_AKL +CEL_PS2911 +Flat lead optocoupler package, CEL PS2911 +PS2199 optocoupler flat lead +0 +4 +4 +PCM_Optocoupler_AKL +Toshiba_TLP3914 +SMD Optocoupler Package, 3.8x2.04mm, P 1.27mm +SMD Optocoupler TLP3914 Toshiba +0 +4 +4 +PCM_Optocoupler_AKL +Vishay_CNY64 +High isolation optocoupler package, 12.8x7.2mm, pitch 10.16x5.08mm, https://www.tme.eu/Document/671d249c87ebde8a1be8eadfd7eb3719/cny64.pdf, Alternate KiCAD Library +CNY 64 high isolation optocoupler isolator +0 +4 +4 +PCM_Optocoupler_AKL +Vishay_CNY64ST +SMD High isolation optocoupler package, 12.8x7.2mm, pitch 12.45x5.08mm, https://www.tme.eu/Document/fed8daf4b36baf062ffeee5d975821f7/CNY64ABST.pdf, Alternate KiCAD Library +CNY 64 SMD high isolation optocoupler isolator +0 +4 +4 +PCM_Optocoupler_AKL +Vishay_CNY65 +High isolation optocoupler package, 17.8x9.6mm, pitch 15.24x7.62mm, https://www.tme.eu/Document/671d249c87ebde8a1be8eadfd7eb3719/cny64.pdf, Alternate KiCAD Library +CNY 65 high isolation optocoupler isolator +0 +4 +4 +PCM_Optocoupler_AKL +Vishay_CNY65ST +SMD High isolation optocoupler package, 17.8x9.6mm, pitch 15.24x7.62mm, https://www.tme.eu/Document/fed8daf4b36baf062ffeee5d975821f7/CNY64ABST.pdf, Alternate KiCAD Library +CNY 65 SMD high isolation optocoupler isolator +0 +4 +4 +PCM_Optocoupler_AKL +Vishay_CNY66 +High isolation optocoupler package, 20.4x9.6mm, pitch 17.8x7.62mm, https://www.tme.eu/Document/671d249c87ebde8a1be8eadfd7eb3719/cny64.pdf, Alternate KiCAD Library +CNY 66 high isolation optocoupler isolator +0 +4 +4 +PCM_Package_CSP_AKL +Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm +LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf), Alternate KiCAD Library +LFCSP 8 0.5 +0 +14 +5 +PCM_Package_CSP_AKL +Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm_ThermalVias +LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf), Alternate KiCAD Library +LFCSP 8 0.5 +0 +17 +5 +PCM_Package_CSP_AKL +LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf, Alternate KiCAD Library +LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm +0 +10 +9 +PCM_Package_CSP_AKL +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), Alternate KiCAD Library +LFCSP DFN_QFN +0 +13 +9 +PCM_Package_CSP_AKL +LFCSP-8_2x2mm_P0.5mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf, Alternate KiCAD Library +LFCSP 8pin 2x2mm Pitch 0.5mm +0 +8 +8 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +21 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +23 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +21 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +26 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +21 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +26 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm +16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf), Alternate KiCAD Library +LFCSP 16 0.5 +0 +21 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf), Alternate KiCAD Library +LFCSP 16 0.65 +0 +21 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +21 +17 +PCM_Package_CSP_AKL +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +31 +17 +PCM_Package_CSP_AKL +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +20-Lead Frame Chip Scale Package - 4x4x0.9 mm Body [LFCSP], (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_20_6.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +25 +21 +PCM_Package_CSP_AKL +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), Alternate KiCAD Library +LFCSP DFN_QFN +0 +25 +21 +PCM_Package_CSP_AKL +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), Alternate KiCAD Library +LFCSP DFN_QFN +0 +35 +21 +PCM_Package_CSP_AKL +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +25 +21 +PCM_Package_CSP_AKL +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +35 +21 +PCM_Package_CSP_AKL +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +29 +25 +PCM_Package_CSP_AKL +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +39 +25 +PCM_Package_CSP_AKL +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +29 +25 +PCM_Package_CSP_AKL +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +39 +25 +PCM_Package_CSP_AKL +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +33 +29 +PCM_Package_CSP_AKL +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +43 +29 +PCM_Package_CSP_AKL +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +37 +33 +PCM_Package_CSP_AKL +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +59 +33 +PCM_Package_CSP_AKL +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf, Alternate KiCAD Library +LFCSP 0.5 +0 +37 +33 +PCM_Package_CSP_AKL +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +58 +49 +PCM_Package_CSP_AKL +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +75 +49 +PCM_Package_CSP_AKL +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +69 +65 +PCM_Package_CSP_AKL +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm_ThermalVias +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +86 +65 +PCM_Package_CSP_AKL +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +82 +73 +PCM_Package_CSP_AKL +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm_ThermalVias +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), Alternate KiCAD Library +LFCSP NoLead +0 +99 +73 +PCM_Package_CSP_AKL +LFCSP-72-1EP_10x10mm_P0.5mm_EP6.15x6.15mm +72-Lead Frame Chip Scale Package - 10x10x0.9 mm Body [LFCSP]; (see https://www.intersil.com/content/dam/Intersil/documents/l72_/l72.10x10c.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +77 +73 +PCM_Package_CSP_AKL +LFCSP-VD-8-1EP_3x3mm_P0.5mm_EP1.89x1.6mm +LFCSP VD, 8 pin, exposed pad, 4x4mm body, pitch 0.5mm (https://www.tme.eu/Document/6928e194772bf23c3fafecf86c19b356/AD8139ARDZ-Analog-Devices.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +13 +9 +PCM_Package_CSP_AKL +LFCSP-VD-8-1EP_3x3mm_P0.5mm_EP1.89x1.6mm_ThermalVias +LFCSP VD, 8 pin, exposed pad, 4x4mm body, pitch 0.5mm (https://www.tme.eu/Document/6928e194772bf23c3fafecf86c19b356/AD8139ARDZ-Analog-Devices.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +16 +9 +PCM_Package_CSP_AKL +LFCSP-VQ-16_4x4mm_P0.65mm +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +16 +16 +PCM_Package_CSP_AKL +LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +29 +25 +PCM_Package_CSP_AKL +LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm_ThermalVias +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +39 +25 +PCM_Package_CSP_AKL +LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm_ThermalVias2 +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf), Alternate KiCAD Library +LFCSP 0.5 +0 +38 +25 +PCM_Package_CSP_AKL +LFCSP-VQ-48-1EP_7x7mm_P0.5mm +LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html), Alternate KiCAD Library +LFCSP 48 +0 +58 +49 +PCM_Package_CSP_AKL +LFCSP-VQ-48-1EP_7x7mm_P0.5mm_ThermalVias +LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html), Alternate KiCAD Library +LFCSP 48 +0 +91 +49 +PCM_Package_CSP_AKL +LFCSP-VQ-48-1EP_7x7mm_P0.5mm_ThermalVias2 +LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html), Alternate KiCAD Library +LFCSP 48 +0 +82 +49 +PCM_Package_CSP_AKL +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), Alternate KiCAD Library +LFCSP-WD NoLead +0 +15 +9 +PCM_Package_CSP_AKL +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), Alternate KiCAD Library +LFCSP-WD NoLead +0 +18 +9 +PCM_Package_CSP_AKL +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias2 +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), Alternate KiCAD Library +LFCSP-WD NoLead +0 +17 +9 +PCM_Package_CSP_AKL +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), Alternate KiCAD Library +LFCSP-WD NoLead +0 +17 +11 +PCM_Package_CSP_AKL +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), Alternate KiCAD Library +LFCSP-WD NoLead +0 +20 +11 +PCM_Package_CSP_AKL +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias2 +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), Alternate KiCAD Library +LFCSP-WD NoLead +0 +19 +11 +PCM_Package_CSP_AKL +ST_WLCSP-25_Die425 +WLCSP-25, 5x5 raster, 2.097x2.493mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l031f6.pdf, Alternate KiCAD Library +BGA 25 0.4 +0 +25 +25 +PCM_Package_CSP_AKL +ST_WLCSP-25_Die444 +WLCSP-25, 5x5 raster, 2.423x2.325mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f031k6.pdf, Alternate KiCAD Library +BGA 25 0.4 +0 +25 +25 +PCM_Package_CSP_AKL +ST_WLCSP-25_Die457 +WLCSP-25, 5x5 raster, 2.133x2.070mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32l011k3.pdf, Alternate KiCAD Library +BGA 25 0.4 +0 +25 +25 +PCM_Package_CSP_AKL +ST_WLCSP-36_Die417 +WLCSP-36, 6x6 raster, 2.61x2.88mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l052t8.pdf, Alternate KiCAD Library +BGA 36 0.4 +0 +36 +36 +PCM_Package_CSP_AKL +ST_WLCSP-36_Die440 +WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f051t8.pdf, Alternate KiCAD Library +BGA 36 0.4 +0 +36 +36 +PCM_Package_CSP_AKL +ST_WLCSP-36_Die445 +WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32f042k6.pdf, Alternate KiCAD Library +BGA 36 0.4 +0 +36 +36 +PCM_Package_CSP_AKL +ST_WLCSP-36_Die458 +WLCSP-36, 6x6 raster, 2.553x2.579mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f410t8.pdf, Alternate KiCAD Library +BGA 36 0.4 +0 +36 +36 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die423 +WLCSP-49, 7x7 raster, 2.965x2.965mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f401vc.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die431 +WLCSP-49, 7x7 raster, 2.999x3.185mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f411vc.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die433 +WLCSP-49, 7x7 raster, 3.029x3.029mm package, pitch 0.4mm; see section 7.1.1 of http://www.st.com/resource/en/datasheet/stm32f401ce.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die435 +WLCSP-49, 7x7 raster, 3.141x3.127mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/DM00257211.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die438 +WLCSP-49, 7x7 raster, 3.89x3.74mm package, pitch 0.5mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303r8.pdf, Alternate KiCAD Library +BGA 49 0.5 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die439 +WLCSP-49, 7x7 raster, 3.417x3.151mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f301r8.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die447 +WLCSP-49, 7x7 raster, 3.294x3.258mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l072kz.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-49_Die448 +WLCSP-49, 7x7 raster, 3.277x3.109mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f071v8.pdf, Alternate KiCAD Library +BGA 49 0.4 +0 +49 +49 +PCM_Package_CSP_AKL +ST_WLCSP-63_Die427 +WLCSP-63, 7x9 raster, 3.228x4.164mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l151cc.pdf, Alternate KiCAD Library +BGA 63 0.4 +0 +63 +63 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die414 +WLCSP-64, 8x8 raster, 4.466x4.395mm package, pitch 0.5mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f103ze.pdf, Alternate KiCAD Library +BGA 64 0.5 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die427 +WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zc.pdf, Alternate KiCAD Library +BGA 64 0.4 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die435 +WLCSP-64, 8x8 raster, 3.141x3.127mm package, pitch 0.35mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00257211.pdf, Alternate KiCAD Library +BGA 64 0.35 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die436 +WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zd.pdf, Alternate KiCAD Library +BGA 64 0.4 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die441 +WLCSP-64, 8x8 raster, 3.623x3.651mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00213872.pdf, Alternate KiCAD Library +BGA 64 0.4 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die442 +WLCSP-64, 8x8 raster, 3.347x3.585mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f091vb.pdf, Alternate KiCAD Library +BGA 64 0.4 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-64_Die462 +WLCSP-64, 8x8 raster, 3.357x3.657mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00340475.pdf, Alternate KiCAD Library +BGA 64 0.4 +0 +64 +64 +PCM_Package_CSP_AKL +ST_WLCSP-66_Die411 +WLCSP-66, 9x9 raster, 3.639x3.971mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f207vg.pdf, Alternate KiCAD Library +BGA 66 0.4 +0 +66 +66 +PCM_Package_CSP_AKL +ST_WLCSP-66_Die432 +WLCSP-66, 8x9 raster, 3.767x4.229mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f378vc.pdf, Alternate KiCAD Library +BGA 66 0.4 +0 +66 +66 +PCM_Package_CSP_AKL +ST_WLCSP-72_Die415 +WLCSP-72, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf, Alternate KiCAD Library +BGA 72 0.4 +0 +72 +72 +PCM_Package_CSP_AKL +ST_WLCSP-81_Die415 +WLCSP-81, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf, Alternate KiCAD Library +BGA 81 0.4 +0 +81 +81 +PCM_Package_CSP_AKL +ST_WLCSP-81_Die421 +WLCSP-81, 9x9 raster, 3.693x3.815mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf, Alternate KiCAD Library +BGA 81 0.4 +0 +81 +81 +PCM_Package_CSP_AKL +ST_WLCSP-81_Die463 +WLCSP-81, 9x9 raster, 4.039x3.951mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00282249.pdf, Alternate KiCAD Library +BGA 81 0.4 +0 +81 +81 +PCM_Package_CSP_AKL +ST_WLCSP-90_Die413 +WLCSP-90, 10x9 raster, 4.223x3.969mm package, pitch 0.4mm; see section 6.1 of http://www.st.com/resource/en/datasheet/stm32f405og.pdf, Alternate KiCAD Library +BGA 90 0.4 +0 +90 +90 +PCM_Package_CSP_AKL +ST_WLCSP-100_Die422 +WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f302vc.pdf, Alternate KiCAD Library +BGA 100 0.4 +0 +100 +100 +PCM_Package_CSP_AKL +ST_WLCSP-100_Die446 +WLCSP-100, 10x10 raster, 4.775x5.041mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303zd.pdf, Alternate KiCAD Library +BGA 100 0.4 +0 +100 +100 +PCM_Package_CSP_AKL +ST_WLCSP-100_Die452 +WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.7 of http://www.st.com/resource/en/datasheet/DM00330506.pdf, Alternate KiCAD Library +BGA 100 0.4 +0 +100 +100 +PCM_Package_CSP_AKL +ST_WLCSP-100_Die461 +WLCSP-100, 10x10 raster, 4.618x4.142mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00284211.pdf, Alternate KiCAD Library +BGA 100 0.4 +0 +100 +100 +PCM_Package_CSP_AKL +ST_WLCSP-104_Die437 +WLCSP-104, 9x12 raster, 4.095x5.094mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152ze.pdf, Alternate KiCAD Library +BGA 104 0.4 +0 +104 +104 +PCM_Package_CSP_AKL +ST_WLCSP-143_Die419 +WLCSP-143, 11x13 raster, 4.521x5.547mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f429ng.pdf, Alternate KiCAD Library +BGA 143 0.4 +0 +143 +143 +PCM_Package_CSP_AKL +ST_WLCSP-143_Die449 +WLCSP-143, 11x13 raster, 4.539x5.849mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf, Alternate KiCAD Library +BGA 143 0.4 +0 +143 +143 +PCM_Package_CSP_AKL +ST_WLCSP-144_Die470 +WLCSP-144, 12x12 raster, 5.24x5.24mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/DM00366448.pdf, Alternate KiCAD Library +BGA 144 0.4 +0 +144 +144 +PCM_Package_CSP_AKL +ST_WLCSP-168_Die434 +WLCSP-168, 12x14 raster, 4.891x5.692mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f469ni.pdf, Alternate KiCAD Library +BGA 168 0.4 +0 +168 +168 +PCM_Package_CSP_AKL +ST_WLCSP-180_Die451 +WLCSP-180, 13x14 raster, 5.537x6.095mm package, pitch 0.4mm; see section 6.6 of http://www.st.com/resource/en/datasheet/DM00273119.pdf, Alternate KiCAD Library +BGA 180 0.4 +0 +180 +180 +PCM_Package_CSP_AKL +WLCSP-5_1.33x0.9mm_P0.5mm +5pin Pitch 0.5mm, See: https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/cb_5_1.pdf, Alternate KiCAD Library +5pin Pitch 0.5mm WLCSP CB-5-1 +0 +5 +5 +PCM_Package_CSP_AKL +WLCSP-6_1.4x1.0mm_P0.4mm +6pin Pitch 0.4mm, Alternate KiCAD Library +6pin Pitch 0.4mm WLCSP +0 +6 +6 +PCM_Package_CSP_AKL +WLCSP-8_1.58x1.63x0.35mm_Layout3x5_P0.35x0.4mm_Ball0.25mm_Pad0.25mm_NSMD +WLCSP/XFBGA 8-pin package, staggered pins, http://www.adestotech.com/wp-content/uploads/DS-AT25DF041B_040.pdf, Alternate KiCAD Library +WLCSP WLCSP-8 XFBGA XFBGA-8 CSP BGA Chip-Scale Glass-Top +0 +8 +8 +PCM_Package_CSP_AKL +WLCSP-8_1.825x1.48mm_P0.5mm +8pin Pitch 0.5mm, See: https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/CB_8_1.pdf, Alternate KiCAD Library +8pin Pitch 0.5mm WLCSP CB-8-1 +0 +8 +8 +PCM_Package_CSP_AKL +WLCSP-12_1.56x1.56mm_P0.4mm +WLCSP 12 1.56x1.56 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001-01.pdf, Alternate KiCAD Library +BMM150 WLCSP +0 +12 +12 +PCM_Package_CSP_AKL +WLCSP-12_1.403x1.555mm_P0.4mm_Stagger +WLCSP-12, 6x4 raster staggered array, 1.403x1.555mm package, pitch 0.4mm; http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208, Alternate KiCAD Library +CSP 12 0.2x0.346333 +0 +12 +12 +PCM_Package_CSP_AKL +WLCSP-16_4x4_B2.17x2.32mm_P0.5mm +WLCSP-16, http://www.nxp.com/documents/data_sheet/LPC1102_1104.pdf, http://www.nxp.com/assets/documents/data/en/application-notes/AN3846.pdf, Alternate KiCAD Library +WLCSP-16 NXP +0 +16 +16 +PCM_Package_CSP_AKL +WLCSP-20_1.934x2.434mm_Layout4x5_P0.4mm +WLCSP-20, 4x5 raster, 1.934x2.434mm package, pitch 0.4mm; see section 36.2.3 of http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf, Alternate KiCAD Library +BGA 20 0.4 +0 +20 +20 +PCM_Package_CSP_AKL +WLCSP-20_1.994x1.94mm_Layout4x5_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00539D.pdf, Alternate KiCAD Library +WLCSP-20 +0 +20 +20 +PCM_Package_CSP_AKL +WLCSP-20_1.994x1.609mm_Layout5x4_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00676D.pdf, Alternate KiCAD Library +WLCSP-20 +0 +20 +20 +PCM_Package_CSP_AKL +WLCSP-36_2.82x2.67mm_Layout6x6_P0.4mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00949D.pdf, Alternate KiCAD Library +WLCSP-36 +0 +36 +36 +PCM_Package_CSP_AKL +WLCSP-36_2.374x2.459mm_Layout6x6_P0.35mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00604D.pdf, Alternate KiCAD Library +WLCSP-36 +0 +36 +36 +PCM_Package_CSP_AKL +WLCSP-56_3.170x3.444mm_Layout7x8_P0.4mm +WLCSP-56, 7x8 raster, 3.170x3.444mm package, pitch 0.4mm; see section 48.2.4 of http://ww1.microchip.com/downloads/en/DeviceDoc/DS60001479B.pdf, Alternate KiCAD Library +BGA 56 0.4 +0 +56 +56 +PCM_Package_CSP_AKL +WLCSP-81_4.41x3.76mm_P0.4mm +WLCSP-81, 9x9, 0.4mm Pitch, http://www.st.com/content/ccc/resource/technical/document/technical_note/92/30/3c/a1/4c/bb/43/6f/DM00103228.pdf/files/DM00103228.pdf/jcr:content/translations/en.DM00103228.pdf, Alternate KiCAD Library +WLCSP ST +0 +81 +81 +PCM_Package_CSP_AKL +pSemi_CSP-16_1.64x2.04mm_P0.4mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf), Alternate KiCAD Library +psemi csp 16 +0 +16 +16 +PCM_Package_CSP_AKL +pSemi_CSP-16_1.64x2.04mm_P0.4mm_Pad0.18mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf), Alternate KiCAD Library +psemi csp 16 +0 +16 +16 +PCM_Package_DFN_QFN_AKL +AMS_QFN-4-1EP_2x2mm_P0.95mm_EP0.7x1.6mm +UFD Package, 4-Lead Plastic QFN (2mm x 2mm), http://ams.com/eng/content/download/950231/2267959/483138, Alternate KiCad Library +QFN 0.95 +0 +6 +5 +PCM_Package_DFN_QFN_AKL +Cypress_QFN-56-1EP_8x8mm_P0.5mm_EP6.22x6.22mm_ThermalVias +56-Lead Plastic Quad Flat, No Lead Package (ML) - 8x8x0.9 mm Body [QFN] (see datasheet at http://www.cypress.com/file/138911/download and app note at http://www.cypress.com/file/140006/download), Alternate KiCad Library +QFN 0.5 +0 +87 +57 +PCM_Package_DFN_QFN_AKL +DFN-3-1EP-2x2mm_P0.5mm_EP1x1.35mm +DFN, 3 Pin (https://www.tme.eu/Document/2ef05ce476351bded9b9bb9750bc2061/670323fd.pdf), Alternate KiCad Library +DFN NoLead +0 +8 +4 +PCM_Package_DFN_QFN_AKL +DFN-4-1EP-2x2mm_P0.45mm_EP1x1.35mm +DFN, 4 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/600345fd.pdf), Alternate KiCad Library +DFN NoLead +0 +9 +5 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_1.2x1.2mm_P0.4mm_EP0.3x0.94mm_PullBack +DFN, 6 Pin (http://www.onsemi.com/pub/Collateral/NCP133-D.PDF), Alternate KiCad Library +DFN NoLead +0 +9 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_1.6x1.6mm_P0.5mm_EP0.6x1mm +QFN, 1.6x1.6mm, Pitch = 0.5mm, EP 0.6mm x 1mm , https://www.tme.eu/Document/be9ffa898e0327c32970bb8c31613110/AOZ8102DI-DTE.pdf, Alternate KiCad Library +DFN 6 1.6x1.6mm +0 +9 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_2x1.8mm_P0.5mm_EP1.2x1.6mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2018-6.pdf), Alternate KiCad Library +DFN NoLead +0 +11 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_2x2mm_P0.5mm_EP0.6x1.37mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081703_C_DC6.pdf), Alternate KiCad Library +DFN NoLead +0 +9 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_2x2mm_P0.5mm_EP0.61x1.42mm +DC6 Package; 6-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_6_05-08-1703.pdf), Alternate KiCad Library +DFN 0.5 +0 +9 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +6-Lead Plastic Dual Flat, No Lead Package (MA) - 2x2x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.65 +0 +9 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_3x2mm_P0.5mm_EP1.65x1.35mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/(DCB6)%20DFN%2005-08-1715%20Rev%20A.pdf), Alternate KiCad Library +DFN NoLead +0 +11 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm +DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF), Alternate KiCad Library +DFN 0.95 +0 +13 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-1EP_3x3mm_P1mm_EP1.5x2.4mm +DFN, 6 Pin (https://www.silabs.com/documents/public/data-sheets/Si7020-A20.pdf), Alternate KiCad Library +DFN NoLead +0 +11 +7 +PCM_Package_DFN_QFN_AKL +DFN-6-2EP_2x2mm_P0.65mm_EP1.15x0.95mm_EP0.8x0.48mm +2x2mm DFN package, 2 Bottom pads, https://www.tme.eu/Document/f1fed6b3a8e9584a14fa0cad93f2419a/DMP2023UFDF.pdf +DFN 2x2 2mmx2mm DFN2020 +0 +9 +8 +PCM_Package_DFN_QFN_AKL +DFN-6_1.3x1.2mm_P0.4mm +6-Lead Plastic DFN (1.3mm x 1.2mm) , Alternate KiCad Library +DFN 0.4 +0 +6 +6 +PCM_Package_DFN_QFN_AKL +DFN-6_1.3x1.6mm_P0.4mm +QFN, 1.3x1.6mm, Pitch = 0.4mm, No EP, https://www.st.com/resource/en/datasheet/tsv991.pdf, Alternate KiCad Library +DFN 6 1.6x1.6mm +0 +6 +6 +PCM_Package_DFN_QFN_AKL +DFN-6_1.6x1.6mm_P0.5mm +QFN, 1.6x1.6mm, Pitch = 0.5mm, No EP, https://www.tme.eu/Document/9832bcd74d37095f4f40f4a839a83d37/AOZ8001DI-DTE.pdf, Alternate KiCad Library +DFN 6 1.6x1.6mm +0 +6 +6 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_2x2mm_P0.5mm_EP0.7x1.3mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NUF4401MN-D.PDF#page=6), Alternate KiCad Library +DFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.3mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NB3N551-D.PDF#page=7), Alternate KiCad Library +DFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.5mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8127-AVR-8-bit-Microcontroller-ATtiny4-ATtiny5-ATtiny9-ATtiny10_Datasheet.pdf), Alternate KiCad Library +DFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm +DFN8 2x2, 0.5P; CASE 506CN (see ON Semiconductor 506CN.PDF), Alternate KiCad Library +DFN 0.5 +0 +11 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_2x2mm_P0.45mm_EP0.64x1.38mm +DC8 Package 8-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_8_05-08-1719.pdf), Alternate KiCad Library +DFN 0.45 +0 +11 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_2x3mm_P0.5mm_EP0.61x2.2mm +DDB Package; 8-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_8_05-08-1702.pdf), Alternate KiCad Library +DFN 0.5 +0 +12 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body [UDFN] (see Atmel-8815-SEEPROM-AT24CS01-02-Datasheet.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.6mm +8-Lead Plastic Dual Flat, No Lead Package (U-DFN2030-8) - 2x3x0.6 mm Body [UDFN] (see https://www.diodes.com/assets/Datasheets/AP7362.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x2mm_P0.5mm_EP1.36x1.46mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body (http://ww1.microchip.com/downloads/en/DeviceDoc/20005010F.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.45mm +8-Lead Plastic Dual Flat, No Lead Package (MC) - 2x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x2mm_P0.45mm_EP1.66x1.36mm +DCB Package 8-Lead Plastic DFN (2mm x 3mm) (see Linear Technology DFN_8_05-08-1718.pdf), Alternate KiCad Library +DFN 0.45 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.2x2mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/opa1612.pdf?ts=1640252453965&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/opa1612.pdf?ts=1640252453965&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +DFN 0.5 +0 +16 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/opa1612.pdf?ts=1640252453965&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +DFN 0.5 +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library +DFN 0.5 +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library +DFN 0.5 +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/ina333.pdf?ts=1636192898771&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/ina333.pdf?ts=1636192898771&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +DFN 0.5 +0 +17 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/ina333.pdf?ts=1636192898771&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +DFN 0.5 +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.55x1.85mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.55x1.85mm_ThermalVias +DD Package; 8-Lead Plastic DFN (3mm x 3mm), Alternate KiCad Library +DFN 0.5 +0 +16 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.55x1.85mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (3mm x 3mm), Alternate KiCad Library +DFN 0.5 +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm_ThermalVias +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library +DFN 0.5 +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library +DFN 0.5 +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm +DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), Alternate KiCad Library +DFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm_ThermalVias +DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), Alternate KiCad Library +DFN NoLead +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm_ThermalVias2 +DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), Alternate KiCad Library +DFN NoLead +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.65 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm_ThermalVias +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.65 +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm_ThermalVias2 +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.65 +0 +21 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), Alternate KiCad Library +DFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm_ThermalVias +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), Alternate KiCad Library +DFN NoLead +0 +28 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm_ThermalVias2 +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), Alternate KiCad Library +DFN NoLead +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.8 +0 +15 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm_ThermalVias +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.8 +0 +28 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm_ThermalVias2 +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.8 +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF), Alternate KiCad Library +DFN 0.8 +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm_ThermalVias +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF), Alternate KiCad Library +DFN 0.8 +0 +23 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm_ThermalVias2 +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF), Alternate KiCad Library +DFN 0.8 +0 +24 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library +dfn +0 +13 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm_ThermalVias +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library +dfn +0 +18 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library +dfn +0 +26 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library +dfn +0 +25 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm_ThermalVias +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library +dfn +0 +35 +9 +PCM_Package_DFN_QFN_AKL +DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm_ThermalVias2 +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library +dfn +0 +38 +9 +PCM_Package_DFN_QFN_AKL +DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF, Alternate KiCad Library +DFN 0.5 +0 +8 +8 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP-2.6x2.6mm_P0.5_EP1.26x2.35mm +DFN, 10 Leads, 2.6mm x 2.6mm, with 1.26x2.35mm Pad, https://www.tme.eu/Document/5199d66f9e18e2fe144a476f52ca327b/AOZ8318DI-DTE.pdf, Alternate KiCAD Library +DFN 10 +0 +15 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP-2.6x2.6mm_P0.5_EP1.26x2.35mm_ThermalVias +DFN, 10 Leads, 2.6mm x 2.6mm, with 1.26x2.35mm Pad, https://www.tme.eu/Document/5199d66f9e18e2fe144a476f52ca327b/AOZ8318DI-DTE.pdf, Alternate KiCAD Library +DFN 10 +0 +19 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_2x2mm_P0.4mm_EP0.9x1.5mm +10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch, 0.9x1.5mm exposed pad, Alternate KiCad Library +DFN 10 0.4mm +0 +13 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_2x3mm_P0.5mm_EP0.64x2.4mm +DDB Package; 10-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_10_05-08-1722.pdf), Alternate KiCad Library +DFN 0.5 +0 +13 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), Alternate KiCad Library +DFN NoLead +0 +15 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm_ThermalVias +DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), Alternate KiCad Library +DFN NoLead +0 +20 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm_ThermalVias2 +DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), Alternate KiCad Library +DFN NoLead +0 +23 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +15 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm_ThermalVias +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +20 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm_ThermalVias2 +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +23 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), Alternate KiCad Library +DFN NoLead +0 +15 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), Alternate KiCad Library +DFN NoLead +0 +20 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias2 +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), Alternate KiCad Library +DFN NoLead +0 +23 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm +10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826), Alternate KiCad Library +DFN 0.5 +0 +15 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm_ThermalVias +10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826), Alternate KiCad Library +DFN 0.5 +0 +22 +11 +PCM_Package_DFN_QFN_AKL +DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm_ThermalVias2 +10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826), Alternate KiCad Library +DFN 0.5 +0 +23 +11 +PCM_Package_DFN_QFN_AKL +DFN-10_1EP_2x2mm_P0.4mm_EP0.9x1.5mm +10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch, 0.9x1.5mm exposed pad, Alternate KiCad Library +DFN 10 0.4mm +0 +13 +11 +PCM_Package_DFN_QFN_AKL +DFN-10_2x2mm_P0.4mm +10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch, Alternate KiCad Library +DFN 10 0.4mm +0 +10 +10 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_2x3mm_P0.45mm_EP0.64x2.4mm +DDB Package; 12-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_12_05-08-1723.pdf), Alternate KiCad Library +DFN 0.45 +0 +15 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +17 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm_ThermalVias +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +28 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm_ThermalVias2 +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +25 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x3mm_P0.45mm_EP1.66x2.38mm +DD Package; 12-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_12_05-08-1725.pdf), Alternate KiCad Library +DFN 0.45 +0 +17 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x3mm_P0.45mm_EP1.66x2.38mm_ThermalVias +DD Package; 12-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_12_05-08-1725.pdf), Alternate KiCad Library +DFN 0.45 +0 +22 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x3mm_P0.45mm_EP1.66x2.38mm_ThermalVias2 +DD Package; 12-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_12_05-08-1725.pdf), Alternate KiCad Library +DFN 0.45 +0 +25 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf), Alternate KiCad Library +DFN 0.5 +0 +21 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm_ThermalVias +DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf), Alternate KiCad Library +DFN 0.5 +0 +28 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm_ThermalVias2 +DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf), Alternate KiCad Library +DFN 0.5 +0 +29 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm +DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf), Alternate KiCad Library +DFN 0.5 +0 +21 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm_ThermalVias +DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf), Alternate KiCad Library +DFN 0.5 +0 +27 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm_ThermalVias2 +DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf), Alternate KiCad Library +DFN 0.5 +0 +28 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm +DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF), Alternate KiCad Library +DFN 0.65 +0 +21 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm_ThermalVias +DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF), Alternate KiCad Library +DFN 0.65 +0 +27 +13 +PCM_Package_DFN_QFN_AKL +DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm_ThermalVias2 +DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF), Alternate KiCad Library +DFN 0.65 +0 +28 +13 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF), Alternate KiCad Library +DFN 0.40 +0 +19 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias +DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF), Alternate KiCad Library +DFN 0.40 +0 +24 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias2 +DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF), Alternate KiCad Library +DFN 0.40 +0 +27 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf), Alternate KiCad Library +VDFN DFN 0.65mm +0 +23 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf), Alternate KiCad Library +VDFN DFN 0.65mm +0 +34 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias2 +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf), Alternate KiCad Library +VDFN DFN 0.65mm +0 +31 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf), Alternate KiCad Library +DFN 0.5 +0 +23 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm_ThermalVias +DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf), Alternate KiCad Library +DFN 0.5 +0 +26 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm_ThermalVias2 +DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf), Alternate KiCad Library +DFN 0.5 +0 +27 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_4x4mm_P0.5mm_EP2.86x3.6mm +DFN14, 4x4, 0.5P; CASE 506CM (see ON Semiconductor 506CM.PDF), Alternate KiCad Library +DFN 0.5 +0 +23 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_4x4mm_P0.5mm_EP2.86x3.6mm_ThermalVias +DFN14, 4x4, 0.5P; CASE 506CM (see ON Semiconductor 506CM.PDF), Alternate KiCad Library +DFN 0.5 +0 +29 +15 +PCM_Package_DFN_QFN_AKL +DFN-14-1EP_4x4mm_P0.5mm_EP2.86x3.6mm_ThermalVias2 +DFN14, 4x4, 0.5P; CASE 506CM (see ON Semiconductor 506CM.PDF), Alternate KiCad Library +DFN 0.5 +0 +30 +15 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm +DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf), Alternate KiCad Library +DFN 0.45 +0 +25 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm_ThermalVias +DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf), Alternate KiCad Library +DFN 0.45 +0 +26 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm_ThermalVias2 +DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf), Alternate KiCad Library +DFN 0.45 +0 +33 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf), Alternate KiCad Library +DFN 0.5 +0 +27 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm_ThermalVias +DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf), Alternate KiCad Library +DFN 0.5 +0 +36 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm_ThermalVias2 +DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf), Alternate KiCad Library +DFN 0.5 +0 +33 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf), Alternate KiCad Library +DFN 0.5 +0 +25 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm_ThermalVias +DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf), Alternate KiCad Library +DFN 0.5 +0 +36 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm_ThermalVias2 +DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf), Alternate KiCad Library +DFN 0.5 +0 +36 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm +DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf), Alternate KiCad Library +DFN 0.5 +0 +26 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm_ThermalVias +DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf), Alternate KiCad Library +DFN 0.5 +0 +43 +17 +PCM_Package_DFN_QFN_AKL +DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm_ThermalVias2 +DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf), Alternate KiCad Library +DFN 0.5 +0 +45 +17 +PCM_Package_DFN_QFN_AKL +DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf), Alternate KiCad Library +DFN 0.5 +0 +29 +19 +PCM_Package_DFN_QFN_AKL +DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm_ThermalVias +DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf), Alternate KiCad Library +DFN 0.5 +0 +38 +19 +PCM_Package_DFN_QFN_AKL +DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm_ThermalVias2 +DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf), Alternate KiCad Library +DFN 0.5 +0 +35 +19 +PCM_Package_DFN_QFN_AKL +DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf), Alternate KiCad Library +DFN 0.5 +0 +27 +19 +PCM_Package_DFN_QFN_AKL +DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm_ThermalVias +DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf), Alternate KiCad Library +DFN 0.5 +0 +43 +19 +PCM_Package_DFN_QFN_AKL +DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm_ThermalVias2 +DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf), Alternate KiCad Library +DFN 0.5 +0 +34 +19 +PCM_Package_DFN_QFN_AKL +DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm +DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF), Alternate KiCad Library +DFN 0.5 +0 +33 +21 +PCM_Package_DFN_QFN_AKL +DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm_ThermalVias +DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF), Alternate KiCad Library +DFN 0.5 +0 +40 +21 +PCM_Package_DFN_QFN_AKL +DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm_ThermalVias2 +DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF), Alternate KiCad Library +DFN 0.5 +0 +40 +21 +PCM_Package_DFN_QFN_AKL +DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm +DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF), Alternate KiCad Library +DFN 0.5 +0 +35 +23 +PCM_Package_DFN_QFN_AKL +DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm_ThermalVias +DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF), Alternate KiCad Library +DFN 0.5 +0 +42 +23 +PCM_Package_DFN_QFN_AKL +DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm_ThermalVias2 +DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF), Alternate KiCad Library +DFN 0.5 +0 +42 +23 +PCM_Package_DFN_QFN_AKL +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf), Alternate KiCad Library +DFN 0.5 +0 +35 +25 +PCM_Package_DFN_QFN_AKL +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm_ThermalVias +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf), Alternate KiCad Library +DFN 0.5 +0 +54 +25 +PCM_Package_DFN_QFN_AKL +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm_ThermalVias2 +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf), Alternate KiCad Library +DFN 0.5 +0 +54 +25 +PCM_Package_DFN_QFN_AKL +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf), Alternate KiCad Library +DFN 0.4 +0 +43 +33 +PCM_Package_DFN_QFN_AKL +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm_ThermalVias +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf), Alternate KiCad Library +DFN 0.4 +0 +62 +33 +PCM_Package_DFN_QFN_AKL +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm_ThermalVias2 +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf), Alternate KiCad Library +DFN 0.4 +0 +62 +33 +PCM_Package_DFN_QFN_AKL +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF), Alternate KiCad Library +DFN 0.4 +0 +63 +45 +PCM_Package_DFN_QFN_AKL +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm_ThermalVias +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF), Alternate KiCad Library +DFN 0.4 +0 +79 +45 +PCM_Package_DFN_QFN_AKL +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm_ThermalVias2 +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF), Alternate KiCad Library +DFN 0.4 +0 +83 +45 +PCM_Package_DFN_QFN_AKL +DFN-S-8-1EP_6x5mm_P1.27mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 1.27 +0 +17 +9 +PCM_Package_DFN_QFN_AKL +DFN-S-8-1EP_6x5mm_P1.27mm_ThermalVias +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 1.27 +0 +28 +9 +PCM_Package_DFN_QFN_AKL +DFN-S-8-1EP_6x5mm_P1.27mm_ThermalVias2 +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 1.27 +0 +28 +9 +PCM_Package_DFN_QFN_AKL +Diodes_DFN1006-3 +DFN package size 1006 3 pins, Alternate KiCad Library +DFN package size 1006 3 pins +0 +3 +3 +PCM_Package_DFN_QFN_AKL +Diodes_UDFN-6_1.4x1.0mm_P0.5mm +X2-DFN1410-6 package used by Diodes Incorporated (https://www.tme.eu/Document/d29270fce96b388e3c7360ba4998e94f/AZV300x.pdf), Alternate KiCad Library +UDFN-6 1.4x1 Diodes +0 +6 +6 +PCM_Package_DFN_QFN_AKL +Diodes_UDFN-10_1.0x2.5mm_P0.5mm +U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf), Alternate KiCad Library +UDFN-10 U-DFN2510-10 Diodes +0 +10 +10 +PCM_Package_DFN_QFN_AKL +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library +HVQFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library +HVQFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias2 +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library +HVQFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library +HVQFN NoLead +0 +34 +25 +PCM_Package_DFN_QFN_AKL +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library +HVQFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias2 +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library +HVQFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +mlpq 32 7x7mm +0 +17 +15 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm_ThermalVias +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +mlpq 32 7x7mm +0 +24 +15 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm_ThermalVias2 +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +mlpq 32 7x7mm +0 +23 +15 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +mlpq 32 7x7mm +0 +42 +33 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm_ThermalVias +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +mlpq 32 7x7mm +0 +68 +33 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm_ThermalVias2 +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +mlpq 32 7x7mm +0 +79 +33 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.55x5.55mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793), Alternate KiCad Library +mlpq 32 7x7mm +0 +65 +49 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.15x5.15mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788), Alternate KiCad Library +mlpq 32 7x7mm +0 +65 +49 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.15x5.15mm_ThermalVias +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788), Alternate KiCad Library +mlpq 32 7x7mm +0 +91 +49 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.15x5.15mm_ThermalVias2 +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788), Alternate KiCad Library +mlpq 32 7x7mm +0 +82 +49 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.55x5.55mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793), Alternate KiCad Library +mlpq 32 7x7mm +0 +65 +49 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.55x5.55mm_ThermalVias +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793), Alternate KiCad Library +mlpq 32 7x7mm +0 +91 +49 +PCM_Package_DFN_QFN_AKL +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.55x5.55mm_ThermalVias2 +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793), Alternate KiCad Library +mlpq 32 7x7mm +0 +82 +49 +PCM_Package_DFN_QFN_AKL +Infineon_PQFN-22-15-4EP_6x5mm_P0.65mm +PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +pqfn 22 5x6mm +0 +47 +15 +PCM_Package_DFN_QFN_AKL +Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm +PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library +pqfn 44 7x7mm +0 +107 +27 +PCM_Package_DFN_QFN_AKL +Linear_DE14MA +14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf), Alternate KiCad Library +DFN 0.5 +0 +22 +14 +PCM_Package_DFN_QFN_AKL +Linear_DJC_DFN22_6x3mm +DFN22 6*3 MM, 0.5 P; Linear DJC Package(see https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_22_05-08-1714.pdf), Alternate KiCad Library +DFN 0.5 DJC +0 +34 +23 +PCM_Package_DFN_QFN_AKL +Linear_DJC_DFN22_6x3mm_ThermalVias +DFN22 6*3 MM, 0.5 P; Linear DJC Package(see https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_22_05-08-1714.pdf), Alternate KiCad Library +DFN 0.5 DJC +0 +43 +23 +PCM_Package_DFN_QFN_AKL +Linear_DJC_DFN22_6x3mm_ThermalVias2 +DFN22 6*3 MM, 0.5 P; Linear DJC Package(see https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_22_05-08-1714.pdf), Alternate KiCad Library +DFN 0.5 DJC +0 +39 +23 +PCM_Package_DFN_QFN_AKL +Linear_UGK52_QFN-46-52 +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf), Alternate KiCad Library +QFN 0.5 +0 +62 +47 +PCM_Package_DFN_QFN_AKL +Linear_UGK52_QFN-46-52_ThermalVias +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf), Alternate KiCad Library +QFN 0.5 +0 +93 +47 +PCM_Package_DFN_QFN_AKL +Linear_UGK52_QFN-46-52_ThermalVias2 +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf), Alternate KiCad Library +QFN 0.5 +0 +80 +47 +PCM_Package_DFN_QFN_AKL +MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm +MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), Alternate KiCad Library +MLF NoLead +0 +9 +7 +PCM_Package_DFN_QFN_AKL +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf), Alternate KiCad Library +DFN MLF 0.65 +0 +12 +9 +PCM_Package_DFN_QFN_AKL +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf), Alternate KiCad Library +DFN MLF 0.65 +0 +15 +9 +PCM_Package_DFN_QFN_AKL +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias2 +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf), Alternate KiCad Library +DFN MLF 0.65 +0 +17 +9 +PCM_Package_DFN_QFN_AKL +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), Alternate KiCad Library +MLF NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), Alternate KiCad Library +MLF NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias2 +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), Alternate KiCad Library +MLF NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm +Micro Leadframe Package, 16 pin with exposed pad, Alternate KiCad Library +MLPQ- 0.65 +0 +21 +17 +PCM_Package_DFN_QFN_AKL +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.8x1.3mm_ThermalVias +http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf, Alternate KiCad Library +mlf 8 2x2 mm +0 +14 +9 +PCM_Package_DFN_QFN_AKL +Microchip_8E-16 +16-Lead Quad Flat, No Lead Package (8E) - 4x4x0.9 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN Microchip 8E 16 +0 +21 +17 +PCM_Package_DFN_QFN_AKL +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf), Alternate KiCad Library +QFN dual row +0 +49 +45 +PCM_Package_DFN_QFN_AKL +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm_ThermalVias +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf), Alternate KiCad Library +QFN dual row +0 +59 +45 +PCM_Package_DFN_QFN_AKL +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf), Alternate KiCad Library +QFN dual row +0 +74 +65 +PCM_Package_DFN_QFN_AKL +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf), Alternate KiCad Library +QFN dual row +0 +91 +65 +PCM_Package_DFN_QFN_AKL +Microsemi_QFN-40-32-2EP_6x8mm_P0.5mm +40-Lead (32-Lead Populated) Plastic Quad Flat, No Lead Package - 6x8x0.9mm Body (https://www.microsemi.com/document-portal/doc_download/131677-pd70224-data-sheet), Alternate KiCad Library +QFN 0.5 +0 +92 +34 +PCM_Package_DFN_QFN_AKL +Mini-Circuits_DL805 +https://ww2.minicircuits.com/case_style/DL805.pdf, Alternate KiCad Library +RF Switch +0 +15 +9 +PCM_Package_DFN_QFN_AKL +Mini-Circuits_FG873-4_3x3mm +Mini Circuits Case style FG (https://ww2.minicircuits.com/case_style/FG873.pdf), Alternate KiCad Library +FG873 +0 +4 +4 +PCM_Package_DFN_QFN_AKL +Nordic_AQFN-73-1EP_7x7mm_P0.5mm +http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html, Alternate KiCad Library +AQFN 7mm +0 +78 +74 +PCM_Package_DFN_QFN_AKL +OnSemi_DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P (https://www.onsemi.com/pub/Collateral/511AT.PDF), Alternate KiCad Library +DFN 0.5 +0 +8 +8 +PCM_Package_DFN_QFN_AKL +OnSemi_UDFN-8_1.2x1.8mm_P0.4mm +8-Lead Plastic Dual Flat, No Lead Package, 1.2x1.8x1.55 mm Body [UDFN] (See http://www.onsemi.com/pub/Collateral/NLSV2T244-D.PDF), Alternate KiCad Library +dfn udfn dual flat +0 +8 +8 +PCM_Package_DFN_QFN_AKL +OnSemi_VCT-28_3.5x3.5mm_P0.4mm +OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), Alternate KiCad Library +OnSemi VCT DFN_QFN +0 +28 +28 +PCM_Package_DFN_QFN_AKL +OnSemi_WQFN-10_2.6x2.6mm_P0.5mm +WQFN, 10 Leads, 2.6mm x 2.6mm, https://www.tme.eu/Document/19a281ef0df304017c95a46671185e88/MC3x07x.PDF, Alternate KiCAD Library +QFN 10 CASE 510AJ +0 +10 +10 +PCM_Package_DFN_QFN_AKL +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf), Alternate KiCad Library +panasonic hqfn +0 +21 +17 +PCM_Package_DFN_QFN_AKL +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm_ThermalVias +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf), Alternate KiCad Library +panasonic hqfn +0 +31 +17 +PCM_Package_DFN_QFN_AKL +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm_ThermalVias2 +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf), Alternate KiCad Library +panasonic hqfn +0 +30 +17 +PCM_Package_DFN_QFN_AKL +Panasonic_HSON-8_8x8mm_P2.00mm +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf), Alternate KiCad Library +panasonic hson +0 +19 +9 +PCM_Package_DFN_QFN_AKL +Panasonic_HSON-8_8x8mm_P2.00mm_ThermalVias +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf), Alternate KiCad Library +panasonic hson +0 +41 +9 +PCM_Package_DFN_QFN_AKL +Panasonic_HSON-8_8x8mm_P2.00mm_ThermalVias2 +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf), Alternate KiCad Library +panasonic hson +0 +52 +9 +PCM_Package_DFN_QFN_AKL +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), Alternate KiCad Library +QFN NoLead +0 +17 +13 +PCM_Package_DFN_QFN_AKL +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm_ThermalVias +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), Alternate KiCad Library +QFN NoLead +0 +22 +13 +PCM_Package_DFN_QFN_AKL +QFN-12-1EP_3x3mm_P0.51mm_EP1.45x1.45mm +QFN, 12 Pin (https://ww2.minicircuits.com/case_style/DQ1225.pdf), Alternate KiCad Library +QFN NoLead +0 +17 +13 +PCM_Package_DFN_QFN_AKL +QFN-14-1EP_1.6x1.6mm_P0.4mm_EP0.74x0.74mm +QFN, 14 Pin (http://www.skyworksinc.com/uploads/documents/SKY13575_639LF_203270D.pdf), Alternate KiCad Library +QFN NoLead +0 +19 +15 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsv521.pdf), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +QFN, 16 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library +QFN DFN_QFN +0 +26 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm_ThermalVias +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), Alternate KiCad Library +QFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), Alternate KiCad Library +QFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), Alternate KiCad Library +QFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias2 +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias2 +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias2 +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack_ThermalVias +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias2 +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias2 +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias2 +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +QFN-16_3x3mm_P0.5mm +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsx631.pdf), Alternate KiCad Library +QFN NoLead +0 +16 +16 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), Alternate KiCad Library +QFN NoLead +0 +31 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias2 +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), Alternate KiCad Library +QFN NoLead +0 +30 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), Alternate KiCad Library +QFN NoLead +0 +30 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library +QFN NoLead +0 +32 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias2 +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library +QFN NoLead +0 +29 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), Alternate KiCad Library +QFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias2 +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), Alternate KiCad Library +QFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias2 +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), Alternate KiCad Library +QFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias2 +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), Alternate KiCad Library +QFN NoLead +0 +27 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), Alternate KiCad Library +QFN NoLead +0 +40 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias2 +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), Alternate KiCad Library +QFN NoLead +0 +39 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), Alternate KiCad Library +QFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias2 +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), Alternate KiCad Library +QFN NoLead +0 +49 +21 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm_ThermalVias +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), Alternate KiCad Library +QFN NoLead +0 +34 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library +QFN NoLead +0 +31 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias2 +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library +QFN NoLead +0 +33 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), Alternate KiCad Library +QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias2 +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), Alternate KiCad Library +QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias2 +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), Alternate KiCad Library +QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias2 +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), Alternate KiCad Library +QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias2 +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm +QFN, 24 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library +QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias2 +QFN, 24 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), Alternate KiCad Library +QFN NoLead +0 +31 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), Alternate KiCad Library +QFN NoLead +0 +44 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias2 +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), Alternate KiCad Library +QFN NoLead +0 +43 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), Alternate KiCad Library +QFN NoLead +0 +51 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias2 +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), Alternate KiCad Library +QFN NoLead +0 +53 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), Alternate KiCad Library +QFN NoLead +0 +46 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias2 +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), Alternate KiCad Library +QFN NoLead +0 +53 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), Alternate KiCad Library +QFN NoLead +0 +34 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), Alternate KiCad Library +QFN NoLead +0 +67 +25 +PCM_Package_DFN_QFN_AKL +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias2 +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), Alternate KiCad Library +QFN NoLead +0 +53 +25 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), Alternate KiCad Library +QFN NoLead +0 +37 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), Alternate KiCad Library +QFN NoLead +0 +53 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias2 +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), Alternate KiCad Library +QFN NoLead +0 +45 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), Alternate KiCad Library +QFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), Alternate KiCad Library +QFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias2 +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), Alternate KiCad Library +QFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), Alternate KiCad Library +QFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), Alternate KiCad Library +QFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias2 +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), Alternate KiCad Library +QFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), Alternate KiCad Library +QFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), Alternate KiCad Library +QFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias2 +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), Alternate KiCad Library +QFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), Alternate KiCad Library +QFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), Alternate KiCad Library +QFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias2 +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), Alternate KiCad Library +QFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), Alternate KiCad Library +QFN NoLead +0 +35 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), Alternate KiCad Library +QFN NoLead +0 +48 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias2 +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), Alternate KiCad Library +QFN NoLead +0 +47 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), Alternate KiCad Library +QFN NoLead +0 +38 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), Alternate KiCad Library +QFN NoLead +0 +55 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias2 +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), Alternate KiCad Library +QFN NoLead +0 +57 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), Alternate KiCad Library +QFN NoLead +0 +41 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), Alternate KiCad Library +QFN NoLead +0 +62 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias2 +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), Alternate KiCad Library +QFN NoLead +0 +59 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), Alternate KiCad Library +QFN NoLead +0 +38 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), Alternate KiCad Library +QFN NoLead +0 +71 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias2 +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), Alternate KiCad Library +QFN NoLead +0 +58 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), Alternate KiCad Library +QFN NoLead +0 +38 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), Alternate KiCad Library +QFN NoLead +0 +71 +29 +PCM_Package_DFN_QFN_AKL +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias2 +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), Alternate KiCad Library +QFN NoLead +0 +58 +29 +PCM_Package_DFN_QFN_AKL +QFN-28_4x4mm_P0.5mm +QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), Alternate KiCad Library +QFN NoLead +0 +28 +28 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), Alternate KiCad Library +QFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), Alternate KiCad Library +QFN NoLead +0 +47 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias2 +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), Alternate KiCad Library +QFN NoLead +0 +46 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), Alternate KiCad Library +QFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias2 +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), Alternate KiCad Library +QFN NoLead +0 +46 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), Alternate KiCad Library +QFN NoLead +0 +42 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias2 +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), Alternate KiCad Library +QFN NoLead +0 +46 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), Alternate KiCad Library +QFN NoLead +0 +42 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias2 +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), Alternate KiCad Library +QFN NoLead +0 +61 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), Alternate KiCad Library +QFN NoLead +0 +42 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias2 +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), Alternate KiCad Library +QFN NoLead +0 +61 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), Alternate KiCad Library +QFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias2 +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), Alternate KiCad Library +QFN NoLead +0 +61 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), Alternate KiCad Library +QFN NoLead +0 +42 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias2 +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), Alternate KiCad Library +QFN NoLead +0 +61 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), Alternate KiCad Library +QFN NoLead +0 +42 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias2 +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), Alternate KiCad Library +QFN NoLead +0 +62 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), Alternate KiCad Library +QFN NoLead +0 +49 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), Alternate KiCad Library +QFN NoLead +0 +75 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias2 +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), Alternate KiCad Library +QFN NoLead +0 +78 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), Alternate KiCad Library +QFN NoLead +0 +49 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), Alternate KiCad Library +QFN NoLead +0 +75 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias2 +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), Alternate KiCad Library +QFN NoLead +0 +78 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +49 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +84 +33 +PCM_Package_DFN_QFN_AKL +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias2 +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +98 +33 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), Alternate KiCad Library +QFN NoLead +0 +46 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), Alternate KiCad Library +QFN NoLead +0 +56 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias2 +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), Alternate KiCad Library +QFN NoLead +0 +57 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), Alternate KiCad Library +QFN NoLead +0 +49 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), Alternate KiCad Library +QFN NoLead +0 +56 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias2 +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), Alternate KiCad Library +QFN NoLead +0 +59 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), Alternate KiCad Library +QFN NoLead +0 +46 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), Alternate KiCad Library +QFN NoLead +0 +63 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias2 +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), Alternate KiCad Library +QFN NoLead +0 +82 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), Alternate KiCad Library +QFN NoLead +0 +46 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), Alternate KiCad Library +QFN NoLead +0 +63 +37 +PCM_Package_DFN_QFN_AKL +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias2 +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), Alternate KiCad Library +QFN NoLead +0 +78 +37 +PCM_Package_DFN_QFN_AKL +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), Alternate KiCad Library +QFN NoLead +0 +47 +39 +PCM_Package_DFN_QFN_AKL +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), Alternate KiCad Library +QFN NoLead +0 +63 +39 +PCM_Package_DFN_QFN_AKL +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias2 +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), Alternate KiCad Library +QFN NoLead +0 +63 +39 +PCM_Package_DFN_QFN_AKL +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), Alternate KiCad Library +QFN NoLead +0 +54 +39 +PCM_Package_DFN_QFN_AKL +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), Alternate KiCad Library +QFN NoLead +0 +63 +39 +PCM_Package_DFN_QFN_AKL +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias2 +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), Alternate KiCad Library +QFN NoLead +0 +79 +39 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), Alternate KiCad Library +QFN NoLead +0 +50 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), Alternate KiCad Library +QFN NoLead +0 +67 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias2 +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), Alternate KiCad Library +QFN NoLead +0 +69 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), Alternate KiCad Library +QFN NoLead +0 +50 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), Alternate KiCad Library +QFN NoLead +0 +67 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias2 +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), Alternate KiCad Library +QFN NoLead +0 +70 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), Alternate KiCad Library +QFN NoLead +0 +57 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), Alternate KiCad Library +QFN NoLead +0 +83 +41 +PCM_Package_DFN_QFN_AKL +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias2 +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), Alternate KiCad Library +QFN NoLead +0 +86 +41 +PCM_Package_DFN_QFN_AKL +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), Alternate KiCad Library +QFN NoLead +0 +55 +43 +PCM_Package_DFN_QFN_AKL +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), Alternate KiCad Library +QFN NoLead +0 +76 +43 +PCM_Package_DFN_QFN_AKL +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias2 +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), Alternate KiCad Library +QFN NoLead +0 +75 +43 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), Alternate KiCad Library +QFN NoLead +0 +61 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), Alternate KiCad Library +QFN NoLead +0 +87 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias2 +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), Alternate KiCad Library +QFN NoLead +0 +90 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), Alternate KiCad Library +QFN NoLead +0 +61 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), Alternate KiCad Library +QFN NoLead +0 +87 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias2 +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), Alternate KiCad Library +QFN NoLead +0 +110 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), Alternate KiCad Library +QFN NoLead +0 +70 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), Alternate KiCad Library +QFN NoLead +0 +107 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias2 +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), Alternate KiCad Library +QFN NoLead +0 +118 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN]; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf, Alternate KiCad Library +QFN 0.65 +0 +61 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf, Alternate KiCad Library +QFN 0.65 +0 +87 +45 +PCM_Package_DFN_QFN_AKL +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias2 +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf, Alternate KiCad Library +QFN 0.65 +0 +142 +45 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library +QFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library +QFN NoLead +0 +75 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias2 +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library +QFN NoLead +0 +77 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), Alternate KiCad Library +QFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias2 +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), Alternate KiCad Library +QFN NoLead +0 +78 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library +QFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library +QFN NoLead +0 +75 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias2 +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library +QFN NoLead +0 +78 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), Alternate KiCad Library +QFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias2 +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), Alternate KiCad Library +QFN NoLead +0 +94 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), Alternate KiCad Library +QFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias2 +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), Alternate KiCad Library +QFN NoLead +0 +94 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), Alternate KiCad Library +QFN NoLead +0 +65 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias2 +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), Alternate KiCad Library +QFN NoLead +0 +114 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), Alternate KiCad Library +QFN NoLead +0 +65 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias2 +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), Alternate KiCad Library +QFN NoLead +0 +114 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), Alternate KiCad Library +QFN NoLead +0 +65 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias2 +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), Alternate KiCad Library +QFN NoLead +0 +114 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +65 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias2 +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), Alternate KiCad Library +QFN NoLead +0 +114 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), Alternate KiCad Library +QFN NoLead +0 +74 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), Alternate KiCad Library +QFN NoLead +0 +111 +49 +PCM_Package_DFN_QFN_AKL +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias2 +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), Alternate KiCad Library +QFN NoLead +0 +134 +49 +PCM_Package_DFN_QFN_AKL +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), Alternate KiCad Library +QFN NoLead +0 +73 +53 +PCM_Package_DFN_QFN_AKL +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), Alternate KiCad Library +QFN NoLead +0 +104 +53 +PCM_Package_DFN_QFN_AKL +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias2 +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), Alternate KiCad Library +QFN NoLead +0 +118 +53 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), Alternate KiCad Library +QFN NoLead +0 +73 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), Alternate KiCad Library +QFN NoLead +0 +99 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias2 +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), Alternate KiCad Library +QFN NoLead +0 +122 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), Alternate KiCad Library +QFN NoLead +0 +73 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), Alternate KiCad Library +QFN NoLead +0 +99 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias2 +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), Alternate KiCad Library +QFN NoLead +0 +110 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), Alternate KiCad Library +QFN NoLead +0 +73 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), Alternate KiCad Library +QFN NoLead +0 +99 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias2 +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), Alternate KiCad Library +QFN NoLead +0 +111 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), Alternate KiCad Library +QFN NoLead +0 +73 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), Alternate KiCad Library +QFN NoLead +0 +99 +57 +PCM_Package_DFN_QFN_AKL +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias2 +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), Alternate KiCad Library +QFN NoLead +0 +117 +57 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), Alternate KiCad Library +QFN NoLead +0 +90 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), Alternate KiCad Library +QFN NoLead +0 +127 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias2 +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), Alternate KiCad Library +QFN NoLead +0 +130 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), Alternate KiCad Library +QFN NoLead +0 +74 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), Alternate KiCad Library +QFN NoLead +0 +79 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias2 +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), Alternate KiCad Library +QFN NoLead +0 +113 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), Alternate KiCad Library +QFN NoLead +0 +74 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), Alternate KiCad Library +QFN NoLead +0 +91 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias2 +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), Alternate KiCad Library +QFN NoLead +0 +118 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), Alternate KiCad Library +QFN NoLead +0 +74 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), Alternate KiCad Library +QFN NoLead +0 +91 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias2 +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), Alternate KiCad Library +QFN NoLead +0 +118 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), Alternate KiCad Library +QFN NoLead +0 +81 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), Alternate KiCad Library +QFN NoLead +0 +107 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias2 +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), Alternate KiCad Library +QFN NoLead +0 +118 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), Alternate KiCad Library +QFN NoLead +0 +81 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), Alternate KiCad Library +QFN NoLead +0 +107 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias2 +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), Alternate KiCad Library +QFN NoLead +0 +118 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), Alternate KiCad Library +QFN NoLead +0 +81 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), Alternate KiCad Library +QFN NoLead +0 +107 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias2 +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), Alternate KiCad Library +QFN NoLead +0 +130 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), Alternate KiCad Library +QFN NoLead +0 +90 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), Alternate KiCad Library +QFN NoLead +0 +127 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias2 +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), Alternate KiCad Library +QFN NoLead +0 +155 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), Alternate KiCad Library +QFN NoLead +0 +101 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), Alternate KiCad Library +QFN NoLead +0 +151 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias2 +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), Alternate KiCad Library +QFN NoLead +0 +155 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), Alternate KiCad Library +QFN NoLead +0 +90 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), Alternate KiCad Library +QFN NoLead +0 +127 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias2 +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), Alternate KiCad Library +QFN NoLead +0 +155 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826), Alternate KiCad Library +QFN 0.5 +0 +90 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm_ThermalVias +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826), Alternate KiCad Library +QFN 0.5 +0 +127 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm_ThermalVias2 +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826), Alternate KiCad Library +QFN 0.5 +0 +155 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.5 +0 +90 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm_ThermalVias +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.5 +0 +127 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm_ThermalVias2 +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.5 +0 +155 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), Alternate KiCad Library +QFN NoLead +0 +101 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), Alternate KiCad Library +QFN NoLead +0 +151 +65 +PCM_Package_DFN_QFN_AKL +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias2 +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), Alternate KiCad Library +QFN NoLead +0 +155 +65 +PCM_Package_DFN_QFN_AKL +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), Alternate KiCad Library +QFN NoLead +0 +85 +69 +PCM_Package_DFN_QFN_AKL +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), Alternate KiCad Library +QFN NoLead +0 +111 +69 +PCM_Package_DFN_QFN_AKL +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias2 +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), Alternate KiCad Library +QFN NoLead +0 +122 +69 +PCM_Package_DFN_QFN_AKL +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), Alternate KiCad Library +QFN NoLead +0 +82 +73 +PCM_Package_DFN_QFN_AKL +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), Alternate KiCad Library +QFN NoLead +0 +135 +73 +PCM_Package_DFN_QFN_AKL +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias2 +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), Alternate KiCad Library +QFN NoLead +0 +138 +73 +PCM_Package_DFN_QFN_AKL +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), Alternate KiCad Library +QFN NoLead +0 +86 +77 +PCM_Package_DFN_QFN_AKL +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), Alternate KiCad Library +QFN NoLead +0 +103 +77 +PCM_Package_DFN_QFN_AKL +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias2 +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), Alternate KiCad Library +QFN NoLead +0 +118 +77 +PCM_Package_DFN_QFN_AKL +Qorvo_DFN-8-1EP_2x2mm_P0.5mm +DFN 8 2x2mm, 0.5mm http://www.qorvo.com/products/d/da000896, Alternate KiCad Library +DFN 0.5 Qorvo 2x2mm +0 +9 +9 +PCM_Package_DFN_QFN_AKL +ROHM_DFN0604-3 +DFN package size 0604 3 pins, Alternate KiCad Library +DFN package size 0604 3 pins +0 +3 +3 +PCM_Package_DFN_QFN_AKL +ST_UFQFPN-20_3x3mm_P0.5mm +UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf), Alternate KiCad Library +UFQFPN 0.5 +0 +20 +20 +PCM_Package_DFN_QFN_AKL +ST_UQFN-6L_1.5x1.7mm_Pitch0.5mm +ST UQFN 6 pin 0.5mm Pitch http://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf, Alternate KiCad Library +UQFN DFN 0.5 ST +0 +6 +6 +PCM_Package_DFN_QFN_AKL +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library +QFN 0.5 +0 +25 +21 +PCM_Package_DFN_QFN_AKL +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library +QFN 0.5 +0 +25 +21 +PCM_Package_DFN_QFN_AKL +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library +QFN 0.5 +0 +30 +21 +PCM_Package_DFN_QFN_AKL +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_ThermalVias +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library +QFN 0.5 +0 +30 +21 +PCM_Package_DFN_QFN_AKL +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), Alternate KiCad Library +TDFN NoLead +0 +11 +7 +PCM_Package_DFN_QFN_AKL +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), Alternate KiCad Library +TDFN NoLead +0 +14 +7 +PCM_Package_DFN_QFN_AKL +TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), Alternate KiCad Library +TDFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf), Alternate KiCad Library +TDFN DFN 0.5mm +0 +13 +9 +PCM_Package_DFN_QFN_AKL +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf), Alternate KiCad Library +TDFN DFN 0.5mm +0 +18 +9 +PCM_Package_DFN_QFN_AKL +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py, Alternate KiCad Library +TDFN NoLead +0 +13 +11 +PCM_Package_DFN_QFN_AKL +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), Alternate KiCad Library +TDFN NoLead +0 +16 +11 +PCM_Package_DFN_QFN_AKL +TDFN-12_2x3mm_P0.5mm +TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf, Alternate KiCad Library +DFN +0 +12 +12 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), Alternate KiCad Library +TQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), Alternate KiCad Library +TQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), Alternate KiCad Library +TQFN NoLead +0 +23 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), Alternate KiCad Library +TQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), Alternate KiCad Library +TQFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias2 +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), Alternate KiCad Library +TQFN NoLead +0 +42 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), Alternate KiCad Library +TQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), Alternate KiCad Library +TQFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias2 +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), Alternate KiCad Library +TQFN NoLead +0 +33 +17 +PCM_Package_DFN_QFN_AKL +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), Alternate KiCad Library +TQFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), Alternate KiCad Library +TQFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias2 +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), Alternate KiCad Library +TQFN NoLead +0 +37 +21 +PCM_Package_DFN_QFN_AKL +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), Alternate KiCad Library +TQFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), Alternate KiCad Library +TQFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias2 +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), Alternate KiCad Library +TQFN NoLead +0 +37 +21 +PCM_Package_DFN_QFN_AKL +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), Alternate KiCad Library +TQFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), Alternate KiCad Library +TQFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias2 +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), Alternate KiCad Library +TQFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), Alternate KiCad Library +TQFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), Alternate KiCad Library +TQFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias2 +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), Alternate KiCad Library +TQFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), Alternate KiCad Library +TQFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), Alternate KiCad Library +TQFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias2 +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), Alternate KiCad Library +TQFN NoLead +0 +45 +29 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), Alternate KiCad Library +TQFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), Alternate KiCad Library +TQFN NoLead +0 +43 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias2 +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), Alternate KiCad Library +TQFN NoLead +0 +50 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), Alternate KiCad Library +TQFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), Alternate KiCad Library +TQFN NoLead +0 +47 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias2 +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), Alternate KiCad Library +TQFN NoLead +0 +49 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), Alternate KiCad Library +TQFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), Alternate KiCad Library +TQFN NoLead +0 +47 +33 +PCM_Package_DFN_QFN_AKL +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias2 +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), Alternate KiCad Library +TQFN NoLead +0 +49 +33 +PCM_Package_DFN_QFN_AKL +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), Alternate KiCad Library +TQFN NoLead +0 +45 +41 +PCM_Package_DFN_QFN_AKL +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), Alternate KiCad Library +TQFN NoLead +0 +55 +41 +PCM_Package_DFN_QFN_AKL +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias2 +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), Alternate KiCad Library +TQFN NoLead +0 +57 +41 +PCM_Package_DFN_QFN_AKL +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), Alternate KiCad Library +TQFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), Alternate KiCad Library +TQFN NoLead +0 +75 +49 +PCM_Package_DFN_QFN_AKL +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias2 +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), Alternate KiCad Library +TQFN NoLead +0 +94 +49 +PCM_Package_DFN_QFN_AKL +Texas_DRB0008A +DFN-8, 3x3x1mm, http://www.ti.com/lit/ds/symlink/ucc24610.pdf, Alternate KiCad Library +DRB0008A +0 +23 +9 +PCM_Package_DFN_QFN_AKL +Texas_MOF0009A +Texas Instruments, QFM MOF0009A, 6x8x2mm (http://www.ti.com/lit/ml/mpsi063a/mpsi063a.pdf), Alternate KiCad Library +ti qfm mof0009a +0 +24 +9 +PCM_Package_DFN_QFN_AKL +Texas_QFN-41_10x16mm +QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf), Alternate KiCad Library +QFN DFN_QFN +0 +65 +41 +PCM_Package_DFN_QFN_AKL +Texas_R-PUQFN-N10 +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf, Alternate KiCad Library +Texas_R-PUQFN-N10 +0 +10 +10 +PCM_Package_DFN_QFN_AKL +Texas_R-PWQFN-N28_EP2.1x3.1mm +QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), Alternate KiCad Library +QFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +Texas_R-PWQFN-N28_EP2.1x3.1mm_ThermalVias +QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), Alternate KiCad Library +QFN NoLead +0 +40 +29 +PCM_Package_DFN_QFN_AKL +Texas_R-PWQFN-N28_EP2.1x3.1mm_ThermalVias2 +QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), Alternate KiCad Library +QFN NoLead +0 +41 +29 +PCM_Package_DFN_QFN_AKL +Texas_RGE0024C_EP2.1x2.1mm +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), Alternate KiCad Library +Texas QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +Texas_RGE0024C_EP2.1x2.1mm_ThermalVias +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), Alternate KiCad Library +Texas QFN NoLead +0 +35 +25 +PCM_Package_DFN_QFN_AKL +Texas_RGE0024H_EP2.7x2.7mm +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), Alternate KiCad Library +Texas QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +Texas_RGE0024H_EP2.7x2.7mm_ThermalVias +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), Alternate KiCad Library +Texas QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), Alternate KiCad Library +QFN NoLead +0 +27 +17 +PCM_Package_DFN_QFN_AKL +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40), Alternate KiCad Library +QFN NoLead +0 +36 +25 +PCM_Package_DFN_QFN_AKL +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias2 +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40), Alternate KiCad Library +QFN NoLead +0 +40 +25 +PCM_Package_DFN_QFN_AKL +Texas_RNN0018A +Texas Instruments, VQFN-HR RNN0018A (http://www.ti.com/lit/ds/symlink/tps568215.pdf), Alternate KiCad Library +ti vqfn-hr rnn0018a +0 +26 +18 +PCM_Package_DFN_QFN_AKL +Texas_RSV_UQFN16_1.8x2.6mm_P0.4mm +UQFN-16 RSV Package, 1.8x2.6mm Size, 0.4mm Pin Pitch, see: https://www.ti.com/lit/ds/sbos259f/sbos259f.pdf?ts=1640682968070&ref_url=https%253A%252F%252Fwww.google.com%252F, Alternate KiCad Library +QFN UQFN RSV 1.8x2.6 +0 +16 +16 +PCM_Package_DFN_QFN_AKL +Texas_RUM0016A_EP2.6x2.6mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +Texas_RUM0016A_EP2.6x2.6mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +Texas_RUM0016A_EP2.6x2.6mm_ThermalVias2 +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +Texas_RWH0032A +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf), Alternate KiCad Library +ti rwh0032a +0 +43 +33 +PCM_Package_DFN_QFN_AKL +Texas_RWH0032A_ThermalVias +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf), Alternate KiCad Library +ti rwh0032a +0 +74 +33 +PCM_Package_DFN_QFN_AKL +Texas_R_PUQFN-N12 +Texas_R_PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf, Alternate KiCad Library +Texas_R_PUQFN-N12 +0 +13 +12 +PCM_Package_DFN_QFN_AKL +Texas_S-PDSO-N10_EP1.2x2mm +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), Alternate KiCad Library +DFN NoLead +0 +15 +11 +PCM_Package_DFN_QFN_AKL +Texas_S-PDSO-N10_EP1.2x2mm_ThermalVias +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), Alternate KiCad Library +DFN NoLead +0 +18 +11 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N14 +Texas_S-PVQFN-N14 http://www.ti.com/lit/ds/symlink/txb0104.pdf, Alternate KiCad Library +Texas_S-PVQFN-N14_4.3x4.3_Pitch0.5mm_ThermalPad +0 +19 +15 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N14_ThermalVias +Texas_S-PVQFN-N14_ThermalVias http://www.ti.com/lit/ds/symlink/txb0104.pdf, Alternate KiCad Library +Texas_S-PVQFN-N14_ThermalVias +0 +24 +15 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N16_EP2.7x2.7mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), Alternate KiCad Library +QFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N16_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), Alternate KiCad Library +QFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N16_EP2.7x2.7mm_ThermalVias2 +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), Alternate KiCad Library +QFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP2.4x2.4mm +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP2.4x2.4mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), Alternate KiCad Library +QFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP2.4x2.4mm_ThermalVias2 +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP2.7x2.7mm +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP2.7x2.7mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), Alternate KiCad Library +QFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP2.7x2.7mm_ThermalVias2 +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP3.15x3.15mm +QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), Alternate KiCad Library +QFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP3.15x3.15mm_ThermalVias +QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), Alternate KiCad Library +QFN NoLead +0 +47 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N20_EP3.15x3.15mm_ThermalVias2 +QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), Alternate KiCad Library +QFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N24_EP2.1x2.1mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N24_EP2.1x2.1mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), Alternate KiCad Library +QFN NoLead +0 +35 +25 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N24_EP2.1x2.1mm_ThermalVias2 +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N32_EP3.45x3.45mm +QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +42 +33 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N32_EP3.45x3.45mm_ThermalVias +QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +59 +33 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N32_EP3.45x3.45mm_ThermalVias2 +QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +61 +33 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N36_EP4.4x4.4mm +QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), Alternate KiCad Library +QFN NoLead +0 +46 +37 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N36_EP4.4x4.4mm_ThermalVias +QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), Alternate KiCad Library +QFN NoLead +0 +79 +37 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N36_EP4.4x4.4mm_ThermalVias2 +QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), Alternate KiCad Library +QFN NoLead +0 +71 +37 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP2.9x2.9mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +45 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP2.9x2.9mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +55 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP2.9x2.9mm_ThermalVias2 +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +70 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP3.52x2.62mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +47 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP3.52x2.62mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +60 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP3.52x2.62mm_ThermalVias2 +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +77 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP4.6x4.6mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +50 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP4.6x4.6mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +83 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP4.6x4.6mm_ThermalVias2 +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +86 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP4.15x4.15mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +50 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP4.15x4.15mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +83 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N40_EP4.15x4.15mm_ThermalVias2 +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library +QFN NoLead +0 +75 +41 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N48_EP5.15x5.15mm +QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), Alternate KiCad Library +QFN NoLead +0 +65 +49 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N48_EP5.15x5.15mm_ThermalVias +QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), Alternate KiCad Library +QFN NoLead +0 +111 +49 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N48_EP5.15x5.15mm_ThermalVias2 +QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), Alternate KiCad Library +QFN NoLead +0 +114 +49 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N64_EP4.25x4.25mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), Alternate KiCad Library +QFN NoLead +0 +69 +65 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N64_EP4.25x4.25mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), Alternate KiCad Library +QFN NoLead +0 +127 +65 +PCM_Package_DFN_QFN_AKL +Texas_S-PVQFN-N64_EP4.25x4.25mm_ThermalVias2 +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), Alternate KiCad Library +QFN NoLead +0 +118 +65 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N16_EP2.1x2.1mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), Alternate KiCad Library +QFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N16_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), Alternate KiCad Library +QFN NoLead +0 +27 +17 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N20 +20-Pin Plastic Quad Flatpack No-Lead Package, Body 3.0x3.0x0.8mm, Texas Instruments (http://www.ti.com/lit/ds/symlink/tps22993.pdf), Alternate KiCad Library +QFN 0.4 +0 +24 +20 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N24_EP2.7x2.7mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +29 +25 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N24_EP2.7x2.7mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N24_EP2.7x2.7mm_ThermalVias2 +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), Alternate KiCad Library +QFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N32_EP2.8x2.8mm +QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), Alternate KiCad Library +QFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N32_EP2.8x2.8mm_ThermalVias +QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), Alternate KiCad Library +QFN NoLead +0 +47 +33 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N32_EP2.8x2.8mm_ThermalVias2 +QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), Alternate KiCad Library +QFN NoLead +0 +46 +33 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N100_EP5.5x5.5mm +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf, Alternate KiCad Library +MultiRow QFN +0 +114 +105 +PCM_Package_DFN_QFN_AKL +Texas_S-PWQFN-N100_EP5.5x5.5mm_ThermalVias +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf, Alternate KiCad Library +MultiRow QFN +0 +131 +105 +PCM_Package_DFN_QFN_AKL +Texas_S-PX2QFN-14 +Texas QFN, 14 Pin (http://www.ti.com/lit/ds/symlink/tlv9004.pdf#page=64), Alternate KiCad Library +Texas QFN NoLead +0 +14 +14 +PCM_Package_DFN_QFN_AKL +Texas_VQFN-RHL-20 +http://www.ti.com/lit/ds/symlink/bq51050b.pdf, Alternate KiCad Library +RHL0020A +0 +35 +21 +PCM_Package_DFN_QFN_AKL +Texas_VQFN-RHL-20_ThermalVias +http://www.ti.com/lit/ds/symlink/bq51050b.pdf, Alternate KiCad Library +RHL0020A +0 +43 +21 +PCM_Package_DFN_QFN_AKL +Texas_VQFN-RHL-20_ThermalVias2 +http://www.ti.com/lit/ds/symlink/bq51050b.pdf, Alternate KiCad Library +RHL0020A +0 +43 +21 +PCM_Package_DFN_QFN_AKL +Texas_VSON-HR-8_1.5x2mm_P0.5mm +Texas VSON-HR, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62823.pdf#page=29), Alternate KiCad Library +Texas VSON-HR NoLead +0 +8 +8 +PCM_Package_DFN_QFN_AKL +Texas_WQFN-MR-100_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf, Alternate KiCad Library +MultiRow QFN +0 +114 +105 +PCM_Package_DFN_QFN_AKL +Texas_WQFN-MR-100_ThermalVias_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf, Alternate KiCad Library +MultiRow QFN +0 +131 +105 +PCM_Package_DFN_QFN_AKL +Texas_X2QFN-8_1.5x1.5mm +Texas Instruments RUG package, 1.5mm x 1.5mm QFN package, https://www.ti.com/lit/ds/symlink/tlv1701.pdf?ts=1647331616173&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTLV1701 +QFN RUG texas X2QFN 1.5x1.5 +0 +8 +8 +PCM_Package_DFN_QFN_AKL +Texas_X2QFN-12_1.6x1.6mm_P0.4mm +Texas X2QFN, 12 Pin (http://www.ti.com/lit/ml/mpqf391c/mpqf391c.pdf), Alternate KiCad Library +Texas X2QFN NoLead +0 +12 +12 +PCM_Package_DFN_QFN_AKL +UDFN-4-1EP_1x1mm_P0.65mm_EP0.48x0.48mm +UDFN-4_1x1mm_P0.65mm, http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550x-300mA-Single-Output-LDO-in-Small-Packages-DS20006006A.pdf, Alternate KiCad Library +UDFN-4_1x1mm_P0.65mm +0 +5 +5 +PCM_Package_DFN_QFN_AKL +UDFN-9_1.0x3.8mm_P0.5mm +9-pin UDFN package, 1.0x3.8mm, (Ref: https://katalog.we-online.de/pbs/datasheet/824014881.pdf), Alternate KiCad Library +UDFN SMD +0 +9 +9 +PCM_Package_DFN_QFN_AKL +UDFN-10_1.35x2.6mm_P0.5mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/f2/11/8a/ed/40/31/40/56/DM00088292.pdf/files/DM00088292.pdf/jcr:content/translations/en.DM00088292.pdf, Alternate KiCad Library +UDFN 0.5 uQFN +0 +10 +10 +PCM_Package_DFN_QFN_AKL +UQFN-10_1.3x1.8mm_P0.4mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 9)), Alternate KiCad Library +UQFN NoLead +0 +10 +10 +PCM_Package_DFN_QFN_AKL +UQFN-10_1.4x1.8mm_P0.4mm +UQFN 10pin, https://www.onsemi.com/pub/Collateral/488AT.PDF, Alternate KiCad Library +UQFN-10_1.4x1.8mm_P0.4mm +0 +10 +10 +PCM_Package_DFN_QFN_AKL +UQFN-10_1.6x2.1mm_P0.5mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 12)), Alternate KiCad Library +UQFN NoLead +0 +10 +10 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.5 +0 +21 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.5 +0 +26 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), Alternate KiCad Library +UQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), Alternate KiCad Library +UQFN NoLead +0 +31 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias2 +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), Alternate KiCad Library +UQFN NoLead +0 +30 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.65 +0 +21 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.65 +0 +31 +17 +PCM_Package_DFN_QFN_AKL +UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias2 +16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFN 0.65 +0 +30 +17 +PCM_Package_DFN_QFN_AKL +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), Alternate KiCad Library +UQFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), Alternate KiCad Library +UQFN NoLead +0 +30 +21 +PCM_Package_DFN_QFN_AKL +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), Alternate KiCad Library +UQFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), Alternate KiCad Library +UQFN NoLead +0 +35 +21 +PCM_Package_DFN_QFN_AKL +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias2 +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), Alternate KiCad Library +UQFN NoLead +0 +34 +21 +PCM_Package_DFN_QFN_AKL +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), Alternate KiCad Library +UQFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), Alternate KiCad Library +UQFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias2 +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), Alternate KiCad Library +UQFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), Alternate KiCad Library +UQFN NoLead +0 +50 +41 +PCM_Package_DFN_QFN_AKL +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), Alternate KiCad Library +UQFN NoLead +0 +67 +41 +PCM_Package_DFN_QFN_AKL +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias2 +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), Alternate KiCad Library +UQFN NoLead +0 +75 +41 +PCM_Package_DFN_QFN_AKL +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), Alternate KiCad Library +UQFN NoLead +0 +58 +49 +PCM_Package_DFN_QFN_AKL +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), Alternate KiCad Library +UQFN NoLead +0 +75 +49 +PCM_Package_DFN_QFN_AKL +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias2 +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), Alternate KiCad Library +UQFN NoLead +0 +90 +49 +PCM_Package_DFN_QFN_AKL +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm +UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), Alternate KiCad Library +UQFN NoLead +0 +53 +49 +PCM_Package_DFN_QFN_AKL +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias +UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), Alternate KiCad Library +UQFN NoLead +0 +75 +49 +PCM_Package_DFN_QFN_AKL +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias2 +UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), Alternate KiCad Library +UQFN NoLead +0 +94 +49 +PCM_Package_DFN_QFN_AKL +VDFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.7mm +8-Lead Very Thin Dual Flatpack No-Lead (LZ) - 2x3x0.9 mm Body [VDFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +DFN 0.5 +0 +11 +9 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), Alternate KiCad Library +VQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), Alternate KiCad Library +VQFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), Alternate KiCad Library +VQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), Alternate KiCad Library +VQFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), Alternate KiCad Library +VQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), Alternate KiCad Library +VQFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), Alternate KiCad Library +VQFN NoLead +0 +21 +17 +PCM_Package_DFN_QFN_AKL +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), Alternate KiCad Library +VQFN NoLead +0 +26 +17 +PCM_Package_DFN_QFN_AKL +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), Alternate KiCad Library +VQFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), Alternate KiCad Library +VQFN NoLead +0 +30 +21 +PCM_Package_DFN_QFN_AKL +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), Alternate KiCad Library +VQFN NoLead +0 +25 +21 +PCM_Package_DFN_QFN_AKL +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), Alternate KiCad Library +VQFN NoLead +0 +30 +21 +PCM_Package_DFN_QFN_AKL +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), Alternate KiCad Library +VQFN NoLead +0 +34 +25 +PCM_Package_DFN_QFN_AKL +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), Alternate KiCad Library +VQFN NoLead +0 +39 +25 +PCM_Package_DFN_QFN_AKL +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias2 +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), Alternate KiCad Library +VQFN NoLead +0 +38 +25 +PCM_Package_DFN_QFN_AKL +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), Alternate KiCad Library +VQFN NoLead +0 +33 +29 +PCM_Package_DFN_QFN_AKL +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), Alternate KiCad Library +VQFN NoLead +0 +43 +29 +PCM_Package_DFN_QFN_AKL +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias2 +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), Alternate KiCad Library +VQFN NoLead +0 +42 +29 +PCM_Package_DFN_QFN_AKL +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), Alternate KiCad Library +VQFN NoLead +0 +35 +29 +PCM_Package_DFN_QFN_AKL +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), Alternate KiCad Library +VQFN NoLead +0 +48 +29 +PCM_Package_DFN_QFN_AKL +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias2 +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), Alternate KiCad Library +VQFN NoLead +0 +44 +29 +PCM_Package_DFN_QFN_AKL +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), Alternate KiCad Library +VQFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), Alternate KiCad Library +VQFN NoLead +0 +47 +33 +PCM_Package_DFN_QFN_AKL +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias2 +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), Alternate KiCad Library +VQFN NoLead +0 +49 +33 +PCM_Package_DFN_QFN_AKL +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), Alternate KiCad Library +VQFN NoLead +0 +37 +33 +PCM_Package_DFN_QFN_AKL +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), Alternate KiCad Library +VQFN NoLead +0 +47 +33 +PCM_Package_DFN_QFN_AKL +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias2 +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), Alternate KiCad Library +VQFN NoLead +0 +61 +33 +PCM_Package_DFN_QFN_AKL +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), Alternate KiCad Library +VQFN NoLead +0 +53 +47 +PCM_Package_DFN_QFN_AKL +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), Alternate KiCad Library +VQFN NoLead +0 +66 +47 +PCM_Package_DFN_QFN_AKL +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias2 +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), Alternate KiCad Library +VQFN NoLead +0 +67 +47 +PCM_Package_DFN_QFN_AKL +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), Alternate KiCad Library +VQFN NoLead +0 +53 +49 +PCM_Package_DFN_QFN_AKL +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), Alternate KiCad Library +VQFN NoLead +0 +91 +49 +PCM_Package_DFN_QFN_AKL +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias2 +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), Alternate KiCad Library +VQFN NoLead +0 +114 +49 +PCM_Package_DFN_QFN_AKL +WDFN-8-1EP_2x2.2mm_P0.5mm_EP0.80x0.54 +https://www.onsemi.com/pub/Collateral/511BN.PDF, Alternate KiCad Library +WDFN-8 1EP 2.2X2.0 0.5P +0 +9 +9 +PCM_Package_DFN_QFN_AKL +WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), Alternate KiCad Library +WDFN NoLead +0 +13 +9 +PCM_Package_DFN_QFN_AKL +WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm_ThermalVias +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), Alternate KiCad Library +WDFN NoLead +0 +15 +9 +PCM_Package_DFN_QFN_AKL +WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm_ThermalVias2 +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), Alternate KiCad Library +WDFN NoLead +0 +18 +9 +PCM_Package_DFN_QFN_AKL +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), Alternate KiCad Library +WDFN NoLead +0 +17 +13 +PCM_Package_DFN_QFN_AKL +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm_ThermalVias +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), Alternate KiCad Library +WDFN NoLead +0 +24 +13 +PCM_Package_DFN_QFN_AKL +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm_ThermalVias2 +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), Alternate KiCad Library +WDFN NoLead +0 +25 +13 +PCM_Package_DIP_AKL +DIP-4-8_W7.62mm +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4-8_W7.62mm_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W7.62mm +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W7.62mm_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W7.62mm_SMDSocket_SmallPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W7.62mm_Socket +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W7.62mm_Socket_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W8.89mm_SMDSocket_LongPads +4-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W10.16mm +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +4 +4 +PCM_Package_DIP_AKL +DIP-4_W10.16mm_LongPads +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +4 +4 +PCM_Package_DIP_AKL +DIP-5-6_W7.62mm +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W7.62mm_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W7.62mm_SMDSocket_SmallPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W7.62mm_Socket +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W7.62mm_Socket_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W8.89mm_SMDSocket_LongPads +5-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W10.16mm +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +5 +5 +PCM_Package_DIP_AKL +DIP-5-6_W10.16mm_LongPads +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +5 +5 +PCM_Package_DIP_AKL +DIP-6_W7.62mm +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W7.62mm_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W7.62mm_SMDSocket_SmallPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W7.62mm_Socket +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W7.62mm_Socket_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W8.89mm_SMDSocket_LongPads +6-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W10.16mm +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +6 +6 +PCM_Package_DIP_AKL +DIP-6_W10.16mm_LongPads +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +6 +6 +PCM_Package_DIP_AKL +DIP-8-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8-16_W7.62mm_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8-N6_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 6 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +PCM_Package_DIP_AKL +DIP-8-N7_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 7 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +PCM_Package_DIP_AKL +DIP-8_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W7.62mm_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W7.62mm_SMDSocket_SmallPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W7.62mm_Socket +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W7.62mm_Socket_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W8.89mm_SMDSocket_LongPads +8-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W10.16mm +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +8 +8 +PCM_Package_DIP_AKL +DIP-8_W10.16mm_LongPads +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +8 +8 +PCM_Package_DIP_AKL +DIP-10_W7.62mm +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W7.62mm_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W7.62mm_SMDSocket_SmallPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W7.62mm_Socket +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W7.62mm_Socket_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W8.89mm_SMDSocket_LongPads +10-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W10.16mm +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +10 +10 +PCM_Package_DIP_AKL +DIP-10_W10.16mm_LongPads +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +10 +10 +PCM_Package_DIP_AKL +DIP-12_W7.62mm +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W7.62mm_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W7.62mm_SMDSocket_SmallPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W7.62mm_Socket +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W7.62mm_Socket_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W8.89mm_SMDSocket_LongPads +12-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W10.16mm +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +12 +12 +PCM_Package_DIP_AKL +DIP-12_W10.16mm_LongPads +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +12 +12 +PCM_Package_DIP_AKL +DIP-14_W7.62mm +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W7.62mm_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W7.62mm_SMDSocket_SmallPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W7.62mm_Socket +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W7.62mm_Socket_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W8.89mm_SMDSocket_LongPads +14-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W10.16mm +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +14 +14 +PCM_Package_DIP_AKL +DIP-14_W10.16mm_LongPads +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +14 +14 +PCM_Package_DIP_AKL +DIP-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W7.62mm_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W7.62mm_SMDSocket_SmallPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W8.89mm_SMDSocket_LongPads +16-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W10.16mm +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +16 +16 +PCM_Package_DIP_AKL +DIP-16_W10.16mm_LongPads +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +16 +16 +PCM_Package_DIP_AKL +DIP-18_W7.62mm +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +18 +18 +PCM_Package_DIP_AKL +DIP-18_W7.62mm_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +18 +18 +PCM_Package_DIP_AKL +DIP-18_W7.62mm_SMDSocket_SmallPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +18 +18 +PCM_Package_DIP_AKL +DIP-18_W7.62mm_Socket +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +18 +18 +PCM_Package_DIP_AKL +DIP-18_W7.62mm_Socket_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +18 +18 +PCM_Package_DIP_AKL +DIP-18_W8.89mm_SMDSocket_LongPads +18-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +18 +18 +PCM_Package_DIP_AKL +DIP-20_W7.62mm +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +20 +20 +PCM_Package_DIP_AKL +DIP-20_W7.62mm_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +20 +20 +PCM_Package_DIP_AKL +DIP-20_W7.62mm_SMDSocket_SmallPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +20 +20 +PCM_Package_DIP_AKL +DIP-20_W7.62mm_Socket +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +20 +20 +PCM_Package_DIP_AKL +DIP-20_W7.62mm_Socket_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +20 +20 +PCM_Package_DIP_AKL +DIP-20_W8.89mm_SMDSocket_LongPads +20-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +20 +20 +PCM_Package_DIP_AKL +DIP-22_W7.62mm +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W7.62mm_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W7.62mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W7.62mm_Socket +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W7.62mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W8.89mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W10.16mm +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W10.16mm_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W10.16mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W10.16mm_Socket +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W10.16mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-22_W11.43mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +22 +22 +PCM_Package_DIP_AKL +DIP-24_W7.62mm +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W7.62mm_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W7.62mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W7.62mm_Socket +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W7.62mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W8.89mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W10.16mm +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W10.16mm_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W10.16mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W10.16mm_Socket +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W10.16mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W11.43mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W15.24mm +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W15.24mm_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W15.24mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W15.24mm_Socket +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W15.24mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-24_W16.51mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +24 +24 +PCM_Package_DIP_AKL +DIP-28_W7.62mm +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W7.62mm_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W7.62mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W7.62mm_Socket +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W7.62mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W8.89mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W15.24mm +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W15.24mm_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W15.24mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W15.24mm_Socket +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W15.24mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-28_W16.51mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +28 +28 +PCM_Package_DIP_AKL +DIP-32_W7.62mm +32-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +32 +32 +PCM_Package_DIP_AKL +DIP-32_W15.24mm +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +32 +32 +PCM_Package_DIP_AKL +DIP-32_W15.24mm_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +32 +32 +PCM_Package_DIP_AKL +DIP-32_W15.24mm_SMDSocket_SmallPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +32 +32 +PCM_Package_DIP_AKL +DIP-32_W15.24mm_Socket +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +32 +32 +PCM_Package_DIP_AKL +DIP-32_W15.24mm_Socket_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +32 +32 +PCM_Package_DIP_AKL +DIP-32_W16.51mm_SMDSocket_LongPads +32-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +32 +32 +PCM_Package_DIP_AKL +DIP-40_W15.24mm +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W15.24mm_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W15.24mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W15.24mm_Socket +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W15.24mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W16.51mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W25.4mm +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W25.4mm_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W25.4mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W25.4mm_Socket +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W25.4mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-40_W26.67mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +40 +40 +PCM_Package_DIP_AKL +DIP-42_W15.24mm +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +42 +42 +PCM_Package_DIP_AKL +DIP-42_W15.24mm_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +42 +42 +PCM_Package_DIP_AKL +DIP-42_W15.24mm_SMDSocket_SmallPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +42 +42 +PCM_Package_DIP_AKL +DIP-42_W15.24mm_Socket +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +42 +42 +PCM_Package_DIP_AKL +DIP-42_W15.24mm_Socket_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +42 +42 +PCM_Package_DIP_AKL +DIP-42_W16.51mm_SMDSocket_LongPads +42-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +42 +42 +PCM_Package_DIP_AKL +DIP-48_W15.24mm +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +48 +48 +PCM_Package_DIP_AKL +DIP-48_W15.24mm_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +48 +48 +PCM_Package_DIP_AKL +DIP-48_W15.24mm_SMDSocket_SmallPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +48 +48 +PCM_Package_DIP_AKL +DIP-48_W15.24mm_Socket +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +48 +48 +PCM_Package_DIP_AKL +DIP-48_W15.24mm_Socket_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +48 +48 +PCM_Package_DIP_AKL +DIP-48_W16.51mm_SMDSocket_LongPads +48-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +48 +48 +PCM_Package_DIP_AKL +DIP-64_W15.24mm +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W15.24mm_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W15.24mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W15.24mm_Socket +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W15.24mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W16.51mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W22.86mm +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils) +THT DIP DIL PDIP 2.54mm 22.86mm 900mil +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W22.86mm_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W22.86mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil SMDSocket SmallPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W22.86mm_Socket +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W22.86mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W24.13mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 24.13 mm (950 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 24.13mm 950mil SMDSocket LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W25.4mm +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W25.4mm_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W25.4mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W25.4mm_Socket +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W25.4mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +64 +64 +PCM_Package_DIP_AKL +DIP-64_W26.67mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +64 +64 +PCM_Package_DIP_AKL +Fairchild_LSOP-8 +8-Lead, 300\" Wide, Surface Mount Package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) +LSOP 2.54mm 300mil +0 +8 +8 +PCM_Package_DIP_AKL +PowerIntegrations_PDIP-8B +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +PCM_Package_DIP_AKL +PowerIntegrations_PDIP-8C +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +PCM_Package_DIP_AKL +PowerIntegrations_SDIP-10C +PowerIntegrations variant of 10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/tophx_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +9 +9 +PCM_Package_DIP_AKL +PowerIntegrations_SMD-8 +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +PCM_Package_DIP_AKL +PowerIntegrations_SMD-8B +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +PCM_Package_DIP_AKL +PowerIntegrations_SMD-8C +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +PCM_Package_DIP_AKL +PowerIntegrations_eDIP-12B +Power Integrations eDIP-12B, see https://www.power.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +11 +11 +PCM_Package_DIP_AKL +SMDIP-4-8_W9.53mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +4 +4 +PCM_Package_DIP_AKL +SMDIP-4_W7.62mm +4-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +4 +4 +PCM_Package_DIP_AKL +SMDIP-4_W9.53mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +4 +4 +PCM_Package_DIP_AKL +SMDIP-4_W9.53mm_Clearance8mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +4 +4 +PCM_Package_DIP_AKL +SMDIP-4_W11.48mm +4-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +4 +4 +PCM_Package_DIP_AKL +SMDIP-5-6_W9.53mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +5 +5 +PCM_Package_DIP_AKL +SMDIP-6_W7.62mm +6-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +6 +6 +PCM_Package_DIP_AKL +SMDIP-6_W9.53mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +6 +6 +PCM_Package_DIP_AKL +SMDIP-6_W9.53mm_Clearance8mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +6 +6 +PCM_Package_DIP_AKL +SMDIP-6_W11.48mm +6-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +6 +6 +PCM_Package_DIP_AKL +SMDIP-8_W7.62mm +8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +PCM_Package_DIP_AKL +SMDIP-8_W9.53mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +8 +8 +PCM_Package_DIP_AKL +SMDIP-8_W9.53mm_Clearance8mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +8 +8 +PCM_Package_DIP_AKL +SMDIP-8_W11.48mm +8-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +8 +8 +PCM_Package_DIP_AKL +SMDIP-10_W7.62mm +10-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +10 +10 +PCM_Package_DIP_AKL +SMDIP-10_W9.53mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +10 +10 +PCM_Package_DIP_AKL +SMDIP-10_W9.53mm_Clearance8mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +10 +10 +PCM_Package_DIP_AKL +SMDIP-10_W11.48mm +10-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +10 +10 +PCM_Package_DIP_AKL +SMDIP-12_W7.62mm +12-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +12 +12 +PCM_Package_DIP_AKL +SMDIP-12_W9.53mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +12 +12 +PCM_Package_DIP_AKL +SMDIP-12_W9.53mm_Clearance8mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +12 +12 +PCM_Package_DIP_AKL +SMDIP-12_W11.48mm +12-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +12 +12 +PCM_Package_DIP_AKL +SMDIP-14_W7.62mm +14-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +14 +14 +PCM_Package_DIP_AKL +SMDIP-14_W9.53mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +14 +14 +PCM_Package_DIP_AKL +SMDIP-14_W9.53mm_Clearance8mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +14 +14 +PCM_Package_DIP_AKL +SMDIP-14_W11.48mm +14-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +14 +14 +PCM_Package_DIP_AKL +SMDIP-16_W7.62mm +16-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +16 +16 +PCM_Package_DIP_AKL +SMDIP-16_W9.53mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +16 +16 +PCM_Package_DIP_AKL +SMDIP-16_W9.53mm_Clearance8mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +16 +16 +PCM_Package_DIP_AKL +SMDIP-16_W11.48mm +16-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +16 +16 +PCM_Package_DIP_AKL +SMDIP-18_W7.62mm +18-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +18 +18 +PCM_Package_DIP_AKL +SMDIP-18_W9.53mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +18 +18 +PCM_Package_DIP_AKL +SMDIP-18_W9.53mm_Clearance8mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +18 +18 +PCM_Package_DIP_AKL +SMDIP-18_W11.48mm +18-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +18 +18 +PCM_Package_DIP_AKL +SMDIP-20_W7.62mm +20-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +20 +20 +PCM_Package_DIP_AKL +SMDIP-20_W9.53mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +20 +20 +PCM_Package_DIP_AKL +SMDIP-20_W9.53mm_Clearance8mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +20 +20 +PCM_Package_DIP_AKL +SMDIP-20_W11.48mm +20-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +20 +20 +PCM_Package_DIP_AKL +SMDIP-22_W7.62mm +22-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +22 +22 +PCM_Package_DIP_AKL +SMDIP-22_W9.53mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +22 +22 +PCM_Package_DIP_AKL +SMDIP-22_W9.53mm_Clearance8mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +22 +22 +PCM_Package_DIP_AKL +SMDIP-22_W11.48mm +22-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +22 +22 +PCM_Package_DIP_AKL +SMDIP-24_W7.62mm +24-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +24 +24 +PCM_Package_DIP_AKL +SMDIP-24_W9.53mm +24-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +24 +24 +PCM_Package_DIP_AKL +SMDIP-24_W11.48mm +24-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +24 +24 +PCM_Package_DIP_AKL +SMDIP-24_W15.24mm +24-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +24 +24 +PCM_Package_DIP_AKL +SMDIP-28_W15.24mm +28-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +28 +28 +PCM_Package_DIP_AKL +SMDIP-32_W7.62mm +32-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +32 +32 +PCM_Package_DIP_AKL +SMDIP-32_W9.53mm +32-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +32 +32 +PCM_Package_DIP_AKL +SMDIP-32_W11.48mm +32-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +32 +32 +PCM_Package_DIP_AKL +SMDIP-32_W15.24mm +32-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +32 +32 +PCM_Package_DIP_AKL +SMDIP-40_W15.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +40 +40 +PCM_Package_DIP_AKL +SMDIP-40_W25.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 25.24 mm (993 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 25.24mm 993mil +0 +40 +40 +PCM_Package_DIP_AKL +SMDIP-42_W15.24mm +42-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +42 +42 +PCM_Package_DIP_AKL +SMDIP-48_W15.24mm +48-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +48 +48 +PCM_Package_DIP_AKL +SMDIP-64_W15.24mm +64-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +64 +64 +PCM_Package_DIP_AKL +Toshiba_11-7A9 +Toshiba 11-7A9 package, like 6-lead dip package with missing pin 5, row spacing 7.62 mm (300 mils), https://toshiba.semicon-storage.com/info/docget.jsp?did=1421&prodName=TLP3021(S) +Toshiba 11-7A9 DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +PCM_Package_DIP_AKL +Vishay_HVM-DIP-3_W7.62mm +3-lead though-hole mounted high-volatge DIP package (based on standard DIP-4), row spacing 7.62 mm (300 mils), see https://www.vishay.com/docs/91361/hexdip.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Vishay HVMDIP HEXDIP +0 +4 +3 +PCM_Package_LCC_AKL +PLCC-20 +PLCC, 20 pins, surface mount, Alternate KiCad Library +plcc smt +0 +20 +20 +PCM_Package_LCC_AKL +PLCC-20_SMD-Socket +PLCC, 20 pins, surface mount, Alternate KiCad Library +plcc smt +0 +20 +20 +PCM_Package_LCC_AKL +PLCC-20_THT-Socket +PLCC, 20 pins, through hole, Alternate KiCad Library +plcc leaded +0 +20 +20 +PCM_Package_LCC_AKL +PLCC-28 +PLCC, 28 pins, surface mount, Alternate KiCad Library +plcc smt +0 +28 +28 +PCM_Package_LCC_AKL +PLCC-28_SMD-Socket +PLCC, 28 pins, surface mount, Alternate KiCad Library +plcc smt +0 +28 +28 +PCM_Package_LCC_AKL +PLCC-28_THT-Socket +PLCC, 28 pins, through hole, Alternate KiCad Library +plcc leaded +0 +28 +28 +PCM_Package_LCC_AKL +PLCC-32 +PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), Alternate KiCad Library +PLCC LCC +0 +32 +32 +PCM_Package_LCC_AKL +PLCC-32_SMD-Socket +PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), Alternate KiCad Library +PLCC LCC +0 +32 +32 +PCM_Package_LCC_AKL +PLCC-32_THT-Socket +PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf, Alternate KiCad Library +plcc leaded +0 +32 +32 +PCM_Package_LCC_AKL +PLCC-44 +PLCC, 44 pins, surface mount, Alternate KiCad Library +plcc smt +0 +44 +44 +PCM_Package_LCC_AKL +PLCC-44_SMD-Socket +PLCC, 44 pins, surface mount, Alternate KiCad Library +plcc smt +0 +44 +44 +PCM_Package_LCC_AKL +PLCC-44_THT-Socket +PLCC, 44 pins, through hole, Alternate KiCad Library +plcc leaded +0 +44 +44 +PCM_Package_LCC_AKL +PLCC-52 +PLCC, 52 pins, surface mount, Alternate KiCad Library +plcc smt +0 +52 +52 +PCM_Package_LCC_AKL +PLCC-52_SMD-Socket +PLCC, 52 pins, surface mount, Alternate KiCad Library +plcc smt +0 +52 +52 +PCM_Package_LCC_AKL +PLCC-52_THT-Socket +PLCC, 52 pins, through hole, Alternate KiCad Library +plcc leaded +0 +52 +52 +PCM_Package_LCC_AKL +PLCC-68 +PLCC, 68 pins, surface mount, Alternate KiCad Library +plcc smt +0 +68 +68 +PCM_Package_LCC_AKL +PLCC-68_SMD-Socket +PLCC, 68 pins, surface mount, Alternate KiCad Library +plcc smt +0 +68 +68 +PCM_Package_LCC_AKL +PLCC-68_THT-Socket +PLCC, 68 pins, through hole, Alternate KiCad Library +plcc leaded +0 +68 +68 +PCM_Package_LCC_AKL +PLCC-84 +PLCC, 84 pins, surface mount, Alternate KiCad Library +plcc smt +0 +84 +84 +PCM_Package_LCC_AKL +PLCC-84_SMD-Socket +PLCC, 84 pins, surface mount, Alternate KiCad Library +plcc smt +0 +84 +84 +PCM_Package_LCC_AKL +PLCC-84_THT-Socket +PLCC, 84 pins, through hole, Alternate KiCad Library +plcc leaded +0 +84 +84 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), Alternate KiCad Library +EQFP QFP +0 +154 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), Alternate KiCad Library +EQFP QFP +0 +171 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias2 +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), Alternate KiCad Library +EQFP QFP +0 +198 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), Alternate KiCad Library +EQFP QFP +0 +161 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), Alternate KiCad Library +EQFP QFP +0 +187 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias2 +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), Alternate KiCad Library +EQFP QFP +0 +198 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), Alternate KiCad Library +EQFP QFP +0 +165 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), Alternate KiCad Library +EQFP QFP +0 +196 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias2 +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), Alternate KiCad Library +EQFP QFP +0 +241 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), Alternate KiCad Library +EQFP QFP +0 +175 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), Alternate KiCad Library +EQFP QFP +0 +218 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias2 +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), Alternate KiCad Library +EQFP QFP +0 +250 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), Alternate KiCad Library +EQFP QFP +0 +194 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), Alternate KiCad Library +EQFP QFP +0 +259 +145 +PCM_Package_QFP_AKL +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias2 +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), Alternate KiCad Library +EQFP QFP +0 +323 +145 +PCM_Package_QFP_AKL +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad, Alternate KiCad Library +HTQFP-64 Pitch 0.5 +0 +90 +65 +PCM_Package_QFP_AKL +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.4x4.4mm_ThermalVias +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad, Alternate KiCad Library +HTQFP-64 Pitch 0.5 +0 +112 +65 +PCM_Package_QFP_AKL +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_ThermalVias +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad, Alternate KiCad Library +HTQFP-64 Pitch 0.5 +0 +107 +65 +PCM_Package_QFP_AKL +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_ThermalVias2 +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad, Alternate KiCad Library +HTQFP-64 Pitch 0.5 +0 +218 +65 +PCM_Package_QFP_AKL +LQFP-32_5x5mm_P0.5mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), Alternate KiCad Library +LQFP QFP +0 +32 +32 +PCM_Package_QFP_AKL +LQFP-32_7x7mm_P0.8mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), Alternate KiCad Library +LQFP QFP +0 +32 +32 +PCM_Package_QFP_AKL +LQFP-36_7x7mm_P0.65mm +LQFP, 36 Pin (https://www.onsemi.com/pub/Collateral/561AV.PDF), Alternate KiCad Library +LQFP QFP +0 +36 +36 +PCM_Package_QFP_AKL +LQFP-44_10x10mm_P0.8mm +LQFP, 44 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ASS23225W.pdf?&fsrch=1), Alternate KiCad Library +LQFP QFP +0 +44 +44 +PCM_Package_QFP_AKL +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library +LQFP QFP +0 +58 +49 +PCM_Package_QFP_AKL +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library +LQFP QFP +0 +75 +49 +PCM_Package_QFP_AKL +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias2 +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library +LQFP QFP +0 +94 +49 +PCM_Package_QFP_AKL +LQFP-48_7x7mm_P0.5mm +LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), Alternate KiCad Library +LQFP QFP +0 +48 +48 +PCM_Package_QFP_AKL +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), Alternate KiCad Library +LQFP QFP +0 +62 +53 +PCM_Package_QFP_AKL +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), Alternate KiCad Library +LQFP QFP +0 +95 +53 +PCM_Package_QFP_AKL +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias2 +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), Alternate KiCad Library +LQFP QFP +0 +126 +53 +PCM_Package_QFP_AKL +LQFP-52_10x10mm_P0.65mm +LQFP, 52 Pin (https://www.nxp.com/docs/en/package-information/98ARL10526D.pdf), Alternate KiCad Library +LQFP QFP +0 +52 +52 +PCM_Package_QFP_AKL +LQFP-52_14x14mm_P1mm +LQFP, 52 Pin (http://www.holtek.com/documents/10179/116711/HT1632Cv170.pdf), Alternate KiCad Library +LQFP QFP +0 +52 +52 +PCM_Package_QFP_AKL +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), Alternate KiCad Library +LQFP QFP +0 +90 +65 +PCM_Package_QFP_AKL +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), Alternate KiCad Library +LQFP QFP +0 +107 +65 +PCM_Package_QFP_AKL +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias2 +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), Alternate KiCad Library +LQFP QFP +0 +118 +65 +PCM_Package_QFP_AKL +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), Alternate KiCad Library +LQFP QFP +0 +90 +65 +PCM_Package_QFP_AKL +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), Alternate KiCad Library +LQFP QFP +0 +127 +65 +PCM_Package_QFP_AKL +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias2 +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), Alternate KiCad Library +LQFP QFP +0 +155 +65 +PCM_Package_QFP_AKL +LQFP-64_7x7mm_P0.4mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT414-1.pdf), Alternate KiCad Library +LQFP QFP +0 +64 +64 +PCM_Package_QFP_AKL +LQFP-64_10x10mm_P0.5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), Alternate KiCad Library +LQFP QFP +0 +64 +64 +PCM_Package_QFP_AKL +LQFP-64_14x14mm_P0.8mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT791-1.pdf), Alternate KiCad Library +LQFP QFP +0 +64 +64 +PCM_Package_QFP_AKL +LQFP-80_10x10mm_P0.4mm +LQFP, 80 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q80.10x10.pdf), Alternate KiCad Library +LQFP QFP +0 +80 +80 +PCM_Package_QFP_AKL +LQFP-80_12x12mm_P0.5mm +LQFP, 80 Pin (https://www.nxp.com/docs/en/package-information/SOT315-1.pdf), Alternate KiCad Library +LQFP QFP +0 +80 +80 +PCM_Package_QFP_AKL +LQFP-80_14x14mm_P0.65mm +LQFP, 80 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), Alternate KiCad Library +LQFP QFP +0 +80 +80 +PCM_Package_QFP_AKL +LQFP-100_14x14mm_P0.5mm +LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), Alternate KiCad Library +LQFP QFP +0 +100 +100 +PCM_Package_QFP_AKL +LQFP-128_14x14mm_P0.4mm +LQFP, 128 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q128.14x14.pdf), Alternate KiCad Library +LQFP QFP +0 +128 +128 +PCM_Package_QFP_AKL +LQFP-128_14x20mm_P0.5mm +LQFP, 128 Pin (https://www.nxp.com/docs/en/package-information/SOT425-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +PCM_Package_QFP_AKL +LQFP-144_20x20mm_P0.5mm +LQFP, 144 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=425), Alternate KiCad Library +LQFP QFP +0 +144 +144 +PCM_Package_QFP_AKL +LQFP-160_24x24mm_P0.5mm +LQFP, 160 Pin (https://www.nxp.com/docs/en/package-information/SOT435-1.pdf), Alternate KiCad Library +LQFP QFP +0 +160 +160 +PCM_Package_QFP_AKL +LQFP-176_20x20mm_P0.4mm +LQFP, 176 Pin (https://www.onsemi.com/pub/Collateral/566DB.PDF), Alternate KiCad Library +LQFP QFP +0 +176 +176 +PCM_Package_QFP_AKL +LQFP-176_24x24mm_P0.5mm +LQFP, 176 Pin (https://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=163), Alternate KiCad Library +LQFP QFP +0 +176 +176 +PCM_Package_QFP_AKL +LQFP-208_28x28mm_P0.5mm +LQFP, 208 Pin (https://www.nxp.com/docs/en/package-information/SOT459-1.pdf), Alternate KiCad Library +LQFP QFP +0 +208 +208 +PCM_Package_QFP_AKL +LQFP-216_24x24mm_P0.4mm +LQFP, 216 Pin (https://www.onsemi.com/pub/Collateral/561BE.PDF), Alternate KiCad Library +LQFP QFP +0 +216 +216 +PCM_Package_QFP_AKL +MQFP-44_10x10mm_P0.8mm +MQFP, 44 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf), Alternate KiCad Library +MQFP QFP +0 +44 +44 +PCM_Package_QFP_AKL +PQFP-44_10x10mm_P0.8mm +44-Lead Plastic Quad Flatpack - 10x10x2.5mm Body (http://www.onsemi.com/pub/Collateral/122BK.PDF), Alternate KiCad Library +PQFP 0.8 +0 +44 +44 +PCM_Package_QFP_AKL +PQFP-80_14x20mm_P0.8mm +PQFP80 14x20 / QIP80E CASE 122BS (see ON Semiconductor 122BS.PDF), Alternate KiCad Library +QFP 0.8 +0 +80 +80 +PCM_Package_QFP_AKL +PQFP-100_14x20mm_P0.65mm +PQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +PQFP QFP +0 +100 +100 +PCM_Package_QFP_AKL +PQFP-112_20x20mm_P0.65mm +PQFP, 112 pins, 20mm sq body, 0.65mm pitch (http://cache.freescale.com/files/shared/doc/package_info/98ASS23330W.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf), Alternate KiCad Library +PQFP 112 +0 +112 +112 +PCM_Package_QFP_AKL +PQFP-132_24x24mm_P0.635mm +PQFP, 132 pins, 24mm sq body, 0.635mm pitch (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf), Alternate KiCad Library +PQFP 132 +0 +132 +132 +PCM_Package_QFP_AKL +PQFP-132_24x24mm_P0.635mm_i386 +PQFP, 132 pins, 24mm sq body, 0.635mm pitch, Intel 386EX (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf), Alternate KiCad Library +PQFP 132 Intel 386EX +0 +132 +132 +PCM_Package_QFP_AKL +PQFP-144_28x28mm_P0.65mm +PQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +PQFP QFP +0 +144 +144 +PCM_Package_QFP_AKL +PQFP-160_28x28mm_P0.65mm +PQFP, 160 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +PQFP QFP +0 +160 +160 +PCM_Package_QFP_AKL +PQFP-208_28x28mm_P0.5mm +PQFP, 208 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +PQFP QFP +0 +208 +208 +PCM_Package_QFP_AKL +PQFP-240_32.1x32.1mm_P0.5mm +PQFP, 240 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +PQFP QFP +0 +240 +240 +PCM_Package_QFP_AKL +PQFP-256_28x28mm_P0.4mm +PQFP256 28x28 / QFP256J CASE 122BX (see ON Semiconductor 122BX.PDF), Alternate KiCad Library +QFP 0.4 +0 +256 +256 +PCM_Package_QFP_AKL +TQFP-32_7x7mm_P0.8mm +32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.8 +0 +32 +32 +PCM_Package_QFP_AKL +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm +44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.8 +0 +54 +45 +PCM_Package_QFP_AKL +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm_ThermalVias +44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.8 +0 +87 +45 +PCM_Package_QFP_AKL +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm_ThermalVias2 +44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.8 +0 +98 +45 +PCM_Package_QFP_AKL +TQFP-44_10x10mm_P0.8mm +44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.8 +0 +44 +44 +PCM_Package_QFP_AKL +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.5 +0 +53 +49 +PCM_Package_QFP_AKL +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_ThermalVias +48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.5 +0 +63 +49 +PCM_Package_QFP_AKL +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_ThermalVias2 +48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.5 +0 +94 +49 +PCM_Package_QFP_AKL +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), Alternate KiCad Library +TQFP QFP +0 +65 +49 +PCM_Package_QFP_AKL +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), Alternate KiCad Library +TQFP QFP +0 +91 +49 +PCM_Package_QFP_AKL +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias2 +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), Alternate KiCad Library +TQFP QFP +0 +122 +49 +PCM_Package_QFP_AKL +TQFP-48_7x7mm_P0.5mm +48 LEAD TQFP 7x7mm (see MICREL TQFP7x7-48LD-PL-1.pdf), Alternate KiCad Library +QFP 0.5 +0 +48 +48 +PCM_Package_QFP_AKL +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), Alternate KiCad Library +TQFP QFP +0 +78 +53 +PCM_Package_QFP_AKL +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), Alternate KiCad Library +TQFP QFP +0 +79 +53 +PCM_Package_QFP_AKL +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias2 +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), Alternate KiCad Library +TQFP QFP +0 +162 +53 +PCM_Package_QFP_AKL +TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad, Alternate KiCad Library +QFP 0.5 +0 +90 +65 +PCM_Package_QFP_AKL +TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_ThermalVias +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad, Alternate KiCad Library +QFP 0.5 +0 +151 +65 +PCM_Package_QFP_AKL +TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_ThermalVias2 +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad, Alternate KiCad Library +QFP 0.5 +0 +218 +65 +PCM_Package_QFP_AKL +TQFP-64_7x7mm_P0.4mm +TQFP64 7x7, 0.4P CASE 932BH (see ON Semiconductor 932BH.PDF), Alternate KiCad Library +QFP 0.4 +0 +64 +64 +PCM_Package_QFP_AKL +TQFP-64_10x10mm_P0.5mm +TQFP, 64 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +TQFP QFP +0 +64 +64 +PCM_Package_QFP_AKL +TQFP-64_14x14mm_P0.8mm +64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.8 +0 +64 +64 +PCM_Package_QFP_AKL +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), Alternate KiCad Library +QFP 0.65 +0 +106 +81 +PCM_Package_QFP_AKL +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm_ThermalVias +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), Alternate KiCad Library +QFP 0.65 +0 +195 +81 +PCM_Package_QFP_AKL +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm_ThermalVias2 +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), Alternate KiCad Library +QFP 0.65 +0 +211 +81 +PCM_Package_QFP_AKL +TQFP-80_12x12mm_P0.5mm +80-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.5 +0 +80 +80 +PCM_Package_QFP_AKL +TQFP-80_14x14mm_P0.65mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.65 +0 +80 +80 +PCM_Package_QFP_AKL +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), Alternate KiCad Library +TQFP QFP +0 +117 +101 +PCM_Package_QFP_AKL +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), Alternate KiCad Library +TQFP QFP +0 +143 +101 +PCM_Package_QFP_AKL +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias2 +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), Alternate KiCad Library +TQFP QFP +0 +154 +101 +PCM_Package_QFP_AKL +TQFP-100_12x12mm_P0.4mm +100-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.4 +0 +100 +100 +PCM_Package_QFP_AKL +TQFP-100_14x14mm_P0.5mm +TQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +TQFP QFP +0 +100 +100 +PCM_Package_QFP_AKL +TQFP-120_14x14mm_P0.4mm +TQFP120 14x14 / TQFP120 CASE 932AZ (see ON Semiconductor 932AZ.PDF), Alternate KiCad Library +QFP 0.4 +0 +120 +120 +PCM_Package_QFP_AKL +TQFP-128_14x14mm_P0.4mm +TQFP128 14x14 / TQFP128 CASE 932BB (see ON Semiconductor 932BB.PDF), Alternate KiCad Library +QFP 0.4 +0 +128 +128 +PCM_Package_QFP_AKL +TQFP-144_16x16mm_P0.4mm +144-Lead Plastic Thin Quad Flatpack (PH) - 16x16x1 mm Body, 2.00 mm Footprint [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +QFP 0.4 +0 +144 +144 +PCM_Package_QFP_AKL +TQFP-144_20x20mm_P0.5mm +TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +TQFP QFP +0 +144 +144 +PCM_Package_QFP_AKL +TQFP-176_24x24mm_P0.5mm +TQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +TQFP QFP +0 +176 +176 +PCM_Package_QFP_AKL +VQFP-80_14x14mm_P0.65mm +VQFP, 80 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +VQFP QFP +0 +80 +80 +PCM_Package_QFP_AKL +VQFP-100_14x14mm_P0.5mm +VQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +VQFP QFP +0 +100 +100 +PCM_Package_QFP_AKL +VQFP-128_14x14mm_P0.4mm +VQFP, 128 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +VQFP QFP +0 +128 +128 +PCM_Package_QFP_AKL +VQFP-176_20x20mm_P0.4mm +VQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library +VQFP QFP +0 +176 +176 +PCM_Package_SIP_AKL +PowerIntegrations_eSIP-7C +eSIP-7C Vertical Flat Package with Heatsink Tab, https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations E Package +0 +6 +6 +PCM_Package_SIP_AKL +PowerIntegrations_eSIP-7F +eSIP-7F Flat Package with Heatsink Tab https://ac-dc.power.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +Power Integrations L Package +0 +6 +6 +PCM_Package_SIP_AKL +SIP-8 +SIP-8 19.4x3mm 2.54mm Pin Pitch +SIP8 SIP +0 +8 +8 +PCM_Package_SIP_AKL +SIP-8_BigPads +SIP-8 19.4x3mm 2.54mm Pin Pitch +SIP8 SIP +0 +8 +8 +PCM_Package_SIP_AKL +SIP-9 +SIP-9 22x3mm 2.54mm Pin Pitch +SIP9 SIP +0 +9 +9 +PCM_Package_SIP_AKL +SIP-9_BigPads +SIP-9 22x3mm 2.54mm Pin Pitch +SIP9 SIP +0 +9 +9 +PCM_Package_SIP_AKL +SIP-10 +SIP-9 24.4x3mm 2.54mm Pin Pitch +SIP9 SIP +0 +10 +10 +PCM_Package_SIP_AKL +SIP-10_BigPads +SIP-9 24.4x3mm 2.54mm Pin Pitch +SIP9 SIP +0 +10 +10 +PCM_Package_SIP_AKL +SIP3_11.6x8.5mm +RECOM,R78EXX,https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +SIP3 Regulator Module +0 +3 +3 +PCM_Package_SIP_AKL +SIP4_Sharp-SSR_P7.62mm_Angled +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +PCM_Package_SIP_AKL +SIP4_Sharp-SSR_P7.62mm_Angled_NoHole +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +PCM_Package_SIP_AKL +SIP4_Sharp-SSR_P7.62mm_Straight +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +PCM_Package_SIP_AKL +SLA704XM +SIP SLA704XM (http://www.sumzi.com/upload/files/2007/07/2007073114282034189.PDF) +SIP +0 +18 +18 +PCM_Package_SIP_AKL +STK672-040-E +SIP-22 (http://www.onsemi.com/pub_link/Collateral/EN5227-D.PDF) +SIP-22 +0 +22 +22 +PCM_Package_SIP_AKL +STK672-080-E +SIP-15 (http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF) +SIP-15 +0 +15 +15 +PCM_Package_SIP_AKL +Sanyo_STK4xx-15_59.2x8.0mm_P2.54mm +Sanyo SIP-15, 59.2mm x 8.0mm bosy size, STK-433E STK-435E STK-436E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +PCM_Package_SIP_AKL +Sanyo_STK4xx-15_78.0x8.0mm_P2.54mm +Sanyo SIP-15, 78.0mm x 8.0mm bosy size, STK-437E STK-439E STK-441E STK-443E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +PCM_Package_SON_AKL +Diodes_PowerDI3333-8 +Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf, Alternate KiCad Library +PowerDI 0.65 +0 +17 +5 +PCM_Package_SON_AKL +Diodes_PowerDI3333-8_ThermalVias +Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf, Alternate KiCad Library +PowerDI 0.65 +0 +24 +5 +PCM_Package_SON_AKL +Fairchild_DualPower33-6_3x3mm +Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf), Alternate KiCad Library +mosfet +0 +18 +6 +PCM_Package_SON_AKL +Fairchild_DualPower33-6_3x3mm_ThermalVias +Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf), Alternate KiCad Library +mosfet +0 +26 +6 +PCM_Package_SON_AKL +Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm https://www.nxp.com/docs/en/application-note/AN10343.pdff, Alternate KiCad Library +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm +0 +6 +6 +PCM_Package_SON_AKL +Fairchild_MicroPak2-6_1.0x1.0mm_P0.35mm +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm https://www.nxp.com/docs/en/application-note/AN10343.pdff, Alternate KiCad Library +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm +0 +6 +6 +PCM_Package_SON_AKL +HUSON-3-1EP_2x2mm_P1.3mm_EP1.1x1.6mm +HUSON, 3 Pin, SOT1061 (Ref: https://assets.nexperia.com/documents/data-sheet/PMEG2020CPA.pdf), Alternate KiCad Library +huson nolead SOT1061 +0 +7 +3 +PCM_Package_SON_AKL +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), Alternate KiCad Library +HVSON NoLead +0 +13 +9 +PCM_Package_SON_AKL +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm_ThermalVias +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), Alternate KiCad Library +HVSON NoLead +0 +23 +9 +PCM_Package_SON_AKL +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm_ThermalVias2 +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), Alternate KiCad Library +HVSON NoLead +0 +24 +9 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8 +5x6mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/, Alternate KiCAD Library +TDSON-8 5x6mm infineon +0 +17 +5 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_Dual +5x6mm SMD dual power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-10/, Alternate KiCAD Library +TDSON-8 dual 5x6mm infineon +0 +18 +6 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_Dual_ThermalVias +5x6mm SMD dual power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-10/, Alternate KiCAD Library +TDSON-8 dual 5x6mm infineon +0 +32 +6 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_Dual_ThermalVias2 +5x6mm SMD dual power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-10/, Alternate KiCAD Library +TDSON-8 dual 5x6mm infineon +0 +40 +6 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_FL +5x6mm SMD power transistor package, https://www.tme.eu/Document/028a6fc70d61beeb6da410f8ad1fc3a4/BSC010N04LS6ATMA1.pdf, Alternate KiCAD Library +TDSON-8 5x6mm infineon +0 +24 +3 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_FL_ThermalVias +5x6mm SMD power transistor package, https://www.tme.eu/Document/028a6fc70d61beeb6da410f8ad1fc3a4/BSC010N04LS6ATMA1.pdf, Alternate KiCAD Library +TDSON-8 5x6mm infineon +0 +53 +3 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_FL_ThermalVias2 +5x6mm SMD power transistor package, https://www.tme.eu/Document/028a6fc70d61beeb6da410f8ad1fc3a4/BSC010N04LS6ATMA1.pdf, Alternate KiCAD Library +TDSON-8 5x6mm infineon +0 +45 +4 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_ThermalVias +5x6mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/, Alternate KiCAD Library +TDSON-8 5x6mm infineon +0 +46 +5 +PCM_Package_SON_AKL +Infineon_PG-TDSON-8_ThermalVias2 +5x6mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/, Alternate KiCAD Library +TDSON-8 5x6mm infineon +0 +38 +5 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library +tison +0 +25 +7 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-2_ThermalVias +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library +tison +0 +42 +7 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-2_ThermalVias2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library +tison +0 +50 +7 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-3 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library +tison +0 +25 +7 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-3_ThermalVias +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-3/, Alternate KiCad Library +tison +0 +42 +7 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-3_ThermalVias2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library +tison +0 +50 +7 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-4 +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/, Alternate KiCad Library +tison +0 +25 +8 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-4_ThermalVias +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/, Alternate KiCad Library +tison +0 +46 +8 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-4_ThermalVias2 +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/, Alternate KiCad Library +tison +0 +41 +8 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-5 +Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/, Alternate KiCad Library +tison +0 +31 +8 +PCM_Package_SON_AKL +Infineon_PG-TISON-8-5_ThermalVias +Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/, Alternate KiCad Library +tison +0 +57 +8 +PCM_Package_SON_AKL +Infineon_PG-VDSON-4_ThinPAK_8x8 +8x8mm Power transistor package, https://www.infineon.com/dgdl/Infineon-ApplicationNote_Recommendations_for_Assembly_VDSON_Packages-AN-v01_00-EN.pdf?fileId=db3a304342c787030142e6cd89812185, Alternate KiCAD Library +infineon ThinPAK 8x8 VDSON-4 +0 +17 +5 +PCM_Package_SON_AKL +Infineon_PG-VDSON-4_ThinPAK_8x8_ThermalVias +8x8mm Power transistor package, https://www.infineon.com/dgdl/Infineon-ApplicationNote_Recommendations_for_Assembly_VDSON_Packages-AN-v01_00-EN.pdf?fileId=db3a304342c787030142e6cd89812185, Alternate KiCAD Library +infineon ThinPAK 8x8 VDSON-4 +0 +38 +5 +PCM_Package_SON_AKL +Infineon_PG-VDSON-4_ThinPAK_8x8_ThermalVias2 +8x8mm Power transistor package, https://www.infineon.com/dgdl/Infineon-ApplicationNote_Recommendations_for_Assembly_VDSON_Packages-AN-v01_00-EN.pdf?fileId=db3a304342c787030142e6cd89812185, Alternate KiCAD Library +infineon ThinPAK 8x8 VDSON-4 +0 +65 +5 +PCM_Package_SON_AKL +Infineon_PG_TSDSON-8 +3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-31/, Alternate KiCAD Library +3.3x3.3mm TSDSON infineon +0 +17 +5 +PCM_Package_SON_AKL +Infineon_PG_TSDSON-8_FL +3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-32/, Alternate KiCAD Library +3.3x3.3mm TSDSON infineon +0 +21 +3 +PCM_Package_SON_AKL +Infineon_PG_TSDSON-8_FL_ThermalVias +3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-32/, Alternate KiCAD Library +3.3x3.3mm TSDSON infineon +0 +28 +3 +PCM_Package_SON_AKL +Infineon_PG_TSDSON-8_FL_ThermalVias2 +3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-32/, Alternate KiCAD Library +3.3x3.3mm TSDSON infineon +0 +29 +4 +PCM_Package_SON_AKL +Infineon_PG_TSDSON-8_ThermalVias +3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-31/, Alternate KiCAD Library +3.3x3.3mm TSDSON infineon +0 +24 +5 +PCM_Package_SON_AKL +Infineon_PG_TSDSON-8_ThermalVias2 +3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-31/, Alternate KiCAD Library +3.3x3.3mm TSDSON infineon +0 +25 +5 +PCM_Package_SON_AKL +NXP_XSON-16 +http://www.nxp.com/documents/outline_drawing/SOT1341-1.pdf, Alternate KiCad Library +NXP XSON SOT-1341 +0 +16 +16 +PCM_Package_SON_AKL +ROHM_VML0806 +VML0806, Rohm (http://rohmfs.rohm.com/en/techdata_basic/transistor/soldering_condition/VML0806_Soldering_Condition.pdf, http://rohmfs.rohm.com/en/products/databook/package/spec/discrete/vml0806_tr-e.pdf), Alternate KiCad Library +ROHM VML0806 +0 +3 +3 +PCM_Package_SON_AKL +RTC_SMD_MicroCrystal_C3_2.5x3.7mm +MicroCrystal C3 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf, Alternate KiCad Library +RTC C3 +0 +10 +10 +PCM_Package_SON_AKL +SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm +SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), Alternate KiCad Library +SON NoLead +0 +13 +9 +PCM_Package_SON_AKL +SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm_ThermalVias +SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), Alternate KiCad Library +SON NoLead +0 +18 +9 +PCM_Package_SON_AKL +Texas_DQK +Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf, Alternate KiCad Library +Texas WSON6 2x2mm +0 +10 +8 +PCM_Package_SON_AKL +Texas_DRC0010J +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf, Alternate KiCad Library +Texas VSON10 3x3mm +0 +21 +11 +PCM_Package_SON_AKL +Texas_DRC0010J_ThermalVias +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf, Alternate KiCad Library +Texas VSON10 3x3mm +0 +26 +11 +PCM_Package_SON_AKL +Texas_DSC0010J +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library +0.5 DSC0010J WSON +0 +21 +11 +PCM_Package_SON_AKL +Texas_DSC0010J_ThermalVias +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library +0.5 DSC0010J WSON +0 +27 +11 +PCM_Package_SON_AKL +Texas_PWSON-N6 +Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf, Alternate KiCad Library +Plastic Small Outline No-Lead +0 +11 +7 +PCM_Package_SON_AKL +Texas_PWSON-N6_ThermalVias +Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf, Alternate KiCad Library +Plastic Small Outline No-Lead +0 +18 +7 +PCM_Package_SON_AKL +Texas_R-PWSON-N12_EP0.4x2mm +http://www.ti.com/lit/ds/symlink/tpd6f003.pdf, Alternate KiCad Library +WSON SMD +0 +16 +13 +PCM_Package_SON_AKL +Texas_S-PDSO-N12 +http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf, Alternate KiCad Library +SON thermal pads +0 +36 +13 +PCM_Package_SON_AKL +Texas_S-PVSON-N8 +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf, Alternate KiCad Library +DFN 0.65 S-PVSON-N8 +0 +13 +9 +PCM_Package_SON_AKL +Texas_S-PVSON-N8_ThermalVias +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf, Alternate KiCad Library +DFN 0.65 S-PVSON-N8 +0 +19 +9 +PCM_Package_SON_AKL +Texas_S-PVSON-N8_ThermalVias2 +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf, Alternate KiCad Library +DFN 0.65 S-PVSON-N8 +0 +21 +9 +PCM_Package_SON_AKL +Texas_S-PVSON-N10 +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library +0.5 S-PVSON-N10 DRC +0 +21 +11 +PCM_Package_SON_AKL +Texas_S-PVSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library +0.5 S-PVSON-N10 DRC +0 +27 +11 +PCM_Package_SON_AKL +Texas_S-PWSON-N8_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), Alternate KiCad Library +WSON NoLead +0 +11 +9 +PCM_Package_SON_AKL +Texas_S-PWSON-N8_EP1.2x2mm_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), Alternate KiCad Library +WSON NoLead +0 +14 +9 +PCM_Package_SON_AKL +Texas_S-PWSON-N8_EP2.2x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina188.pdf?ts=1630816487707&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +WSON NoLead +0 +13 +9 +PCM_Package_SON_AKL +Texas_S-PWSON-N8_EP2.2x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina188.pdf?ts=1630816487707&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +WSON NoLead +0 +23 +9 +PCM_Package_SON_AKL +Texas_S-PWSON-N8_EP2.2x3mm_ThermalVias2 +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina188.pdf?ts=1630816487707&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +WSON NoLead +0 +24 +9 +PCM_Package_SON_AKL +Texas_S-PWSON-N10 +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf, Alternate KiCad Library +0.5 S-PWSON-N10 DSC +0 +39 +11 +PCM_Package_SON_AKL +Texas_S-PWSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf, Alternate KiCad Library +0.5 S-PWSON-N10 DSC +0 +45 +11 +PCM_Package_SON_AKL +Texas_X2SON-4_1x1mm_P0.65mm +X2SON 5 pin 1x1mm package (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x), Alternate KiCad Library +X2SON +0 +13 +5 +PCM_Package_SON_AKL +Texas_X2SON-6_1x1mm_P0.35mm +Texas Instruments DPF Package, 1x1mm X2SON, https://www.ti.com/lit/ds/symlink/tlv3691.pdf?ts=1647587193911, Alternate KiCad Library +DPF 1x1 SON X2SON +0 +6 +6 +PCM_Package_SON_AKL +USON-10_2.5x1.0mm_P0.5mm +USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf, Alternate KiCad Library +USON-10 2.5x1.0mm Pitch 0.5mm +0 +10 +10 +PCM_Package_SON_AKL +USON-20_2x4mm_P0.4mm +USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf, Alternate KiCad Library +USON-20 2x4mm Pitch 0.4mm +0 +20 +20 +PCM_Package_SON_AKL +VSON-8_3.3x3.3mm_P0.65mm_NexFET +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf, Alternate KiCad Library +VSON 0.65 +0 +15 +5 +PCM_Package_SON_AKL +VSON-8_3.3x3.3mm_P0.65mm_NexFET_ThermalVias +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf, Alternate KiCad Library +VSON 0.65 +0 +22 +6 +PCM_Package_SON_AKL +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), Alternate KiCad Library +VSON NoLead +0 +15 +11 +PCM_Package_SON_AKL +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), Alternate KiCad Library +VSON NoLead +0 +18 +11 +PCM_Package_SON_AKL +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument, Alternate KiCad Library +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +21 +11 +PCM_Package_SON_AKL +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument, Alternate KiCad Library +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +27 +11 +PCM_Package_SON_AKL +VSONP-8-1EP_5x6_P1.27mm +SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf), Alternate KiCad Library +VSONP 1.27 +0 +17 +3 +PCM_Package_SON_AKL +VSONP-8-1EP_5x6_P1.27mm_ThermalVias +SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf), Alternate KiCad Library +VSONP 1.27 +0 +39 +4 +PCM_Package_SON_AKL +VSONP-8-1EP_5x6_P1.27mm_ThermalVias2 +SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf), Alternate KiCad Library +VSONP 1.27 +0 +42 +3 +PCM_Package_SON_AKL +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), Alternate KiCad Library +WSON NoLead +0 +9 +7 +PCM_Package_SON_AKL +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), Alternate KiCad Library +WSON NoLead +0 +12 +7 +PCM_Package_SON_AKL +WSON-6-1EP_3x3mm_P0.95mm +WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf, Alternate KiCad Library +WSON6 0.95 +0 +11 +7 +PCM_Package_SON_AKL +WSON-6-1EP_3x3mm_P0.95mm_ThermalVias +WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf, Alternate KiCad Library +WSON6 0.95 +0 +17 +7 +PCM_Package_SON_AKL +WSON-6_1.5x1.5mm_P0.5mm +WSON6, http://www.ti.com/lit/ds/symlink/tlv702.pdf, Alternate KiCad Library +WSON6_1.5x1.5mm_P0.5mm +0 +6 +6 +PCM_Package_SON_AKL +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library +WSON 8 1EP +0 +11 +9 +PCM_Package_SON_AKL +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library +WSON 8 1EP ThermalVias +0 +14 +9 +PCM_Package_SON_AKL +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), Alternate KiCad Library +WSON NoLead +0 +13 +9 +PCM_Package_SON_AKL +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), Alternate KiCad Library +WSON NoLead +0 +16 +9 +PCM_Package_SON_AKL +WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library +WSON 8 1EP +0 +13 +9 +PCM_Package_SON_AKL +WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm_ThermalVias +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library +WSON 8 1EP +0 +18 +9 +PCM_Package_SON_AKL +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm +8-Lead Plastic WSON, 3x3mm Body, 0.5mm Pitch, WSON-8, https://www.ti.com/lit/ds/symlink/ina819.pdf?ts=1630823367142&ref_url=https%253A%252F%252Fwww.google.com%252F, Alternate KiCad Library +WSON 8 1EP +0 +11 +9 +PCM_Package_SON_AKL +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias +8-Lead Plastic WSON, 3x3mm Body, 0.5mm Pitch, WSON-8, https://www.ti.com/lit/ds/symlink/ina819.pdf?ts=1630823367142&ref_url=https%253A%252F%252Fwww.google.com%252F, Alternate KiCad Library +WSON 8 1EP +0 +18 +9 +PCM_Package_SON_AKL +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), Alternate KiCad Library +WSON NoLead +0 +13 +9 +PCM_Package_SON_AKL +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm_ThermalVias +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), Alternate KiCad Library +WSON NoLead +0 +28 +9 +PCM_Package_SON_AKL +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm_ThermalVias2 +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), Alternate KiCad Library +WSON NoLead +0 +39 +9 +PCM_Package_SON_AKL +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), Alternate KiCad Library +WSON NoLead +0 +14 +9 +PCM_Package_SON_AKL +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm_ThermalVias +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), Alternate KiCad Library +WSON NoLead +0 +28 +9 +PCM_Package_SON_AKL +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm_ThermalVias2 +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), Alternate KiCad Library +WSON NoLead +0 +39 +9 +PCM_Package_SON_AKL +WSON-8_4x4mm_P0.8mm +http://www.ti.com/lit/ml/mpds406/mpds406.pdf, Alternate KiCad Library +WSON8_4x4mm_P0.8mm +0 +13 +9 +PCM_Package_SON_AKL +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), Alternate KiCad Library +WSON NoLead +0 +15 +11 +PCM_Package_SON_AKL +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), Alternate KiCad Library +WSON NoLead +0 +18 +11 +PCM_Package_SON_AKL +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm +WSON-10 package 2x3mm body, pitch 0.5mm, see http://www.ti.com/lit/ds/symlink/tps62177.pdf, Alternate KiCad Library +WSON 0.5 +0 +14 +11 +PCM_Package_SON_AKL +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias +WSON-10 package 2x3mm body, pitch 0.5mm, thermal vias and counter-pad, see http://www.ti.com/lit/ds/symlink/tps62177.pdf, Alternate KiCad Library +WSON 0.5 thermal vias +0 +17 +11 +PCM_Package_SON_AKL +WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm +10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf), Alternate KiCad Library +WSON 0.5 +0 +15 +11 +PCM_Package_SON_AKL +WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm_ThermalVias +10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf), Alternate KiCad Library +WSON 0.5 +0 +21 +11 +PCM_Package_SON_AKL +WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm_ThermalVias2 +10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf), Alternate KiCad Library +WSON 0.5 +0 +26 +11 +PCM_Package_SON_AKL +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65 +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf, Alternate KiCad Library +WSON-12 +0 +15 +13 +PCM_Package_SON_AKL +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf, Alternate KiCad Library +WSON-12 +0 +19 +13 +PCM_Package_SON_AKL +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), Alternate KiCad Library +WSON NoLead +0 +17 +13 +PCM_Package_SON_AKL +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), Alternate KiCad Library +WSON NoLead +0 +27 +13 +PCM_Package_SON_AKL +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias2 +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), Alternate KiCad Library +WSON NoLead +0 +28 +13 +PCM_Package_SON_AKL +WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm +14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf, Alternate KiCad Library +NHL014B +0 +19 +15 +PCM_Package_SON_AKL +WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm_ThermalVias +14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf, Alternate KiCad Library +NHL014B +0 +29 +15 +PCM_Package_SON_AKL +WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm_ThermalVias2 +14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf, Alternate KiCad Library +NHL014B +0 +30 +15 +PCM_Package_SON_AKL +WSON-16_3.3x1.35_P0.4mm +WSON-16 3.3 x 1.35mm Pitch 0.4mm http://www.chip.tomsk.ru/chip/chipdoc.nsf/Package/C67E729A4D6C883A4725793E004C8739!OpenDocument, Alternate KiCad Library +WSON-16 3.3 x 1.35mm Pitch 0.4mm +0 +21 +17 +PCM_Package_SON_AKL +X2SON-8_1.4x1mm_P0.35mm +X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf, Alternate KiCad Library +X2SON-8 1.4x1mm Pitch0.35mm +0 +8 +8 +PCM_Package_SO_AKL +Diodes_PSOP-8 +8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf), Alternate KiCad Library +SSOP 0.50 exposed pad +0 +13 +9 +PCM_Package_SO_AKL +Diodes_PSOP-8_ThermalVias +8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf), Alternate KiCad Library +SSOP 0.50 exposed pad +0 +23 +9 +PCM_Package_SO_AKL +Diodes_PSOP-8_ThermalVias2 +8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf), Alternate KiCad Library +SSOP 0.50 exposed pad +0 +27 +9 +PCM_Package_SO_AKL +Diodes_SO-8EP +8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf), Alternate KiCad Library +SO exposed pad +0 +13 +9 +PCM_Package_SO_AKL +Diodes_SO-8EP_ThermalVias +8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf), Alternate KiCad Library +SO exposed pad +0 +23 +9 +PCM_Package_SO_AKL +Diodes_SO-8EP_ThermalVias2 +8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf), Alternate KiCad Library +SO exposed pad +0 +24 +9 +PCM_Package_SO_AKL +ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.65 +0 +27 +21 +PCM_Package_SO_AKL +ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm_ThermalVias +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.65 +0 +40 +21 +PCM_Package_SO_AKL +ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm_ThermalVias2 +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.65 +0 +42 +21 +PCM_Package_SO_AKL +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), Alternate KiCad Library +HSOP SO +0 +13 +9 +PCM_Package_SO_AKL +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), Alternate KiCad Library +HSOP SO +0 +20 +9 +PCM_Package_SO_AKL +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias2 +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), Alternate KiCad Library +HSOP SO +0 +24 +9 +PCM_Package_SO_AKL +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +55 +21 +PCM_Package_SO_AKL +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +101 +21 +PCM_Package_SO_AKL +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias2 +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +151 +21 +PCM_Package_SO_AKL +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugUp +HSOP 11.0x15.9mm Pitch 1.27mm Slug Up (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +20 +20 +PCM_Package_SO_AKL +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +71 +37 +PCM_Package_SO_AKL +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +117 +37 +PCM_Package_SO_AKL +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias2 +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +167 +37 +PCM_Package_SO_AKL +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugUp +HSOP 11.0x15.9mm Pitch 0.65mm Slug Up (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +36 +36 +PCM_Package_SO_AKL +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), Alternate KiCad Library +HTSOP SO +0 +13 +9 +PCM_Package_SO_AKL +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), Alternate KiCad Library +HTSOP SO +0 +20 +9 +PCM_Package_SO_AKL +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias2 +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), Alternate KiCad Library +HTSOP SO +0 +24 +9 +PCM_Package_SO_AKL +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library +HTSSOP SO +0 +19 +15 +PCM_Package_SO_AKL +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library +HTSSOP SO +0 +20 +15 +PCM_Package_SO_AKL +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm_ThermalVias +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library +HTSSOP SO +0 +30 +15 +PCM_Package_SO_AKL +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_ThermalVias +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library +HTSSOP SO +0 +29 +15 +PCM_Package_SO_AKL +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_ThermalVias2 +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library +HTSSOP SO +0 +33 +15 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP2.94x3.58mm +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library +SSOP 0.65 +0 +26 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP2.94x3.58mm_ThermalVias +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library +SSOP 0.65 +0 +31 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP2.94x3.58mm_ThermalVias2 +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library +SSOP 0.65 +0 +35 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library +SSOP 0.65 +0 +29 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library +HTSSOP SO +0 +22 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library +HTSSOP SO +0 +29 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3mm_ThermalVias +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad with vias; (http://www.ti.com/lit/ds/symlink/drv8800.pdf), Alternate KiCad Library +SSOP 0.65 +0 +38 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_ThermalVias +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library +SSOP 0.65 +0 +50 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_ThermalVias2 +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library +SSOP 0.65 +0 +47 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), Alternate KiCad Library +HTSSOP SO +0 +21 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias +HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), Alternate KiCad Library +HTSSOP SO +0 +31 +17 +PCM_Package_SO_AKL +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias2 +HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), Alternate KiCad Library +HTSSOP SO +0 +35 +17 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm +HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF U20E-1), Alternate KiCad Library +HTSSOP SO +0 +23 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm_ThermalVias +HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF U20E-1), Alternate KiCad Library +HTSSOP SO +0 +33 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm_ThermalVias2 +HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF U20E-1), Alternate KiCad Library +HTSSOP SO +0 +36 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias, Alternate KiCad Library +HTSSOP 0.65 +0 +29 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.4x3.7mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/bq24006.pdf), Alternate KiCad Library +HTSSOP SO +0 +24 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), Alternate KiCad Library +HTSSOP SO +0 +26 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), Alternate KiCad Library +HTSSOP SO +0 +42 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias_HandSolder +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), Alternate KiCad Library +HTSSOP SO +0 +42 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), Alternate KiCad Library +HTSSOP SO +0 +26 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm_ThermalVias +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), Alternate KiCad Library +HTSSOP SO +0 +42 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias, Alternate KiCad Library +HTSSOP 0.65 +0 +45 +21 +PCM_Package_SO_AKL +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias2 +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias, Alternate KiCad Library +HTSSOP 0.65 +0 +43 +21 +PCM_Package_SO_AKL +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), Alternate KiCad Library +HTSSOP SO +0 +31 +25 +PCM_Package_SO_AKL +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm_ThermalVias +HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), Alternate KiCad Library +HTSSOP SO +0 +44 +25 +PCM_Package_SO_AKL +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm_ThermalVias2 +HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), Alternate KiCad Library +HTSSOP SO +0 +51 +25 +PCM_Package_SO_AKL +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), Alternate KiCad Library +HTSSOP SO +0 +28 +25 +PCM_Package_SO_AKL +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm_ThermalVias +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), Alternate KiCad Library +HTSSOP SO +0 +47 +25 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), Alternate KiCad Library +HTSSOP SO +0 +32 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), Alternate KiCad Library +HTSSOP SO +0 +41 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias2 +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), Alternate KiCad Library +HTSSOP SO +0 +51 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library +TSSOP HTSSOP 0.65 thermal pad +0 +39 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library +TSSOP HTSSOP 0.65 thermal pad +0 +40 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library +TSSOP HTSSOP 0.65 thermal pad +0 +55 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.25x6.17mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library +TSSOP HTSSOP 0.65 thermal pad +0 +55 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library +TSSOP HTSSOP 0.65 thermal pad +0 +58 +29 +PCM_Package_SO_AKL +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias2 +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library +TSSOP HTSSOP 0.65 thermal pad +0 +61 +29 +PCM_Package_SO_AKL +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf), Alternate KiCad Library +SSOP 0.65 PowerPAD +0 +43 +33 +PCM_Package_SO_AKL +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm_ThermalVias +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf), Alternate KiCad Library +SSOP 0.65 PowerPAD +0 +83 +33 +PCM_Package_SO_AKL +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), Alternate KiCad Library +HTSSOP SO +0 +46 +39 +PCM_Package_SO_AKL +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), Alternate KiCad Library +HTSSOP SO +0 +87 +39 +PCM_Package_SO_AKL +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf, Alternate KiCad Library +HTSSOP 0.5 +0 +72 +57 +PCM_Package_SO_AKL +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm_ThermalVias +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf, Alternate KiCad Library +HTSSOP 0.5 +0 +104 +57 +PCM_Package_SO_AKL +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm_ThermalVias2 +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf, Alternate KiCad Library +HTSSOP 0.5 +0 +86 +57 +PCM_Package_SO_AKL +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), Alternate KiCad Library +Infineon PG-DSO SO +0 +13 +9 +PCM_Package_SO_AKL +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), Alternate KiCad Library +Infineon PG-DSO SO +0 +23 +9 +PCM_Package_SO_AKL +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias2 +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), Alternate KiCad Library +Infineon PG-DSO SO +0 +27 +9 +PCM_Package_SO_AKL +Infineon_PG-DSO-8-43 +Infineon_PG-DSO-8-43, Alternate KiCad Library +DSO DSO-8 SOIC SOIC-8 +0 +13 +9 +PCM_Package_SO_AKL +Infineon_PG-DSO-8-43_ThermalVias +Infineon_PG-DSO-8-43, Alternate KiCad Library +DSO DSO-8 SOIC SOIC-8 +0 +23 +9 +PCM_Package_SO_AKL +Infineon_PG-DSO-8-43_ThermalVias2 +Infineon_PG-DSO-8-43, Alternate KiCad Library +DSO DSO-8 SOIC SOIC-8 +0 +27 +9 +PCM_Package_SO_AKL +Infineon_PG-DSO-12-9 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/), Alternate KiCad Library +PG-DSO +0 +23 +13 +PCM_Package_SO_AKL +Infineon_PG-DSO-12-9_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/), Alternate KiCad Library +PG-DSO +0 +42 +13 +PCM_Package_SO_AKL +Infineon_PG-DSO-12-9_ThermalVias2 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/), Alternate KiCad Library +PG-DSO +0 +46 +13 +PCM_Package_SO_AKL +Infineon_PG-DSO-12-11 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/), Alternate KiCad Library +PG-DSO +0 +23 +13 +PCM_Package_SO_AKL +Infineon_PG-DSO-12-11_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/), Alternate KiCad Library +PG-DSO +0 +42 +13 +PCM_Package_SO_AKL +Infineon_PG-DSO-12-11_ThermalVias2 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/), Alternate KiCad Library +PG-DSO +0 +46 +13 +PCM_Package_SO_AKL +Infineon_PG-DSO-20-30 +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/), Alternate KiCad Library +DSO-20 +0 +31 +21 +PCM_Package_SO_AKL +Infineon_PG-DSO-20-30_ThermalVias +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/), Alternate KiCad Library +DSO-20 +0 +45 +21 +PCM_Package_SO_AKL +Infineon_PG-DSO-20-30_ThermalVias2 +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/), Alternate KiCad Library +DSO-20 +0 +91 +21 +PCM_Package_SO_AKL +Infineon_PG-DSO-20-32 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/), Alternate KiCad Library +DSO-20 +0 +20 +20 +PCM_Package_SO_AKL +Infineon_PG-SSOP-14 +Infineon_PG-TSDSO-14-22, Alternate KiCad Library +Infineon TSDSO 14-22 +0 +17 +15 +PCM_Package_SO_AKL +Infineon_PG-SSOP-14_ThermalVias +Infineon_PG-TSDSO-14-22, Alternate KiCad Library +Infineon TSDSO 14-22 +0 +29 +15 +PCM_Package_SO_AKL +Infineon_PG-SSOP-14_ThermalVias2 +Infineon_PG-TSDSO-14-22, Alternate KiCad Library +Infineon TSDSO 14-22 +0 +30 +15 +PCM_Package_SO_AKL +Infineon_PG-TSDSO-14-22 +Infineon_PG-TSDSO-14-22, Alternate KiCad Library +Infineon TSDSO 14-22 +0 +17 +15 +PCM_Package_SO_AKL +Infineon_PG-TSDSO-14-22_ThermalVias +Infineon_PG-TSDSO-14-22, Alternate KiCad Library +Infineon TSDSO 14-22 +0 +29 +15 +PCM_Package_SO_AKL +Infineon_PG-TSDSO-14-22_ThermalVias2 +Infineon_PG-TSDSO-14-22, Alternate KiCad Library +Infineon TSDSO 14-22 +0 +37 +15 +PCM_Package_SO_AKL +Linear_MSOP-12-16-1EP_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf), Alternate KiCad Library +SSOP 0.5 +0 +15 +13 +PCM_Package_SO_AKL +Linear_MSOP-12-16-1EP_3x4mm_P0.5mm_ThermalVias +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf), Alternate KiCad Library +SSOP 0.5 +0 +22 +13 +PCM_Package_SO_AKL +Linear_MSOP-12-16-1EP_3x4mm_P0.5mm_ThermalVias2 +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf), Alternate KiCad Library +SSOP 0.5 +0 +29 +13 +PCM_Package_SO_AKL +Linear_MSOP-12-16_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf), Alternate KiCad Library +SSOP 0.5 +0 +12 +12 +PCM_Package_SO_AKL +MFSOP6-4_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.4pin%20MFSOP6.html, Alternate KiCad Library +MFSOP 4 pin SMD +0 +4 +4 +PCM_Package_SO_AKL +MFSOP6-5_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.5pin%20MFSOP6.html, Alternate KiCad Library +MFSOP 4 pin SMD +0 +5 +5 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), Alternate KiCad Library +MSOP SO +0 +13 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), Alternate KiCad Library +MSOP SO +0 +18 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias2 +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), Alternate KiCad Library +MSOP SO +0 +20 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), Alternate KiCad Library +MSOP SO +0 +13 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), Alternate KiCad Library +MSOP SO +0 +18 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias2 +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), Alternate KiCad Library +MSOP SO +0 +20 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), Alternate KiCad Library +MSOP SO +0 +13 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), Alternate KiCad Library +MSOP SO +0 +18 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias2 +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), Alternate KiCad Library +MSOP SO +0 +20 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), Alternate KiCad Library +MSOP SO +0 +14 +9 +PCM_Package_SO_AKL +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm_ThermalVias +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), Alternate KiCad Library +MSOP SO +0 +19 +9 +PCM_Package_SO_AKL +MSOP-8_3x3mm_P0.65mm +MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), Alternate KiCad Library +MSOP SO +0 +8 +8 +PCM_Package_SO_AKL +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), Alternate KiCad Library +MSOP SO +0 +15 +11 +PCM_Package_SO_AKL +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), Alternate KiCad Library +MSOP SO +0 +20 +11 +PCM_Package_SO_AKL +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias2 +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), Alternate KiCad Library +MSOP SO +0 +22 +11 +PCM_Package_SO_AKL +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), Alternate KiCad Library +MSOP SO +0 +15 +11 +PCM_Package_SO_AKL +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), Alternate KiCad Library +MSOP SO +0 +20 +11 +PCM_Package_SO_AKL +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias2 +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), Alternate KiCad Library +MSOP SO +0 +22 +11 +PCM_Package_SO_AKL +MSOP-10_3x3mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.5 +0 +10 +10 +PCM_Package_SO_AKL +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), Alternate KiCad Library +MSOP SO +0 +17 +13 +PCM_Package_SO_AKL +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), Alternate KiCad Library +MSOP SO +0 +24 +13 +PCM_Package_SO_AKL +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias2 +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), Alternate KiCad Library +MSOP SO +0 +28 +13 +PCM_Package_SO_AKL +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.5 +0 +19 +13 +PCM_Package_SO_AKL +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.5 +0 +25 +13 +PCM_Package_SO_AKL +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias2 +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.5 +0 +28 +13 +PCM_Package_SO_AKL +MSOP-12-16_3x4mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.5 +0 +12 +12 +PCM_Package_SO_AKL +MSOP-12_3x4mm_P0.65mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/6957fb.pdf#page=36), Alternate KiCad Library +MSOP SO +0 +12 +12 +PCM_Package_SO_AKL +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), Alternate KiCad Library +MSOP SO +0 +21 +17 +PCM_Package_SO_AKL +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), Alternate KiCad Library +MSOP SO +0 +28 +17 +PCM_Package_SO_AKL +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias2 +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), Alternate KiCad Library +MSOP SO +0 +29 +17 +PCM_Package_SO_AKL +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), Alternate KiCad Library +MSOP SO +0 +21 +17 +PCM_Package_SO_AKL +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), Alternate KiCad Library +MSOP SO +0 +28 +17 +PCM_Package_SO_AKL +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias2 +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), Alternate KiCad Library +MSOP SO +0 +29 +17 +PCM_Package_SO_AKL +MSOP-16_3x4.039mm_P0.5mm +MSOP, 16 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081669_A_MS16.pdf), Alternate KiCad Library +MSOP SO +0 +16 +16 +PCM_Package_SO_AKL +MSOP-16_3x4mm_P0.5mm +MSOP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/436412f.pdf#page=22), Alternate KiCad Library +MSOP SO +0 +16 +16 +PCM_Package_SO_AKL +ONSemi_SO-8FL_488AA +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF, Alternate KiCad Library +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A +0 +17 +5 +PCM_Package_SO_AKL +ONSemi_SO-8FL_488AA_ThermalVias +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF, Alternate KiCad Library +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A +0 +30 +5 +PCM_Package_SO_AKL +OnSemi_Micro8 +ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF, Alternate KiCad Library +micro8 +0 +8 +8 +PCM_Package_SO_AKL +PSOP-44_16.9x27.17mm_P1.27mm +PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm, Alternate KiCad Library +PSOP 1.27 +0 +44 +44 +PCM_Package_SO_AKL +PowerIntegrations_SO-8 +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf, Alternate KiCad Library +SOIC 1.27 +0 +8 +8 +PCM_Package_SO_AKL +PowerIntegrations_SO-8B +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf, Alternate KiCad Library +SOIC 1.27 +0 +7 +7 +PCM_Package_SO_AKL +PowerIntegrations_SO-8C +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf, Alternate KiCad Library +SOIC 1.27 +0 +7 +7 +PCM_Package_SO_AKL +PowerIntegrations_eSOP-12B +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf, Alternate KiCad Library +Power Integrations K Package +0 +27 +12 +PCM_Package_SO_AKL +PowerIntegrations_eSOP-12B_ThermalVias +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf, Alternate KiCad Library +Power Integrations K Package +0 +52 +12 +PCM_Package_SO_AKL +PowerIntegrations_eSOP-12B_ThermalVias2 +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf, Alternate KiCad Library +Power Integrations K Package +0 +90 +12 +PCM_Package_SO_AKL +PowerPAK_SO-8_Dual +PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf), Alternate KiCad Library +PowerPAK SO-8 Dual +0 +14 +6 +PCM_Package_SO_AKL +PowerPAK_SO-8_Dual_ThermalVias +PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf), Alternate KiCad Library +PowerPAK SO-8 Dual +0 +28 +6 +PCM_Package_SO_AKL +PowerPAK_SO-8_Single +PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf), Alternate KiCad Library +PowerPAK SO-8 Single +0 +13 +5 +PCM_Package_SO_AKL +PowerPAK_SO-8_Single_ThermalVias +PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf), Alternate KiCad Library +PowerPAK SO-8 Single +0 +23 +5 +PCM_Package_SO_AKL +QSOP-16_3.9x4.9mm_P0.635mm +16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.635 +0 +16 +16 +PCM_Package_SO_AKL +QSOP-20_3.9x8.7mm_P0.635mm +20-Lead Plastic Shrink Small Outline Narrow Body (http://www.analog.com/media/en/technical-documentation/data-sheets/ADuM7640_7641_7642_7643.pdf), Alternate KiCad Library +QSOP 0.635 +0 +20 +20 +PCM_Package_SO_AKL +QSOP-24_3.9x8.7mm_P0.635mm +24-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049CH.pdf), Alternate KiCad Library +QSOP 0.635 +0 +24 +24 +PCM_Package_SO_AKL +SC-74-6_1.5x2.9mm_P0.95mm +SC-74, 6 Pin (https://www.nxp.com/docs/en/package-information/SOT457.pdf), Alternate KiCad Library +SC-74 SO +0 +6 +6 +PCM_Package_SO_AKL +SO-4_4.4x2.3mm_P1.27mm +4-Lead Plastic Small Outline (SO), see http://datasheet.octopart.com/OPIA403BTRE-Optek-datasheet-5328560.pdf, Alternate KiCad Library +SO SOIC 1.27 +0 +4 +4 +PCM_Package_SO_AKL +SO-4_4.4x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://www.elpro.org/de/index.php?controller=attachment&id_attachment=339, Alternate KiCad Library +SO SOIC 2.54 +0 +4 +4 +PCM_Package_SO_AKL +SO-4_4.4x3.9mm_P2.54mm +SO, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=10047&prodName=TLP3123), Alternate KiCad Library +SO SO +0 +4 +4 +PCM_Package_SO_AKL +SO-4_4.4x4.3mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/docs/AV02-0173EN, Alternate KiCad Library +SO SOIC 2.54 +0 +4 +4 +PCM_Package_SO_AKL +SO-4_7.6x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf), Alternate KiCad Library +SO SOIC 2.54 +0 +4 +4 +PCM_Package_SO_AKL +SO-5_4.4x3.6mm_P1.27mm +5-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SO SOIC 1.27 +0 +5 +5 +PCM_Package_SO_AKL +SO-5_4.4x4.1mm_P1.27mm +5-Lead Plastic Small Outline (SO), see https://www.tme.eu/Document/8491f02d2d82a7fa1d039b86b6b63043/FODM452.pdf, Alternate KiCad Library +SO SOIC 1.27 +0 +5 +5 +PCM_Package_SO_AKL +SO-5_7.6x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf), Alternate KiCad Library +SO SOIC 2.54 +0 +5 +5 +PCM_Package_SO_AKL +SO-6L_10x3.84mm_P1.27mm +6-pin plasic small outline 7,5mm long https://toshiba.semicon-storage.com/info/docget.jsp?did=53548&prodName=TLP2770, Alternate KiCad Library +SO-6L +0 +6 +6 +PCM_Package_SO_AKL +SO-6_4.4x3.6mm_P1.27mm +6-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SO SOIC 1.27 +0 +6 +6 +PCM_Package_SO_AKL +SO-6_6.8x4.6mm_P1.27mm +SO, 6 Pin (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library +SO SO +0 +6 +6 +PCM_Package_SO_AKL +SO-6_6.8x4.6mm_P1.27mm_Wide +SO, 6 Pin, Wide lead form variant (12.65mm) (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library +SO SO +0 +6 +6 +PCM_Package_SO_AKL +SO-6_7.5x3.84mm_P1.27mm +SO, 6 Pin (https://www.tme.eu/Document/0f43e954bced53526738cacd57456531/TLP2704-E-T.pdf), Alternate KiCad Library +SO SO +0 +6 +6 +PCM_Package_SO_AKL +SO-6_7.5x3.84mm_P1.27mm_Wide +SO, 6 Pin (https://www.tme.eu/Document/0f43e954bced53526738cacd57456531/TLP2704-E-T.pdf), Alternate KiCad Library +SO SO +0 +6 +6 +PCM_Package_SO_AKL +SO-8_3.9x4.9mm_P1.27mm +SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), Alternate KiCad Library +SO SO +0 +8 +8 +PCM_Package_SO_AKL +SO-8_3.9x6.2mm_P1.27mm +SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), Alternate KiCad Library +SO SO +0 +8 +8 +PCM_Package_SO_AKL +SO-8_4.4x5mm_P1.27mm +8-Lead Plastic Small Outline (SO), see https://www.tme.eu/Document/ddb3144ac72a0aaee2862110062bae81/BA4560F.pdf, Alternate KiCad Library +SO SOIC 1.27 +0 +8 +8 +PCM_Package_SO_AKL +SO-8_5.3x6.2mm_P1.27mm +SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), Alternate KiCad Library +SO SO +0 +8 +8 +PCM_Package_SO_AKL +SO-8_5x5mm_P1.27mm +SO, NJR DMP8 Package, 8 Pin (https://www.nisshinbo-microdevices.co.jp/en/pdf/package/dmp8.pdf), Alternate KiCad Library +SO SO DMP8 +0 +8 +8 +PCM_Package_SO_AKL +SO-8_6.8x5.9mm_P1.27mm +SO, 8 Pin (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library +SO SO +0 +8 +8 +PCM_Package_SO_AKL +SO-8_6.8x5.9mm_P1.27mm_Wide +SO, 8 Pin, Wide lead form variant (12.65mm) (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library +SO SO +0 +8 +8 +PCM_Package_SO_AKL +SO-14_5.3x10.2mm_P1.27mm +SO, 14 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library +SO SO +0 +14 +14 +PCM_Package_SO_AKL +SO-16_5.3x10.2mm_P1.27mm +SO, 16 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library +SO SO +0 +16 +16 +PCM_Package_SO_AKL +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), Alternate KiCad Library +SO SO +0 +26 +21 +PCM_Package_SO_AKL +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm_ThermalVias +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), Alternate KiCad Library +SO SO +0 +47 +21 +PCM_Package_SO_AKL +SO-20_5.3x12.6mm_P1.27mm +SO, 20 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library +SO SO +0 +20 +20 +PCM_Package_SO_AKL +SO-20_12.8x7.5mm_P1.27mm +SO-20, 12.8x7.5mm, https://www.nxp.com/docs/en/data-sheet/SA605.pdf, Alternate KiCad Library +S0-20 +0 +20 +20 +PCM_Package_SO_AKL +SO-24_5.3x15mm_P1.27mm +SO, 24 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library +SO SO +0 +24 +24 +PCM_Package_SO_AKL +SOIC-4_4.55x2.6mm_P1.27mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12884&prodName=TLP291), Alternate KiCad Library +SOIC SO +0 +4 +4 +PCM_Package_SO_AKL +SOIC-4_4.55x3.7mm_P2.54mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), Alternate KiCad Library +SOIC SO +0 +4 +4 +PCM_Package_SO_AKL +SOIC-4_4.55x4.4mm_P2.54mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), Alternate KiCad Library +SOIC SO +0 +4 +4 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x2.29mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +13 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x2.29mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +18 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x2.29mm_ThermalVias2 +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +24 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +13 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +20 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias2 +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +24 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), Alternate KiCad Library +SOIC SO +0 +13 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), Alternate KiCad Library +SOIC SO +0 +20 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias2 +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), Alternate KiCad Library +SOIC SO +0 +24 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +13 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +20 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias2 +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library +SOIC SO +0 +24 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), Alternate KiCad Library +SOIC SO +0 +14 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), Alternate KiCad Library +SOIC SO +0 +23 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), Alternate KiCad Library +SOIC SO +0 +13 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), Alternate KiCad Library +SOIC SO +0 +20 +9 +PCM_Package_SO_AKL +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias2 +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), Alternate KiCad Library +SOIC SO +0 +24 +9 +PCM_Package_SO_AKL +SOIC-8-N7_3.9x4.9mm_P1.27mm +8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], pin 7 removed (Microchip Packaging Specification 00000049BS.pdf, http://www.onsemi.com/pub/Collateral/NCP1207B.PDF), Alternate KiCad Library +SOIC 1.27 +0 +7 +7 +PCM_Package_SO_AKL +SOIC-8_3.9x4.9mm_P1.27mm +SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), Alternate KiCad Library +SOIC SO +0 +8 +8 +PCM_Package_SO_AKL +SOIC-8_5.23x5.23mm_P1.27mm +SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), Alternate KiCad Library +SOIC SO +0 +8 +8 +PCM_Package_SO_AKL +SOIC-8_5.275x5.275mm_P1.27mm +SOIC, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23), Alternate KiCad Library +SOIC SO +0 +8 +8 +PCM_Package_SO_AKL +SOIC-8_7.5x5.85mm_P1.27mm +SOIC, 8 Pin (http://www.ti.com/lit/ml/mpds382b/mpds382b.pdf), Alternate KiCad Library +SOIC SO +0 +8 +8 +PCM_Package_SO_AKL +SOIC-14W_7.5x9mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-013AF, https://www.analog.com/media/en/package-pcb-resources/package/54614177245586rw_14.pdf), Alternate KiCad Library +SOIC SO +0 +14 +14 +PCM_Package_SO_AKL +SOIC-14_3.9x8.7mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), Alternate KiCad Library +SOIC SO +0 +14 +14 +PCM_Package_SO_AKL +SOIC-16W-12_7.5x10.3mm_P1.27mm +SOIC-16 With 12 Pin Placed - Wide, 7.50 mm Body [SOIC] (https://docs.broadcom.com/docs/AV02-0169EN), Alternate KiCad Library +SOIC 1.27 16 12 Wide +0 +12 +12 +PCM_Package_SO_AKL +SOIC-16W_5.3x10.2mm_P1.27mm +16-Lead Plastic Small Outline (SO) - Wide, 5.3 mm Body (http://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library +SOIC 1.27 +0 +16 +16 +PCM_Package_SO_AKL +SOIC-16W_7.5x10.3mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf), Alternate KiCad Library +SOIC SO +0 +16 +16 +PCM_Package_SO_AKL +SOIC-16W_7.5x12.8mm_P1.27mm +SOIC, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ri_soic_ic/ri_16_1.pdf), Alternate KiCad Library +SOIC SO +0 +16 +16 +PCM_Package_SO_AKL +SOIC-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), Alternate KiCad Library +SOIC SO +0 +16 +16 +PCM_Package_SO_AKL +SOIC-16_4.55x10.3mm_P1.27mm +SOIC, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12858&prodName=TLP291-4), Alternate KiCad Library +SOIC SO +0 +16 +16 +PCM_Package_SO_AKL +SOIC-18W_7.5x11.6mm_P1.27mm +SOIC, 18 Pin (JEDEC MS-013AB, https://www.analog.com/media/en/package-pcb-resources/package/33254132129439rw_18.pdf), Alternate KiCad Library +SOIC SO +0 +18 +18 +PCM_Package_SO_AKL +SOIC-20W_7.5x12.8mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), Alternate KiCad Library +SOIC SO +0 +20 +20 +PCM_Package_SO_AKL +SOIC-24W_7.5x15.4mm_P1.27mm +SOIC, 24 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RW_24.pdf), Alternate KiCad Library +SOIC SO +0 +24 +24 +PCM_Package_SO_AKL +SOIC-28W-8_7.5x17.9mm_P1.27mm +SOIC, 8 Pin High isolation, (https://www.ti.com/lit/ds/symlink/iso122.pdf?ts=1630824878123&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library +SOIC SO +0 +8 +8 +PCM_Package_SO_AKL +SOIC-28W_7.5x17.9mm_P1.27mm +SOIC, 28 Pin (JEDEC MS-013AE, https://www.analog.com/media/en/package-pcb-resources/package/35833120341221rw_28.pdf), Alternate KiCad Library +SOIC SO +0 +28 +28 +PCM_Package_SO_AKL +SOIC-28W_7.5x18.7mm_P1.27mm +SOIC, 28 Pin (https://www.akm.com/akm/en/file/datasheet/AK5394AVS.pdf#page=23), Alternate KiCad Library +SOIC SO +0 +28 +28 +PCM_Package_SO_AKL +SOIJ-8_5.3x5.3mm_P1.27mm +8-Lead Plastic Small Outline (SM) - Medium, 5.28 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SOIC 1.27 +0 +8 +8 +PCM_Package_SO_AKL +SOJ-36_10.16x23.49mm_P1.27mm +SOJ, 36 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library +SOJ SO +0 +36 +36 +PCM_Package_SO_AKL +SOP-4_3.8x4.1mm_P2.54mm +SOP, 4 Pin (http://www.ixysic.com/home/pdfs.nsf/www/CPC1017N.pdf/$file/CPC1017N.pdf), Alternate KiCad Library +SOP SO +0 +4 +4 +PCM_Package_SO_AKL +SOP-4_4.4x2.6mm_P1.27mm +SOP, 4 Pin (http://www.vishay.com/docs/83510/tcmt1100.pdf), Alternate KiCad Library +SOP SO +0 +4 +4 +PCM_Package_SO_AKL +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), Alternate KiCad Library +SOP SO +0 +13 +9 +PCM_Package_SO_AKL +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm_ThermalVias +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), Alternate KiCad Library +SOP SO +0 +23 +9 +PCM_Package_SO_AKL +SOP-8_3.9x4.9mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), Alternate KiCad Library +SOP SO +0 +8 +8 +PCM_Package_SO_AKL +SOP-8_3.76x4.96mm_P1.27mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX211.pdf), Alternate KiCad Library +SOP SO +0 +8 +8 +PCM_Package_SO_AKL +SOP-8_5.28x5.23mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=80), Alternate KiCad Library +SOP SO +0 +8 +8 +PCM_Package_SO_AKL +SOP-8_6.62x9.15mm_P2.54mm +SOP, 8 Pin (http://www.ti.com/lit/ds/symlink/iso1050.pdf), Alternate KiCad Library +SOP SO +0 +8 +8 +PCM_Package_SO_AKL +SOP-16_4.4x10.4mm_P1.27mm +16-Lead Plastic Small Outline http://www.vishay.com/docs/49633/sg2098.pdf, Alternate KiCad Library +SOP 1.27 +0 +16 +16 +PCM_Package_SO_AKL +SOP-16_4.55x10.3mm_P1.27mm +SOP, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12855&prodName=TLP290-4), Alternate KiCad Library +SOP SO +0 +16 +16 +PCM_Package_SO_AKL +SOP-18_7x12.5mm_P1.27mm +SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), Alternate KiCad Library +SOP SO +0 +18 +18 +PCM_Package_SO_AKL +SOP-24_7.5x15.4mm_P1.27mm +SOP, 24 Pin (http://www.issi.com/WW/pdf/31FL3218.pdf#page=14), Alternate KiCad Library +SOP SO +0 +24 +24 +PCM_Package_SO_AKL +SSO-4_6.7x5.1mm_P2.54mm_Clearance8mm +4-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/84299/vor1142b4.pdf, Alternate KiCad Library +SSO Stretched SO SOIC 2.54 +0 +4 +4 +PCM_Package_SO_AKL +SSO-6_6.8x4.6mm_P1.27mm_Clearance7mm +6-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SSO Stretched SO SOIC 1.27 +0 +6 +6 +PCM_Package_SO_AKL +SSO-6_6.8x4.6mm_P1.27mm_Clearance8mm +6-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SSO Stretched SO SOIC 1.27 +0 +6 +6 +PCM_Package_SO_AKL +SSO-8_6.7x9.8mm_P2.54mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/83831/lh1533ab.pdf, Alternate KiCad Library +SSO Stretched SO SOIC Pitch 2.54 +0 +8 +8 +PCM_Package_SO_AKL +SSO-8_6.8x5.9mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +PCM_Package_SO_AKL +SSO-8_6.8x5.9mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +PCM_Package_SO_AKL +SSO-8_9.6x6.3mm_P1.27mm_Clearance10.5mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +PCM_Package_SO_AKL +SSO-8_13.6x6.3mm_P1.27mm_Clearance14.2mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +PCM_Package_SO_AKL +SSOP-8_2.95x2.8mm_P0.65mm +SSOP-8 2.9 x2.8mm Pitch 0.65mm, Alternate KiCad Library +SSOP-8 2.95x2.8mm Pitch 0.65mm +0 +8 +8 +PCM_Package_SO_AKL +SSOP-8_3.9x5.05mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), Alternate KiCad Library +SSOP SO +0 +8 +8 +PCM_Package_SO_AKL +SSOP-8_3.95x5.21x3.27mm_P1.27mm +SSOP-8 3.95x5.21x3.27mm Pitch 1.27mm, Alternate KiCad Library +SSOP-8 3.95x5.21x3.27mm 1.27mm +0 +8 +8 +PCM_Package_SO_AKL +SSOP-8_4.4x3.5mm_P0.65mm +SSOP, 8 Pin (https://www.nisshinbo-microdevices.co.jp/en/pdf/package/ssop8_n.pdf), Alternate KiCad Library +SSOP SO +0 +8 +8 +PCM_Package_SO_AKL +SSOP-8_5.25x5.24mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/ca/en/Images/MB85RS2MT-DS501-00023-1v0-E.pdf), Alternate KiCad Library +SSOP SO +0 +8 +8 +PCM_Package_SO_AKL +SSOP-10_3.9x4.9mm_P1.00mm +10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf), Alternate KiCad Library +SSOP 3.9 4.9 1.00 +0 +10 +10 +PCM_Package_SO_AKL +SSOP-14_5.3x6.2mm_P0.65mm +SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +14 +14 +PCM_Package_SO_AKL +SSOP-16_3.9x4.9mm_P0.635mm +SSOP16: plastic shrink small outline package; 16 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot519-1_po.pdf), Alternate KiCad Library +SSOP 0.635 +0 +16 +16 +PCM_Package_SO_AKL +SSOP-16_4.4x5.2mm_P0.65mm +SSOP16: plastic shrink small outline package; 16 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot369-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +16 +16 +PCM_Package_SO_AKL +SSOP-16_5.3x6.2mm_P0.65mm +SSOP16: plastic shrink small outline package; 16 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot338-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +16 +16 +PCM_Package_SO_AKL +SSOP-18_4.4x6.5mm_P0.65mm +SSOP18: plastic shrink small outline package; 18 leads; body width 4.4 mm (http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG), Alternate KiCad Library +SSOP 0.65 +0 +18 +18 +PCM_Package_SO_AKL +SSOP-20_3.9x8.7mm_P0.635mm +SSOP20: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT231X.pdf), Alternate KiCad Library +SSOP 0.635 +0 +20 +20 +PCM_Package_SO_AKL +SSOP-20_4.4x6.5mm_P0.65mm +SSOP20: plastic shrink small outline package; 20 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot266-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +20 +20 +PCM_Package_SO_AKL +SSOP-20_5.3x7.2mm_P0.65mm +SSOP, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001800C.pdf), Alternate KiCad Library +SSOP SO +0 +20 +20 +PCM_Package_SO_AKL +SSOP-24_3.9x8.7mm_P0.635mm +SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf), Alternate KiCad Library +SSOP 0.635 +0 +24 +24 +PCM_Package_SO_AKL +SSOP-24_5.3x8.2mm_P0.65mm +24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.65 +0 +24 +24 +PCM_Package_SO_AKL +SSOP-28_3.9x9.9mm_P0.635mm +SSOP28: plastic shrink small outline package; 28 leads; body width 3.9 mm; lead pitch 0.635; (see http://cds.linear.com/docs/en/datasheet/38901fb.pdf), Alternate KiCad Library +SSOP 0.635 +0 +28 +28 +PCM_Package_SO_AKL +SSOP-28_5.3x10.2mm_P0.65mm +28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library +SSOP 0.65 +0 +28 +28 +PCM_Package_SO_AKL +SSOP-32_11.305x20.495mm_P1.27mm +SSOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library +SSOP SO +0 +32 +32 +PCM_Package_SO_AKL +SSOP-44_5.3x12.8mm_P0.5mm +44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf), Alternate KiCad Library +SSOP 0.5 +0 +44 +44 +PCM_Package_SO_AKL +SSOP-48_7.5x15.9mm_P0.635mm +SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf), Alternate KiCad Library +SSOP 0.635 +0 +48 +48 +PCM_Package_SO_AKL +SSOP-56_7.5x18.5mm_P0.635mm +SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf), Alternate KiCad Library +SSOP 0.635 +0 +56 +56 +PCM_Package_SO_AKL +STC_SOP-16_3.9x9.9mm_P1.27mm +STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), Alternate KiCad Library +STC SOP SO +0 +16 +16 +PCM_Package_SO_AKL +ST_MultiPowerSO-30 +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf), Alternate KiCad Library +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm +0 +75 +33 +PCM_Package_SO_AKL +ST_MultiPowerSO-30_ThermalVias +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf), Alternate KiCad Library +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm +0 +146 +33 +PCM_Package_SO_AKL +ST_PowerSSO-12 +ST PowerSSO-12 1EP 2.8x3.5mm Pitch 0.8mm (https://www.tme.eu/Document/e9b45b50a6e95508e0645bea5345667a/l5300gj.pdf), Alternate KiCad Library +ST PowerSSO-12 1EP 2.8x3.5mm Pitch 0.8mm +0 +17 +13 +PCM_Package_SO_AKL +ST_PowerSSO-12_ThermalVias +ST PowerSSO-12 1EP 2.8x3.5mm Pitch 0.8mm (https://www.tme.eu/Document/e9b45b50a6e95508e0645bea5345667a/l5300gj.pdf), Alternate KiCad Library +ST PowerSSO-12 1EP 2.8x3.5mm Pitch 0.8mm +0 +27 +13 +PCM_Package_SO_AKL +ST_PowerSSO-12_ThermalVias2 +ST PowerSSO-12 1EP 2.8x3.5mm Pitch 0.8mm (https://www.tme.eu/Document/e9b45b50a6e95508e0645bea5345667a/l5300gj.pdf), Alternate KiCad Library +ST PowerSSO-12 1EP 2.8x3.5mm Pitch 0.8mm +0 +28 +13 +PCM_Package_SO_AKL +ST_PowerSSO-24_SlugDown +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +37 +25 +PCM_Package_SO_AKL +ST_PowerSSO-24_SlugDown_ThermalVias +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +53 +25 +PCM_Package_SO_AKL +ST_PowerSSO-24_SlugDown_ThermalVias2 +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +99 +25 +PCM_Package_SO_AKL +ST_PowerSSO-24_SlugUp +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +24 +24 +PCM_Package_SO_AKL +ST_PowerSSO-36_SlugDown +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +49 +37 +PCM_Package_SO_AKL +ST_PowerSSO-36_SlugDown_ThermalVias +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +65 +37 +PCM_Package_SO_AKL +ST_PowerSSO-36_SlugDown_ThermalVias2 +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +111 +37 +PCM_Package_SO_AKL +ST_PowerSSO-36_SlugUp +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +36 +36 +PCM_Package_SO_AKL +TI_SO-PowerPAD-8 +8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf), Alternate KiCad Library +SSOP 0.50 exposed pad +0 +13 +9 +PCM_Package_SO_AKL +TI_SO-PowerPAD-8_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf, Alternate KiCad Library +HTSOP 1.27 +0 +23 +9 +PCM_Package_SO_AKL +TSOP-5_1.65x3.05mm_P0.95mm +TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf, Alternate KiCad Library +Jedec MO-193C TSOP-5L +0 +5 +5 +PCM_Package_SO_AKL +TSOP-6_1.65x3.05mm_P0.95mm +TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf, Alternate KiCad Library +Jedec MO-193C TSOP-6L +0 +6 +6 +PCM_Package_SO_AKL +TSOP-I-28_11.8x8mm_P0.55mm +TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf), Alternate KiCad Library +TSOP I 28 pins +0 +28 +28 +PCM_Package_SO_AKL +TSOP-I-32_11.8x8mm_P0.5mm +TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library +TSOP-I SO +0 +32 +32 +PCM_Package_SO_AKL +TSOP-I-32_18.4x8mm_P0.5mm +TSOP I, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf, http://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/f32pm25.pdf), Alternate KiCad Library +TSOP I 32 +0 +32 +32 +PCM_Package_SO_AKL +TSOP-I-32_18.4x8mm_P0.5mm_Reverse +TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount, Alternate KiCad Library +TSOP I 32 reverse +0 +32 +32 +PCM_Package_SO_AKL +TSOP-I-48_18.4x12mm_P0.5mm +TSOP I, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf), Alternate KiCad Library +TSOP I 32 +0 +48 +48 +PCM_Package_SO_AKL +TSOP-I-56_18.4x14mm_P0.5mm +TSOP I, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf), Alternate KiCad Library +TSOP I 32 +0 +56 +56 +PCM_Package_SO_AKL +TSOP-II-32_21.0x10.2mm_P1.27mm +32-lead plastic TSOP; Type II, Alternate KiCad Library +TSOP-II 32 +0 +32 +32 +PCM_Package_SO_AKL +TSOP-II-44_10.16x18.41mm_P0.8mm +TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library +TSOP-II SO +0 +44 +44 +PCM_Package_SO_AKL +TSOP-II-54_22.2x10.16mm_P0.8mm +54-lead TSOP typ II package, Alternate KiCad Library +TSOPII TSOP2 +0 +54 +54 +PCM_Package_SO_AKL +TSSOP-8_3x3mm_P0.65mm +TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +8 +8 +PCM_Package_SO_AKL +TSSOP-8_4.4x3mm_P0.65mm +TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +8 +8 +PCM_Package_SO_AKL +TSSOP-10_3x3mm_P0.5mm +TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf), Alternate KiCad Library +SSOP 0.5 +0 +10 +10 +PCM_Package_SO_AKL +TSSOP-14-1EP_4.4x5mm_P0.65mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library +SSOP 0.65 exposed pad +0 +19 +15 +PCM_Package_SO_AKL +TSSOP-14-1EP_4.4x5mm_P0.65mm_EP2.31x2.46mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library +SSOP 0.65 exposed pad +0 +19 +15 +PCM_Package_SO_AKL +TSSOP-14-1EP_4.4x5mm_P0.65mm_EP2.31x2.46mm_ThermalVias +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library +SSOP 0.65 exposed pad +0 +25 +15 +PCM_Package_SO_AKL +TSSOP-14-1EP_4.4x5mm_P0.65mm_EP2.31x2.46mm_ThermalVias2 +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library +SSOP 0.65 exposed pad +0 +34 +15 +PCM_Package_SO_AKL +TSSOP-14-1EP_4.4x5mm_P0.65mm_ThermalVias +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library +SSOP 0.65 exposed pad +0 +29 +15 +PCM_Package_SO_AKL +TSSOP-14-1EP_4.4x5mm_P0.65mm_ThermalVias2 +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library +SSOP 0.65 exposed pad +0 +33 +15 +PCM_Package_SO_AKL +TSSOP-14_4.4x5mm_P0.65mm +TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +14 +14 +PCM_Package_SO_AKL +TSSOP-16-1EP_4.4x5mm_P0.65mm +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf), Alternate KiCad Library +SSOP 0.65 +0 +23 +17 +PCM_Package_SO_AKL +TSSOP-16-1EP_4.4x5mm_P0.65mm_ThermalVias +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf), Alternate KiCad Library +SSOP 0.65 +0 +36 +17 +PCM_Package_SO_AKL +TSSOP-16-1EP_4.4x5mm_P0.65mm_ThermalVias2 +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf), Alternate KiCad Library +SSOP 0.65 +0 +35 +17 +PCM_Package_SO_AKL +TSSOP-16_4.4x5mm_P0.65mm +TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +16 +16 +PCM_Package_SO_AKL +TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.4x3.4mm +TSSOP, 20 Pin with exposed thermal pad, PWP or R-PDSO-G20 (https://www.ti.com/lit/ds/symlink/tlc072.pdf?ts=1640705296384&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTLC072), Alternate KiCad Library +TSSOP SO PWP R-PDSO-G20 +0 +25 +21 +PCM_Package_SO_AKL +TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.4x3.4mm_ThermalVias +TSSOP, 20 Pin with exposed thermal pad, PWP or R-PDSO-G20 (https://www.ti.com/lit/ds/symlink/tlc072.pdf?ts=1640705296384&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTLC072), Alternate KiCad Library +TSSOP SO PWP R-PDSO-G20 +0 +40 +21 +PCM_Package_SO_AKL +TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.4x3.4mm_ThermalVias2 +TSSOP, 20 Pin with exposed thermal pad, PWP or R-PDSO-G20 (https://www.ti.com/lit/ds/symlink/tlc072.pdf?ts=1640705296384&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTLC072), Alternate KiCad Library +TSSOP SO PWP R-PDSO-G20 +0 +46 +21 +PCM_Package_SO_AKL +TSSOP-20_4.4x5mm_P0.5mm +TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +20 +20 +PCM_Package_SO_AKL +TSSOP-20_4.4x6.5mm_P0.65mm +TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +20 +20 +PCM_Package_SO_AKL +TSSOP-24_4.4x5mm_P0.4mm +TSSOP, 24 Pin (JEDEC MO-153 Var CA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +24 +24 +PCM_Package_SO_AKL +TSSOP-24_4.4x6.5mm_P0.5mm +TSSOP, 24 Pin (JEDEC MO-153 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +24 +24 +PCM_Package_SO_AKL +TSSOP-24_4.4x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var AD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +24 +24 +PCM_Package_SO_AKL +TSSOP-24_6.1x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var DA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +24 +24 +PCM_Package_SO_AKL +TSSOP-28-1EP_4.4x9.7mm_P0.65mm +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +39 +29 +PCM_Package_SO_AKL +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_ThermalVias +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +52 +29 +PCM_Package_SO_AKL +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_ThermalVias2 +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf), Alternate KiCad Library +SSOP 0.65 +0 +62 +29 +PCM_Package_SO_AKL +TSSOP-28_4.4x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +28 +28 +PCM_Package_SO_AKL +TSSOP-28_4.4x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +28 +28 +PCM_Package_SO_AKL +TSSOP-28_6.1x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +28 +28 +PCM_Package_SO_AKL +TSSOP-28_6.1x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +28 +28 +PCM_Package_SO_AKL +TSSOP-28_8x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +28 +28 +PCM_Package_SO_AKL +TSSOP-30_4.4x7.8mm_P0.5mm +TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +30 +30 +PCM_Package_SO_AKL +TSSOP-30_6.1x9.7mm_P0.65mm +TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +30 +30 +PCM_Package_SO_AKL +TSSOP-32_4.4x6.5mm_P0.4mm +TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +32 +32 +PCM_Package_SO_AKL +TSSOP-32_6.1x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +32 +32 +PCM_Package_SO_AKL +TSSOP-32_8x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +32 +32 +PCM_Package_SO_AKL +TSSOP-36_4.4x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-36_4.4x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-36_6.1x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-36_6.1x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-36_6.1x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-36_8x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-36_8x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +36 +36 +PCM_Package_SO_AKL +TSSOP-38_4.4x9.7mm_P0.5mm +TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +38 +38 +PCM_Package_SO_AKL +TSSOP-38_6.1x12.5mm_P0.65mm +TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +38 +38 +PCM_Package_SO_AKL +TSSOP-40_6.1x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +40 +40 +PCM_Package_SO_AKL +TSSOP-40_6.1x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +40 +40 +PCM_Package_SO_AKL +TSSOP-40_8x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +40 +40 +PCM_Package_SO_AKL +TSSOP-40_8x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +40 +40 +PCM_Package_SO_AKL +TSSOP-44_4.4x11.2mm_P0.5mm +TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf), Alternate KiCad Library +SSOP 0.5 +0 +44 +44 +PCM_Package_SO_AKL +TSSOP-44_4.4x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +44 +44 +PCM_Package_SO_AKL +TSSOP-44_6.1x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +44 +44 +PCM_Package_SO_AKL +TSSOP-48_4.4x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +48 +48 +PCM_Package_SO_AKL +TSSOP-48_6.1x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +48 +48 +PCM_Package_SO_AKL +TSSOP-48_6.1x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +48 +48 +PCM_Package_SO_AKL +TSSOP-48_8x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +48 +48 +PCM_Package_SO_AKL +TSSOP-48_8x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +48 +48 +PCM_Package_SO_AKL +TSSOP-50_4.4x12.5mm_P0.5mm +TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +50 +50 +PCM_Package_SO_AKL +TSSOP-52_6.1x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +52 +52 +PCM_Package_SO_AKL +TSSOP-52_8x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +52 +52 +PCM_Package_SO_AKL +TSSOP-56_6.1x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +56 +56 +PCM_Package_SO_AKL +TSSOP-56_6.1x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +56 +56 +PCM_Package_SO_AKL +TSSOP-56_8x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +56 +56 +PCM_Package_SO_AKL +TSSOP-56_8x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +56 +56 +PCM_Package_SO_AKL +TSSOP-60_8x12.5mm_P0.4mm +TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +60 +60 +PCM_Package_SO_AKL +TSSOP-64_6.1x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +64 +64 +PCM_Package_SO_AKL +TSSOP-64_6.1x17mm_P0.5mm +TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +64 +64 +PCM_Package_SO_AKL +TSSOP-64_8x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +64 +64 +PCM_Package_SO_AKL +TSSOP-68_8x14mm_P0.4mm +TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +68 +68 +PCM_Package_SO_AKL +TSSOP-80_6.1x17mm_P0.4mm +TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library +TSSOP SO +0 +80 +80 +PCM_Package_SO_AKL +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf), Alternate KiCad Library +HSOP 1.27 +0 +14 +9 +PCM_Package_SO_AKL +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm_ThermalVias +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, thermal vias, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf), Alternate KiCad Library +HSOP 1.27 +0 +23 +9 +PCM_Package_SO_AKL +Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf, Alternate KiCad Library +HTSOP 1.27 +0 +21 +9 +PCM_Package_SO_AKL +Texas_PWP0020A +20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf), Alternate KiCad Library +PWP HTSSOP 0.65mm +0 +25 +21 +PCM_Package_SO_AKL +Texas_PWP0020A_ThermalVias +20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf), Alternate KiCad Library +PWP HTSSOP 0.65mm +0 +35 +21 +PCM_Package_SO_AKL +Texas_PWP0020A_ThermalVias2 +20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf), Alternate KiCad Library +PWP HTSSOP 0.65mm +0 +39 +21 +PCM_Package_SO_AKL +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), Alternate KiCad Library +HSOIC SO +0 +16 +9 +PCM_Package_SO_AKL +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), Alternate KiCad Library +HSOIC SO +0 +23 +9 +PCM_Package_SO_AKL +Texas_R-PDSO-N5 +Plastic Small outline http://www.ti.com/lit/ml/mpds158c/mpds158c.pdf, Alternate KiCad Library +SOT23 R-PDSO-N5 +0 +5 +5 +PCM_Package_SO_AKL +VSO-40_7.6x15.4mm_P0.762mm +VSO40: plastic very small outline package; 40 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot158-1_po.pdf), Alternate KiCad Library +SSOP 0.762 +0 +40 +40 +PCM_Package_SO_AKL +VSO-56_11.1x21.5mm_P0.75mm +VSO56: plastic very small outline package; 56 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot190-1_po.pdf), Alternate KiCad Library +SSOP 0.75 +0 +56 +56 +PCM_Package_SO_AKL +VSSOP-8_2.3x2mm_P0.5mm +VSSOP-8 2.3x2mm Pitch 0.5mm, Alternate KiCad Library +VSSOP-8 2.3x2mm Pitch 0.5mm +0 +8 +8 +PCM_Package_SO_AKL +VSSOP-8_2.4x2.1mm_P0.5mm +http://www.ti.com/lit/ml/mpds050d/mpds050d.pdf, Alternate KiCad Library +VSSOP DCU R-PDSO-G8 Pitch0.5mm +0 +8 +8 +PCM_Package_SO_AKL +VSSOP-8_3.0x3.0mm_P0.65mm +VSSOP-8 3.0 x 3.0, http://www.ti.com/lit/ds/symlink/lm75b.pdf, Alternate KiCad Library +VSSOP-8 3.0 x 3.0 +0 +8 +8 +PCM_Package_SO_AKL +VSSOP-10_3x3mm_P0.5mm +VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), Alternate KiCad Library +VSSOP SO +0 +10 +10 +PCM_Package_SO_AKL +Vishay_PowerPAK_1212-8_Dual +PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf), Alternate KiCad Library +Vishay_PowerPAK_1212-8_Dual +0 +12 +6 +PCM_Package_SO_AKL +Vishay_PowerPAK_1212-8_Single +PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf), Alternate KiCad Library +Vishay PowerPAK 1212-8 Single +0 +11 +5 +PCM_Package_SO_AKL +Vishay_PowerPAK_1212-8_Single_ThermalVias +PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf), Alternate KiCad Library +Vishay PowerPAK 1212-8 Single +0 +15 +5 +PCM_Package_SO_AKL +Zetex_SM8 +Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf), Alternate KiCad Library +Zetex SM8 +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +ATPAK-2 +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF, Alternate KiCad Library +ATPAK +0 +12 +3 +PCM_Package_TO_SOT_SMD_AKL +ATPAK-2_ThermalVias +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF, Alternate KiCad Library +ATPAK +0 +47 +3 +PCM_Package_TO_SOT_SMD_AKL +ATPAK-2_ThermalVias2 +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF, Alternate KiCad Library +ATPAK +0 +76 +3 +PCM_Package_TO_SOT_SMD_AKL +Analog_KS-4 +Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf, Alternate KiCad Library +Analog Devices KS-4 (like EIAJ SC-82) +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +Diodes_SOT-89-5 +Diodes custom 5-pin SOT-89, https://www.diodes.com/assets/Datasheets/AP2112.pdf, Alternate KiCad Library +SOT-89-5 +0 +6 +5 +PCM_Package_TO_SOT_SMD_AKL +Diodes_SOT-553 +Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf, Alternate KiCad Library +SOT-553 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +HVSOF5 +HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf, Alternate KiCad Library +HVSOF5 +0 +10 +5 +PCM_Package_TO_SOT_SMD_AKL +HVSOF6 +HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf, Alternate KiCad Library +HVSOF6 +0 +11 +7 +PCM_Package_TO_SOT_SMD_AKL +HVSOF6_ThermalVias +HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf, Alternate KiCad Library +HVSOF6 +0 +16 +7 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HDSOP-10-1 +Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/), Alternate KiCad Library +hdsop 10 ddpak +0 +10 +10 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HSOF-8-1 +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/), Alternate KiCad Library +mosfet hsof toll +0 +34 +3 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HSOF-8-1_ThermalVias +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/), Alternate KiCad Library +mosfet hsof toll thermal vias +0 +70 +3 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HSOF-8-1_ThermalVias2 +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/), Alternate KiCad Library +mosfet hsof toll thermal vias +0 +110 +3 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HSOF-8-2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/), Alternate KiCad Library +mosfet hsof toll +0 +35 +4 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HSOF-8-2_ThermalVias +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/), Alternate KiCad Library +mosfet hsof toll thermal vias +0 +70 +4 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-HSOF-8-2_ThermalVias2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6), Alternate KiCad Library +mosfet hsof toll thermal vias +0 +110 +4 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-TO-220-7Lead_TabPin8 +Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9, Alternate KiCad Library +Infineon PG-TO-220-7 +0 +24 +8 +PCM_Package_TO_SOT_SMD_AKL +Infineon_PG-TO-220-7Lead_TabPin8_ThermalVias +Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9, Alternate KiCad Library +Infineon PG-TO-220-7 +0 +58 +8 +PCM_Package_TO_SOT_SMD_AKL +LFPAK33 +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf, Alternate KiCad Library +LFPAK33 SOT-1210 +0 +13 +5 +PCM_Package_TO_SOT_SMD_AKL +LFPAK33_ThermalVias +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf, Alternate KiCad Library +LFPAK33 SOT-1210 +0 +17 +5 +PCM_Package_TO_SOT_SMD_AKL +LFPAK33_ThermalVias2 +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf, Alternate KiCad Library +LFPAK33 SOT-1210 +0 +24 +5 +PCM_Package_TO_SOT_SMD_AKL +LFPAK56 +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf, Alternate KiCad Library +LFPAK56 SOT-669 Power-SO8 +0 +15 +5 +PCM_Package_TO_SOT_SMD_AKL +LFPAK56_ThermalVias +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf, Alternate KiCad Library +LFPAK56 SOT-669 Power-SO8 +0 +28 +5 +PCM_Package_TO_SOT_SMD_AKL +LFPAK56_ThermalVias2 +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf, Alternate KiCad Library +LFPAK56 SOT-669 Power-SO8 +0 +33 +5 +PCM_Package_TO_SOT_SMD_AKL +OnSemi_ECH8 +On Semiconductor ECH8, https://www.onsemi.com/pub/Collateral/318BF.PDF, Alternate KiCad Library +ECH8 SOT28-FL SOT-28-FL +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +PQFN_8x8 +Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf, Alternate KiCad Library +pqfn vdfn mosfet +0 +26 +3 +PCM_Package_TO_SOT_SMD_AKL +PQFN_8x8_ThermalVias +Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf, Alternate KiCad Library +pqfn vdfn mosfet +0 +97 +3 +PCM_Package_TO_SOT_SMD_AKL +PQFN_8x8_ThermalVias2 +Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf, Alternate KiCad Library +pqfn vdfn mosfet +0 +57 +3 +PCM_Package_TO_SOT_SMD_AKL +PowerMacro_M234_BECE_NoHole +TO-50-4 Power Macro Package Style M234, Alternate KiCad Library +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +PowerMacro_M234_BECE_WithHole +TO-50-4 Power Macro Package Style M234, Alternate KiCad Library +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +PowerMacro_M234_NoHole +TO-50-4 Power Macro Package Style M234, Alternate KiCad Library +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +PowerMacro_M234_WithHole +TO-50-4 Power Macro Package Style M234, Alternate KiCad Library +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +Rohm_HRP7 +Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf, Alternate KiCad Library +Rohm HRP7 SMD +0 +24 +7 +PCM_Package_TO_SOT_SMD_AKL +Rohm_HRP7_ThermalVias +Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf, Alternate KiCad Library +Rohm HRP7 SMD +0 +81 +7 +PCM_Package_TO_SOT_SMD_AKL +SC-59 +SC-59, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg, Alternate KiCad Library +SC-59 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SC-59_BigPads +SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg, Alternate KiCad Library +SC-59 hand-soldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SC-59_Handsoldering +SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg, Alternate KiCad Library +SC-59 hand-soldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SC-70-8 +SC70-8, Alternate KiCad Library +SC70-8 +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SC-70-8_BigPads +SC70-8, Handsoldering, Alternate KiCad Library +SC70-8 Handsoldering +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SC-70-8_Handsoldering +SC70-8, Handsoldering, Alternate KiCad Library +SC70-8 Handsoldering +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SC-82AA +SC-82AA, Alternate KiCad Library +SC-82AA +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SC-82AA_BigPads +SC-82AA, Alternate KiCad Library +SC-82AA +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SC-82AA_Handsoldering +SC-82AA, Alternate KiCad Library +SC-82AA +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SC-82AB +SC-82AB, Alternate KiCad Library +SC-82AB +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SC-82AB_BigPads +SC-82AB, Alternate KiCad Library +SC-82AB +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SC-82AB_Handsoldering +SC-82AB, Alternate KiCad Library +SC-82AB +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-23 +SOT-23, Standard, Alternate KiCad Library +SOT-23 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-5 +5-pin SOT23 package, Alternate KiCad Library +SOT-23-5 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-5_BigPads +5-pin SOT23 package, Alternate KiCad Library +SOT-23-5 hand-soldering +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-5_HandSoldering +5-pin SOT23 package, Alternate KiCad Library +SOT-23-5 hand-soldering +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-6 +6-pin SOT-23 package, Alternate KiCad Library +SOT-23-6 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-6_BigPads +6-pin SOT-23 package, Handsoldering, Alternate KiCad Library +SOT-23-6 Handsoldering +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-6_Handsoldering +6-pin SOT-23 package, Handsoldering, Alternate KiCad Library +SOT-23-6 Handsoldering +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-8 +8-pin SOT-23 package, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf, Alternate KiCad Library +SOT-23-8 +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-8_BigPads +8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf, Alternate KiCad Library +SOT-23-8 Handsoldering +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SOT-23-8_Handsoldering +8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf, Alternate KiCad Library +SOT-23-8 Handsoldering +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SOT-23W +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3, Alternate KiCad Library +SOT-23W +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-23W_BigPads +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3, Alternate KiCad Library +SOT-23W for handsoldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-23W_Handsoldering +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3, Alternate KiCad Library +SOT-23W for handsoldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-23_BigPads +SOT-23, Handsoldering, Alternate KiCad Library +SOT-23 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-23_Handsoldering +SOT-23, Handsoldering, Alternate KiCad Library +SOT-23 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-89-3 +SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf, Alternate KiCad Library +SOT-89-3 +0 +4 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-89-3_BigPads +SOT-89-3 Handsoldering, Alternate KiCad Library +SOT-89-3 Handsoldering +0 +4 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-89-3_Handsoldering +SOT-89-3 Handsoldering, Alternate KiCad Library +SOT-89-3 Handsoldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-89-5 +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf, Alternate KiCad Library +SOT-89-5 +0 +10 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-89-5_BigPads +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf, Alternate KiCad Library +SOT-89-5 +0 +10 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-89-5_Handsoldering +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf, Alternate KiCad Library +SOT-89-5 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-143 +SOT-143, Alternate KiCad Library +SOT-143 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-143R_Reverse +SOT-143R Reverse, Alternate KiCad Library +SOT-143R Reverse +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-143R_Reverse_BigPads +SOT-143R Reverse Handsoldering, Alternate KiCad Library +SOT-143 Reverse Handsoldering +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-143R_Reverse_Handsoldering +SOT-143R Reverse Handsoldering, Alternate KiCad Library +SOT-143 Reverse Handsoldering +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-143_BigPads +SOT-143 Handsoldering, Alternate KiCad Library +SOT-143 Handsoldering +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-143_Handsoldering +SOT-143 Handsoldering, Alternate KiCad Library +SOT-143 Handsoldering +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-223 +module CMS SOT223 4 pins, Alternate KiCad Library +CMS SOT +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-223-3_TabPin2 +module CMS SOT223 4 pins, Alternate KiCad Library +CMS SOT +0 +4 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-223-5 +module CMS SOT223 5 pins, http://ww1.microchip.com/downloads/en/DeviceDoc/51751a.pdf, Alternate KiCad Library +CMS SOT +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-223-6 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf, Alternate KiCad Library +CMS SOT +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-223-6_TabPin3 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf, Alternate KiCad Library +CMS SOT +0 +6 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-223-8 +module CMS SOT223 8 pins, https://www.diodes.com/assets/Datasheets/ZXSBMR16PT8.pdf, Alternate KiCad Library +CMS SOT +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SOT-323_SC-70 +SOT-323, SC-70, Alternate KiCad Library +SOT-323 SC-70 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-323_SC-70_BigPads +SOT-323, SC-70 Handsoldering, Alternate KiCad Library +SOT-323 SC-70 Handsoldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-323_SC-70_Handsoldering +SOT-323, SC-70 Handsoldering, Alternate KiCad Library +SOT-323 SC-70 Handsoldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-343_SC-70-4 +SOT-343, SC-70-4, Alternate KiCad Library +SOT-343 SC-70-4 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-343_SC-70-4_BigPads +SOT-343, SC-70-4, Handsoldering, Alternate KiCad Library +SOT-343 SC-70-4 Handsoldering +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-343_SC-70-4_Handsoldering +SOT-343, SC-70-4, Handsoldering, Alternate KiCad Library +SOT-343 SC-70-4 Handsoldering +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-353_SC-70-5 +SOT-353, SC-70-5, Alternate KiCad Library +SOT-353 SC-70-5 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-353_SC-70-5_BigPads +SOT-353, SC-70-5, Handsoldering, Alternate KiCad Library +SOT-353 SC-70-5 Handsoldering +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-353_SC-70-5_Handsoldering +SOT-353, SC-70-5, Handsoldering, Alternate KiCad Library +SOT-353 SC-70-5 Handsoldering +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-363_SC-70-6 +SOT-363, SC-70-6, Alternate KiCad Library +SOT-363 SC-70-6 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-363_SC-70-6_BigPads +SOT-363, SC-70-6, Handsoldering, Alternate KiCad Library +SOT-363 SC-70-6 Handsoldering +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-363_SC-70-6_Handsoldering +SOT-363, SC-70-6, Handsoldering, Alternate KiCad Library +SOT-363 SC-70-6 Handsoldering +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-383F +8-pin SOT-383F, http://www.mouser.com/ds/2/80/CPDVR085V0C-HF-RevB-10783.pdf, Alternate KiCad Library +SOT-383F +0 +11 +9 +PCM_Package_TO_SOT_SMD_AKL +SOT-383FL +8-pin SOT-383FL package, http://www.onsemi.com/pub_link/Collateral/ENA2267-D.PDF, Alternate KiCad Library +SOT-383FL +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +SOT-416 +SOT-416, https://www.nxp.com/docs/en/package-information/SOT416.pdf, Alternate KiCad Library +SOT-416 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-523 +SOT523, https://www.diodes.com/assets/Package-Files/SOT523.pdf, Alternate KiCad Library +SOT-523 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-543 +SOT-543 4 lead surface package, Alternate KiCad Library +SOT-543 SC-107A EMD4 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +SOT-553 +SOT553, Alternate KiCad Library +SOT-553 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-563 +SOT563, Alternate KiCad Library +SOT-563 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-665 +SOT665, Alternate KiCad Library +SOT-665 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +SOT-666 +SOT666, Alternate KiCad Library +SOT-666 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-723 +http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV, Alternate KiCad Library +sot 723 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-883 +SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf, Alternate KiCad Library +SOT-883 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-886 +SOT-886, Alternate KiCad Library +SOT-886 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-963 +SOT 963 6 pins package 1x0.8mm pitch 0.35mm, Alternate KiCad Library +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SOT-1123 +SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF), Alternate KiCad Library +SOT-1123 transistor +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SOT-1333-1 +SOT-1333-1 , Alternate KiCad Library +SOT-1333-1 +0 +9 +9 +PCM_Package_TO_SOT_SMD_AKL +SOT-1334-1 +SOT-1334-1, Alternate KiCad Library +SOT-1334-1 +0 +14 +14 +PCM_Package_TO_SOT_SMD_AKL +SuperSOT-3 +3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf, Alternate KiCad Library +SuperSOT-3 SSOT-3 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +SuperSOT-6 +6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf, Alternate KiCad Library +SuperSOT-6 SSOT-6 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +SuperSOT-8 +8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf, Alternate KiCad Library +SuperSOT-8 SSOT-8 +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +TDSON-8-1 +Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/), Alternate KiCad Library +tdson +0 +18 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_LongPad-NoHole_BEC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_LongPad-NoHole_EBC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_LongPad-NoHole_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_LongPad-WithHole_BEC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_LongPad-WithHole_EBC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_LongPad-WithHole_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_ShortPad-NoHole_BEC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_ShortPad-NoHole_EBC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_ShortPad-NoHole_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_ShortPad-WithHole_BEC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_ShortPad-WithHole_EBC_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-3_ShortPad-WithHole_Housing +TO-50-3 Macro T Package Style M236, Alternate KiCad Library +TO-50-3 Macro T Package Style M236 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_LongPad-NoHole_BECE_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_LongPad-NoHole_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_LongPad-WithHole_BECE_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_LongPad-WithHole_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_ShortPad-NoHole_BECE_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_ShortPad-NoHole_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_ShortPad-WithHole_BECE_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-50-4_ShortPad-WithHole_Housing +TO-50-4 Macro X Package Style M238, Alternate KiCad Library +TO-50-4 Macro X Package Style M238 +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-252-2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +12 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-252-2_TabPin1 +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf, Alternate KiCad Library +TO-252-2 diode +0 +12 +2 +PCM_Package_TO_SOT_SMD_AKL +TO-252-2_TabPin1_ThermalVias +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf, Alternate KiCad Library +TO-252-2 diode +0 +65 +2 +PCM_Package_TO_SOT_SMD_AKL +TO-252-2_TabPin1_ThermalVias2 +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf, Alternate KiCad Library +TO-252-2 diode +0 +68 +2 +PCM_Package_TO_SOT_SMD_AKL +TO-252-2_ThermalVias +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +65 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-252-2_ThermalVias2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +68 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-252-3_TabPin2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +13 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-252-3_TabPin2_ThermalVias +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +66 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-252-3_TabPin2_ThermalVias2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +69 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-252-3_TabPin4 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +13 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-252-3_TabPin4_ThermalVias +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +66 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-252-3_TabPin4_ThermalVias2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +69 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-252-4 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +14 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-4_1.27mm +TO-252 / DPAK SMD package, 1.27mm pin pitch instead of the standard 1.14mm, https://fscdn.rohm.com/en/techdata_basic/ic/package/to252-5_1-e.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +14 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-4_1.27mm_ThermalVias +TO-252 / DPAK SMD package, 1.27mm pin pitch instead of the standard 1.14mm, https://fscdn.rohm.com/en/techdata_basic/ic/package/to252-5_1-e.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +67 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-4_1.27mm_ThermalVias2 +TO-252 / DPAK SMD package, 1.27mm pin pitch instead of the standard 1.14mm, https://fscdn.rohm.com/en/techdata_basic/ic/package/to252-5_1-e.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +70 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-4_ThermalVias +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +67 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-4_ThermalVias2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +70 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_1.27mm_TabPin3 +TO-252 / DPAK SMD package, uses 1.27mm instead of the standard 1.14mm pin pitch, https://www.diodes.com/assets/Package-Image/TO252-5.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +15 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_1.27mm_TabPin3_ThermalVias +TO-252 / DPAK SMD package, uses 1.27mm instead of the standard 1.14mm pin pitch, https://www.diodes.com/assets/Package-Image/TO252-5.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +68 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_1.27mm_TabPin3_ThermalVias2 +TO-252 / DPAK SMD package, uses 1.27mm instead of the standard 1.14mm pin pitch, https://www.diodes.com/assets/Package-Image/TO252-5.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +71 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_1.27mm_TabPin6 +TO-252 / DPAK SMD package, uses 1.27mm instead of the standard 1.14mm, https://www.diodes.com/assets/Package-Image/TO252-5.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +15 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_1.27mm_TabPin6_ThermalVias +TO-252 / DPAK SMD package, uses 1.27mm instead of the standard 1.14mm, https://www.diodes.com/assets/Package-Image/TO252-5.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +68 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_1.27mm_TabPin6_ThermalVias2 +TO-252 / DPAK SMD package, uses 1.27mm instead of the standard 1.14mm, https://www.diodes.com/assets/Package-Image/TO252-5.pdf, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +71 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_TabPin3 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +15 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_TabPin3_ThermalVias +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +68 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_TabPin3_ThermalVias2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +71 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_TabPin6 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +15 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_TabPin6_ThermalVias +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +68 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-252-5_TabPin6_ThermalVias2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library +DPAK TO-252 DPAK-5 TO-252-5 +0 +71 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-263-2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +19 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-263-2_TabPin1 +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +19 +2 +PCM_Package_TO_SOT_SMD_AKL +TO-263-2_TabPin1_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +76 +2 +PCM_Package_TO_SOT_SMD_AKL +TO-263-2_TabPin1_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +96 +2 +PCM_Package_TO_SOT_SMD_AKL +TO-263-2_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +76 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-263-2_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +96 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-263-3_TabPin2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +20 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-263-3_TabPin2_ThermalVas +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +77 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-263-3_TabPin2_ThermalVas2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +97 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-263-3_TabPin4 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +20 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-263-3_TabPin4_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +77 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-263-3_TabPin4_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +97 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-263-4 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +21 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-263-4_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +78 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-263-4_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +98 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-263-5_TabPin3 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +22 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-263-5_TabPin3_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +79 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-263-5_TabPin3_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +99 +5 +PCM_Package_TO_SOT_SMD_AKL +TO-263-5_TabPin6 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +22 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-263-5_TabPin6_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +79 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-263-5_TabPin6_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +99 +6 +PCM_Package_TO_SOT_SMD_AKL +TO-263-6 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +23 +7 +PCM_Package_TO_SOT_SMD_AKL +TO-263-6_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +80 +7 +PCM_Package_TO_SOT_SMD_AKL +TO-263-6_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +100 +7 +PCM_Package_TO_SOT_SMD_AKL +TO-263-7_TabPin4 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +24 +7 +PCM_Package_TO_SOT_SMD_AKL +TO-263-7_TabPin4_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +81 +7 +PCM_Package_TO_SOT_SMD_AKL +TO-263-7_TabPin4_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +101 +7 +PCM_Package_TO_SOT_SMD_AKL +TO-263-7_TabPin8 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +24 +8 +PCM_Package_TO_SOT_SMD_AKL +TO-263-7_TabPin8_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +81 +8 +PCM_Package_TO_SOT_SMD_AKL +TO-263-7_TabPin8_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +101 +8 +PCM_Package_TO_SOT_SMD_AKL +TO-263-9_TabPin5 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +26 +9 +PCM_Package_TO_SOT_SMD_AKL +TO-263-9_TabPin5_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +83 +9 +PCM_Package_TO_SOT_SMD_AKL +TO-263-9_TabPin5_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +103 +9 +PCM_Package_TO_SOT_SMD_AKL +TO-263-9_TabPin10 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +26 +10 +PCM_Package_TO_SOT_SMD_AKL +TO-263-9_TabPin10_ThermalVias +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +83 +10 +PCM_Package_TO_SOT_SMD_AKL +TO-263-9_TabPin10_ThermalVias2 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +103 +10 +PCM_Package_TO_SOT_SMD_AKL +TO-268-2 +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf, Alternate KiCad Library +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +23 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-268-2_ThermalVias +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf, Alternate KiCad Library +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +202 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-268-2_ThermalVias2 +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf, Alternate KiCad Library +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +262 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-269AA +SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library +TO-269AA MBS diode bridge +0 +4 +4 +PCM_Package_TO_SOT_SMD_AKL +TO-277A +Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf, Alternate KiCad Library +TO-277A SMPC +0 +12 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-277A_ThermalVias +Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf, Alternate KiCad Library +TO-277A SMPC +0 +29 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-277B +TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf, Alternate KiCad Library +TO-277B +0 +9 +3 +PCM_Package_TO_SOT_SMD_AKL +TO-277B_ThermalVias +TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf, Alternate KiCad Library +TO-277B +0 +22 +3 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23 +3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf, Alternate KiCad Library +TSOT-23 +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-5 +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library +TSOT-23-5 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-5_BigPads +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library +TSOT-23-5 Hand-soldering +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-5_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library +TSOT-23-5 Hand-soldering +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-6 +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf, Alternate KiCad Library +TSOT-23-6 MK06A TSOT-6 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-6_BigPads +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf, Alternate KiCad Library +TSOT-23-6 MK06A TSOT-6 Hand-soldering +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-6_HandSoldering +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf, Alternate KiCad Library +TSOT-23-6 MK06A TSOT-6 Hand-soldering +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-8 +8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf, Alternate KiCad Library +TSOT-23-8 +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-8_BigPads +8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf, Alternate KiCad Library +TSOT-23-8 Hand-soldering +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23-8_HandSoldering +8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf, Alternate KiCad Library +TSOT-23-8 Hand-soldering +0 +8 +8 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23_BigPads +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library +TSOT-23 Hand-soldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +TSOT-23_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library +TSOT-23 Hand-soldering +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +Texas_DRT-3 +Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf, Alternate KiCad Library +DRT-3 1x0.8mm Pitch 0.7mm +0 +3 +3 +PCM_Package_TO_SOT_SMD_AKL +Texas_NDQ +Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf), Alternate KiCad Library +ti pfm dap +0 +18 +6 +PCM_Package_TO_SOT_SMD_AKL +Texas_NDY0011A +TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf, Alternate KiCad Library +Texas TO-PMOD NDY00011A +0 +42 +12 +PCM_Package_TO_SOT_SMD_AKL +Texas_R-PDSO-G6 +R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf, Alternate KiCad Library +R-PDSO-G6 SC-70-6 +0 +6 +6 +PCM_Package_TO_SOT_SMD_AKL +VSOF5 +VSOF5, Alternate KiCad Library +VSOF5 +0 +5 +5 +PCM_Package_TO_SOT_SMD_AKL +Vishay_PowerPAK_SC70-6L_Dual +Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf, Alternate KiCad Library +powerpak sc70 sc-70 dual +0 +10 +6 +PCM_Package_TO_SOT_SMD_AKL +Vishay_PowerPAK_SC70-6L_Single +Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf, Alternate KiCad Library +powerpak sc70 sc-70 +0 +14 +3 +PCM_Package_TO_SOT_THT_AKL +Fairchild_TO-220F-6L +Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf, Alternate KiCad Library +Fairchild TO-220F-6L +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +Heraeus_TO-92-2 +TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf), Alternate KiCad Library +to-92 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +NEC_Molded_7x4x9mm +Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf, Alternate KiCad Library +Japan transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +PowerIntegrations_TO-220-7C +Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf, Alternate KiCad Library +Power Integration Y Package +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +SIPAK-1EP_Horizontal_TabDown +SIPAK, Horizontal, RM 2.286mm, Alternate KiCad Library +SIPAK Horizontal RM 2.286mm +0 +13 +4 +PCM_Package_TO_SOT_THT_AKL +SIPAK_Vertical +SIPAK, Vertical, RM 2.286mm, Alternate KiCad Library +SIPAK Vertical RM 2.286mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOD-70_P2.54mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf, Alternate KiCad Library +Sod-70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +SOD-70_P5.08mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf , Alternate KiCad Library +Sod-70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +SOT-25 +SOT-25 drill 0.9mm (see https://www.web-bcs.com/pdf/SH/BC/BC148.pdf), Alternate KiCad Library +SOT-25 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-25_C_B_E +SOT-25 drill 0.9mm (see https://www.web-bcs.com/pdf/SH/BC/BC148.pdf), Alternate KiCad Library +SOT-25 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-25_C_E_B +SOT-25 drill 0.9mm (see https://www.web-bcs.com/pdf/SH/BC/BC148.pdf), Alternate KiCad Library +SOT-25 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-33 +SOT-33 drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-33_C_B_E +SOT-33 drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-33_C_E_B +SOT-33 drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-33_Inline +SOT-33 leads in-line, drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 inline transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-33_Inline_AKA +SOT-33 leads in-line, drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 inline transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +SOT-227 +SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf), Alternate KiCad Library +sot 227 isotop +0 +8 +4 +PCM_Package_TO_SOT_THT_AKL +TO-3 +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3-8_Isolated +TO-3 8-Pin Metal Can Power Package, Alternate KiCad Library +TO-3 TO3 TO-204 +0 +10 +8 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabDown +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabDown_BCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabDown_GCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabDown_GDS +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabDown_KAG +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabUp +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabUp_BCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabUp_GCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabUp_GDS +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Horizontal_TabUp_KAG +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Vertical +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Vertical_BCE +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Vertical_GCE +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Vertical_GDS +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3P-3_Vertical_KAG +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Horizontal_TabDown +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Horizontal_TabDown_BCE +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Horizontal_TabDown_GDS +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Horizontal_TabUp +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Horizontal_TabUp_BCE +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Horizontal_TabUp_GDS +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Vertical +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Vertical_BCE +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PB-3_Vertical_GDS +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-2_Horizontal_TabDown +TO-3PF-2, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Horizontal RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-2_Horizontal_TabDown_KA +TO-3PF-2, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Horizontal RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-2_Horizontal_TabUp +TO-3PF-2, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Horizontal RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-2_Horizontal_TabUp_KA +TO-3PF-2, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Horizontal RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-2_Vertical +TO-3PF-2, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Vertical RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-2_Vertical_KA +TO-3PF-2, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Vertical RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabDown +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabDown_BCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabDown_GCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabDown_GDS +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabUp +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabUp_BCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabUp_GCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Horizontal_TabUp_GDS +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Vertical +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Vertical_BCE +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Vertical_GCE +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3PF-3_Vertical_GDS +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3_BEC +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3_BigPads +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3_BigPads_BEC +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3_BigPads_GSD +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-3_GSD +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-2 +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_AK +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_BigPads +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_BigPads_AK +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_BigPads_KA +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_KA +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_Window +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_Window_AK +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_Window_BigPads +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_Window_BigPads_AK +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_Window_BigPads_KA +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-2_Window_KA +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-5-3 +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_BigPads +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_BigPads_EBC +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_EBC +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_Window +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_Window_BigPads +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_Window_BigPads_EBC +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-3_Window_EBC +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-5-4 +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-5-4_BigPads +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-5-4_BigPads_EBC +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-5-4_EBC +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-5-4_Window +TO-5-4_Window, Window, Alternate KiCad Library +TO-5-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-5-4_Window_BigPads +TO-5-4_Window, Window, Alternate KiCad Library +TO-5-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-5-6 +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-5-6_BigPads +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-5-6_BigPads_CBE-EBC +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-5-6_CBE-EBC +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-5-6_Window +TO-5-6_Window, Window, Alternate KiCad Library +TO-5-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-5-6_Window_BigPads +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-5-8 +TO-5-8, Alternate KiCad Library +TO-5-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-5-8_PD5.08 +TO-5-8_PD5.08, Alternate KiCad Library +TO-5-8_PD5.08 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-5-8_PD5.08_Window +TO-5-8_PD5.08_Window, Window, Alternate KiCad Library +TO-5-8_PD5.08_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-5-8_Window +TO-5-8_Window, Window, Alternate KiCad Library +TO-5-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-5-10 +TO-5-10, Alternate KiCad Library +TO-5-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-5-10_Window +TO-5-10_Window, Window, Alternate KiCad Library +TO-5-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-8-2 +TO-8-2, Alternate KiCad Library +TO-8-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-8-2_Window +TO-8-2_Window, Window, Alternate KiCad Library +TO-8-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-8-3 +TO-8-3, Alternate KiCad Library +TO-8-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-8-3_Window +TO-8-3_Window, Window, Alternate KiCad Library +TO-8-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-11-2 +TO-11-2, Alternate KiCad Library +TO-11-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-11-2_Window +TO-11-2_Window, Window, Alternate KiCad Library +TO-11-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-11-3 +TO-11-3, Alternate KiCad Library +TO-11-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-11-3_Window +TO-11-3_Window, Window, Alternate KiCad Library +TO-11-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-12-4 +TO-12-4, Alternate KiCad Library +TO-12-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-12-4_Window +TO-12-4_Window, Window, Alternate KiCad Library +TO-12-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-17-4 +TO-17-4, Alternate KiCad Library +TO-17-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-17-4_Window +TO-17-4_Window, Window, Alternate KiCad Library +TO-17-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-2 +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_AK +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_BigPads +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_BigPads_AK +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_BigPads_KA +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_BigPads_Zener +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_KA +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Lens +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Lens_AK +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Lens_KA +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Window +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Window_AK +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Window_KA +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-2_Zener +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-18-3 +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_BigPads +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_BigPads_EBC +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_BigPads_SDG +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_BigPads_SGD +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_Board +TO-18-3 Mounted through a board, Alternate KiCad Library +TO-18-3 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_Board_EBC +TO-18-3 Mounted through a board, BJT connections, Alternate KiCad Library +TO-18-3 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_Board_SDG +TO-18-3 Mounted through a board, FET connections, Alternate KiCad Library +TO-18-3 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_EBC +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_Lens +TO-18-3_Lens, Lens, Alternate KiCad Library +TO-18-3_Lens Lens +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_SDG +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_SGD +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-3_Window +TO-18-3_Window, Window, Alternate KiCad Library +TO-18-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-18-4 +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-4_Bigpads +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-4_Bigpads_EBC +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-4_EBC +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-4_Lens +TO-18-4_Lens, Lens, Alternate KiCad Library +TO-18-4_Lens Lens +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-18-4_Window +TO-18-4_Window, Window, Alternate KiCad Library +TO-18-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-33-4 +TO-33-4, Alternate KiCad Library +TO-33-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-33-4_Window +TO-33-4_Window, Window, Alternate KiCad Library +TO-33-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-38-2 +TO-38-2, Alternate KiCad Library +TO-38-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-38-2_Window +TO-38-2_Window, Window, Alternate KiCad Library +TO-38-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-38-3 +TO-38-3, Alternate KiCad Library +TO-38-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-38-3_Window +TO-38-3_Window, Window, Alternate KiCad Library +TO-38-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-2 +TO-39-2, Alternate KiCad Library +TO-39-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-39-2_Window +TO-39-2_Window, Window, Alternate KiCad Library +TO-39-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-39-3 +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_BigPads +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_BigPads_EBC +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_BigPads_SGD +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_Board +TO-39-3 Mounted through a board, Alternate KiCad Library +TO-39-3 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_Board_EBC +TO-39-3 Mounted through a board, BJT connections, Alternate KiCad Library +TO-39-3 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_EBC +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_SDG +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_SGD +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_Window +TO-39-3_Window, Window, Alternate KiCad Library +TO-39-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-3_Window_EBC +TO-39-3_Window, Window, Alternate KiCad Library +TO-39-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-39-4 +TO-39-4, Alternate KiCad Library +TO-39-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-39-4_Window +TO-39-4_Window, Window, Alternate KiCad Library +TO-39-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-39-6 +TO-39-6, Alternate KiCad Library +TO-39-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-39-6_Window +TO-39-6_Window, Window, Alternate KiCad Library +TO-39-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-39-8 +TO-39-8, Alternate KiCad Library +TO-39-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-39-8_Window +TO-39-8_Window, Window, Alternate KiCad Library +TO-39-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-39-10 +TO-39-10, Alternate KiCad Library +TO-39-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-39-10_Window +TO-39-10_Window, Window, Alternate KiCad Library +TO-39-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-46-2 +TO-46-2, Alternate KiCad Library +TO-46-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-46-2_Pin2Center +TO-46-2, Pin2 at center of package, Thorlabs photodiodes, Alternate KiCad Library +TO-46-2 Thorlabs +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-46-2_Pin2Center_Window +TO-46-2, Pin2 at center of package, Thorlabs photodiodes, Alternate KiCad Library +TO-46-2 Thorlabs +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-46-2_Window +TO-46-2_Window, Window, Alternate KiCad Library +TO-46-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-46-3 +TO-46-3, Alternate KiCad Library +TO-46-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-46-3_Pin2Center +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf, Alternate KiCad Library +TO-46-3 Thorlabs +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-46-3_Pin2Center_Window +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf, Alternate KiCad Library +TO-46-3 Thorlabs +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-46-3_Window +TO-46-3_Window, Window, Alternate KiCad Library +TO-46-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-46-4 +TO-46-4, Alternate KiCad Library +TO-46-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-46-4_BigPads +TO-46-4, Alternate KiCad Library +TO-46-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-46-4_ThermalShield +TO-46-4 with LM399 thermal shield, https://www.tme.eu/Document/af285c6dd18bf8b2f9c0aa8c89d237e3/lm399ah.pdf, Alternate KiCad Library +TO-46-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-46-4_ThermalShield_BigPads +TO-46-4 with LM399 thermal shield, https://www.tme.eu/Document/af285c6dd18bf8b2f9c0aa8c89d237e3/lm399ah.pdf, Alternate KiCad Library +TO-46-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-46-4_Window +TO-46-4_Window, Window, Alternate KiCad Library +TO-46-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-46-4_Window_BigPads +TO-46-4_Window, Window, Alternate KiCad Library +TO-46-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-52-2 +TO-52-2, Alternate KiCad Library +TO-52-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-52-2_Window +TO-52-2_Window, Window, Alternate KiCad Library +TO-52-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-52-3 +TO-52-3, Alternate KiCad Library +TO-52-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-52-3_Window +TO-52-3_Window, Window, Alternate KiCad Library +TO-52-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-66 +TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library +TO-66 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-66_BEC +TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library +TO-66 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL +TO-71-6 +TO-71-6, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-71-6_BigPads +TO-71-6, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-71-6_BigPads_SDG-SDG +TO-71-6, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-71-6_SDG-SDG +TO-71-6, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-71-8 +TO-71-8, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-71-8_BigPads +TO-71-8, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-72-4 +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_BigPads +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_BigPads_DGGS +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_BigPads_EBC +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_BigPads_SDG +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_Board +TO-72-4 Mounted through a board, Alternate KiCad Library +TO-72-4 +0 +5 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_Board_DGGS +TO-72-4 Mounted through a board, Dual Gate FET connections, Alternate KiCad Library +TO-72-4 +0 +5 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_Board_EBC +TO-72-4 Mounted through a board, BJT connections, Alternate KiCad Library +TO-72-4 +0 +5 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_DGGS +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_EBC +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_SDG +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-72-4_Window +TO-72-4_Window, Window, Alternate KiCad Library +TO-72-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-75-6 +TO-75-6, Alternate KiCad Library +TO-75-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-75-6_Window +TO-75-6_Window, Window, Alternate KiCad Library +TO-75-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-6 +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-6_BigPads +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-6_BigPads_CBE-EBC +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-6_CBE-EBC +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-6_Window +TO-78-6_Window, Window, Alternate KiCad Library +TO-78-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-6_Window_BigPads +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-78-8 +TO-78-8, Alternate KiCad Library +TO-78-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-78-8_Window +TO-78-8_Window, Window, Alternate KiCad Library +TO-78-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-78-10 +TO-78-10, Alternate KiCad Library +TO-78-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-78-10_Window +TO-78-10_Window, Window, Alternate KiCad Library +TO-78-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-92 +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92-2 +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_AK +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Horizontal1 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Horizontal1_KA +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Horizontal2 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Horizontal2_KA +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_KA +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Wide +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Wide_AK +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92-2_Wide_KA +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92Flat +TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf), Alternate KiCad Library +to-92Flat hall sensor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Narrow transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Narrow transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_HandSolder +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_Inline +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_Inline_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_Inline_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_Inline_Wide_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92L_Wide_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92Mini-2 +TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf), Alternate KiCad Library +to-92Mini transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92S +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92S-2 +TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-92S_ECB +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92S_Wide +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +TO-92S_Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92S_Wide_ECB +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +TO-92S_Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_CBE +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_CEB +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_DGS +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_DSG +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_EBC +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_ECB +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_GDS +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_GSD +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_HandSolder +TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Horizontal1 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Horizontal2 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_CBE +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_CEB +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_DGS +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_DSG +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_EBC +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_ECB +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_GDS +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_GSD +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Horizontal1 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Horizontal2 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_SDG +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_SGD +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_CBE +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_CEB +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_DGS +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_DSG +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_EBC +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_ECB +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_GDS +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_GSD +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_SDG +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Inline_Wide_SGD +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_SDG +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_SGD +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_CBE +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_CEB +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_DGS +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_DSG +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_EBC +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_ECB +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_GDS +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_GSD +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_SDG +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-92_Wide_SGD +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-99-6 +TO-99-6, Alternate KiCad Library +TO-99-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-99-6_Window +TO-99-6_Window, Window, Alternate KiCad Library +TO-99-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL +TO-99-8 +TO-99-8, Alternate KiCad Library +TO-99-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-99-8_BigPads +TO-99-8, Alternate KiCad Library +TO-99-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-99-8_Window +TO-99-8_Window, Window, Alternate KiCad Library +TO-99-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-99-8_Window_BigPads +TO-99-8, Alternate KiCad Library +TO-99-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-100-10 +TO-100-10, Alternate KiCad Library +TO-100-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-100-10_BigPads +TO-100-10, Alternate KiCad Library +TO-100-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-100-10_Window +TO-100-10_Window, Window, Alternate KiCad Library +TO-100-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-100-10_Window_BigPads +TO-100-10, Alternate KiCad Library +TO-100-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL +TO-126-2_Horizontal_TabDown +TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-126-2_Horizontal_TabUp +TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-126-2_Vertical +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-126-2_Vertical_KA +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-126-2_Vertical_Zener +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabDown +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabDown_AAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabDown_BCE +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabDown_ECB +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabDown_KAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabUp +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabUp_AAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabUp_BCE +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabUp_ECB +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Horizontal_TabUp_KAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Vertical +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Vertical_AAG +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Vertical_BCE +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Vertical_ECB +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-126-3_Vertical_KAG +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Down +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Down_BCE +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Tabless_Down +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Tabless_Down_KAG +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Tabless_Up +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Tabless_Up_KAG +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Up +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Horizontal_Up_BCE +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Vertical +TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Vertical_BCE +TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Vertical_Tabless +TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm Tabless +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-202-3_Vertical_Tabless_KAG +TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm Tabless +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-2_Horizontal_TabDown +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-218-2_Horizontal_TabDown_KA +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-218-2_Horizontal_TabUp +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-218-2_Horizontal_TabUp_KA +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-218-2_Vertical +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-218-2_Vertical_KA +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabDown +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabDown_AAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabDown_AKA +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabDown_BCE +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabDown_GDS +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabDown_KAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabUp +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabUp_AAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabUp_AKA +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabUp_BCE +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabUp_GDS +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Horizontal_TabUp_KAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Vertical +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Vertical_AAG +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Vertical_AKA +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Vertical_BCE +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Vertical_GDS +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-218-3_Vertical_KAG +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-2_Horizontal_TabDown +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220-2_Horizontal_TabDown_KA +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220-2_Horizontal_TabUp +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220-2_Horizontal_TabUp_KA +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220-2_Vertical +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220-2_Vertical_KA +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_AAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_AKA +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_BCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_GCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_GDS +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_KAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_KAK +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabDown_Series +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_AAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_AKA +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_BCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_GCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_GDS +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_KAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_KAK +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Horizontal_TabUp_Series +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Staggered_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Staggered_Vertical_AAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Staggered_Vertical_BCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Staggered_Vertical_GCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Staggered_Vertical_GDS +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Staggered_Vertical_KAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_AAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_AKA +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_BCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_GCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_GDS +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_KAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_KAK +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-3_Vertical_Series +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_Horizontal_TabDown +TO-220-4, Horizontal, RM 2.54mm, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_Horizontal_TabUp +TO-220-4, Horizontal, RM 2.54mm, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-2, Alternate KiCad Library +TO-220-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-2, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-1, Alternate KiCad Library +TO-220-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-1, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-4_Vertical +TO-220-4, Vertical, RM 2.54mm, Alternate KiCad Library +TO-220-4 Vertical RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_Horizontal_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_Horizontal_TabUp +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-5_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2, Alternate KiCad Library +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL +TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1, Alternate KiCad Library +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL +TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2, Alternate KiCad Library +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL +TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1, Alternate KiCad Library +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL +TO-220-8_Vertical +TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf), Alternate KiCad Library +TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL +TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2, Alternate KiCad Library +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL +TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1, Alternate KiCad Library +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL +TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2, Alternate KiCad Library +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL +TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1, Alternate KiCad Library +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL +TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Horizontal RM 1.7mm staggered type-2 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Vertical RM 1.7mm staggered type-2 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Vertical RM 1.7mm staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf, Alternate KiCad Library +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Vertical RM 1.27mm staggered type-2 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL +TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Horizontal RM 1.27mm staggered type-2 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Vertical RM 1.27mm staggered type-1 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Horizontal RM 1.27mm staggered type-1 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL +TO-220F-2_Horizontal_TabDown +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220F-2_Horizontal_TabDown_KA +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220F-2_Horizontal_TabUp +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220F-2_Horizontal_TabUp_KA +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220F-2_Vertical +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220F-2_Vertical_KA +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_AAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_AKA +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_BCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_GCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_GDS +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_KAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_KAK +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabDown_Series +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_AAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_AKA +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_BCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_GCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_GDS +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_KAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_KAK +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Horizontal_TabUp_Series +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Staggered_Vertical +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Staggered_Vertical_AAG +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Staggered_Vertical_BCE +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Staggered_Vertical_GCE +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Staggered_Vertical_GDS +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Staggered_Vertical_KAG +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_AAG +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_AKA +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_BCE +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_GCE +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_GDS +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_KAG +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_KAK +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-3_Vertical_Series +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_Horizontal_TabDown +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_Horizontal_TabUp +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-4_Vertical +TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_Horizontal_TabDown +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_Horizontal_TabUp +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-5_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-2, Alternate KiCad Library +TO-220F-7 Vertical RM 1.27mm staggered type-2 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL +TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-1, Alternate KiCad Library +TO-220F-7 Vertical RM 1.27mm staggered type-1 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL +TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-2, Alternate KiCad Library +TO-220F-9 Vertical RM 0.9mm staggered type-2 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL +TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-1, Alternate KiCad Library +TO-220F-9 Vertical RM 0.9mm staggered type-1 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL +TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf, Alternate KiCad Library +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf, Alternate KiCad Library +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL +TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2, Alternate KiCad Library +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL +TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1, Alternate KiCad Library +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL +TO-247-2_Horizontal_TabDown +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-247-2_Horizontal_TabDown_KA +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-247-2_Horizontal_TabUp +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-247-2_Horizontal_TabUp_KA +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-247-2_Vertical +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-247-2_Vertical_KA +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_AAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_AKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_BCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_GCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_GDS +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_KAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_KAK +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabDown_xKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_AAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_AKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_BCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_GCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_GDS +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_KAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_KAK +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Horizontal_TabUp_xKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_AAG +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_AKA +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_BCE +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_GCE +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_GDS +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_KAG +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_KAK +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-3_Vertical_xKA +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-247-4_Horizontal_TabDown +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-247-4_Horizontal_TabUp +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-247-4_Vertical +TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-4 Vertical RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL +TO-247-5_Horizontal_TabDown +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-247-5_Horizontal_TabUp +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-247-5_Vertical +TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library +TO-247-5 Vertical RM 2.54mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-251-2-1EP_Horizontal_TabDown +TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-2 Horizontal RM 4.58mm IPAK +0 +12 +3 +PCM_Package_TO_SOT_THT_AKL +TO-251-2_Vertical +TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-2 Vertical RM 4.58mm IPAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-251-3-1EP_Horizontal_TabDown +TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Horizontal RM 2.29mm IPAK +0 +13 +4 +PCM_Package_TO_SOT_THT_AKL +TO-251-3_Vertical +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-251-3_Vertical_BCE +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-251-3_Vertical_GCE +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-251-3_Vertical_GDS +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-262-2-1EP_Horizontal_TabDown +TO-262-2, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Horizontal RM 2.54mm IIPAK I2PAK +0 +23 +3 +PCM_Package_TO_SOT_THT_AKL +TO-262-2-1EP_Horizontal_TabPin1 +TO-262-2, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Horizontal RM 2.54mm IIPAK I2PAK +0 +23 +2 +PCM_Package_TO_SOT_THT_AKL +TO-262-2_Vertical +TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Vertical RM 2.54mm IIPAK I2PAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-262-2_Vertical_KA +TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Vertical RM 2.54mm IIPAK I2PAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-262-3-1EP_Horizontal_TabDown +TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK +0 +24 +4 +PCM_Package_TO_SOT_THT_AKL +TO-262-3_Vertical +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-262-3_Vertical_BCE +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-262-3_Vertical_GCE +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-262-3_Vertical_GDS +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-262-5-1EP_Horizontal_TabDown +TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf, Alternate KiCad Library +TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK +0 +26 +6 +PCM_Package_TO_SOT_THT_AKL +TO-262-5_Vertical +TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf, Alternate KiCad Library +TO-262-5 Vertical RM 1.7mm IIPAK I2PAK +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-264-2_Horizontal_TabDown +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-264-2_Horizontal_TabUp +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-264-2_Vertical +TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabDown +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabDown_BCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabDown_GCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabDown_GDS +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabUp +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabUp_BCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabUp_GCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Horizontal_TabUp_GDS +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Vertical +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Vertical_BCE +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Vertical_GCE +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-3_Vertical_GDS +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL +TO-264-5_Horizontal_TabDown +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-264-5_Horizontal_TabUp +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL +TO-264-5_Vertical +TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library +TO-264-5 Vertical RM 3.81mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_Double +SOT-25_C_B_E +SOT-25 drill 0.9mm (see https://www.web-bcs.com/pdf/SH/BC/BC148.pdf), Alternate KiCad Library +SOT-25 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +SOT-25_C_E_B +SOT-25 drill 0.9mm (see https://www.web-bcs.com/pdf/SH/BC/BC148.pdf), Alternate KiCad Library +SOT-25 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +SOT-33_C_B_E +SOT-33 drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +SOT-33_C_E_B +SOT-33 drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +SOT-33_Inline_AKA +SOT-33 leads in-line, drill 0.9mm (see https://www.web-bcs.com/pdf/Tf/BB/BB104.pdf), Alternate KiCad Library +SOT-33 inline transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabDown_BCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabDown_GCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabDown_GDS +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabDown_KAG +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabUp_BCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabUp_GCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabUp_GDS +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Horizontal_TabUp_KAG +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Vertical_BCE +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Vertical_GCE +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Vertical_GDS +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3P-3_Vertical_KAG +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PB-3_Horizontal_TabDown_BCE +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PB-3_Horizontal_TabDown_GDS +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PB-3_Horizontal_TabUp_BCE +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PB-3_Horizontal_TabUp_GDS +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PB-3_Vertical_BCE +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PB-3_Vertical_GDS +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-2_Horizontal_TabDown_KA +TO-3PF-2, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Horizontal RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-2_Horizontal_TabUp_KA +TO-3PF-2, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Horizontal RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-2_Vertical_KA +TO-3PF-2, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-2 Vertical RM 5.45mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Horizontal_TabDown_BCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Horizontal_TabDown_GCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Horizontal_TabDown_GDS +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Horizontal_TabUp_BCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Horizontal_TabUp_GCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Horizontal_TabUp_GDS +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Vertical_BCE +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Vertical_GCE +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3PF-3_Vertical_GDS +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3_BEC +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3_BigPads_BEC +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3_BigPads_GSD +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-3_GSD +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_AK +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_BigPads_AK +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_BigPads_KA +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_KA +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_Window_AK +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_Window_BigPads_AK +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_Window_BigPads_KA +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-2_Window_KA +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-3_BigPads_EBC +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-3_EBC +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-3_Window_BigPads_EBC +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-3_Window_EBC +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-4_EBC +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-6_BigPads_CBE-EBC +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_Double +TO-5-6_CBE-EBC +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_AK +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_BigPads_AK +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_BigPads_KA +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_BigPads_Zener +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_KA +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_Lens_AK +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_Lens_KA +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_Window_AK +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_Window_KA +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-2_Zener +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-3_BigPads_EBC +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-3_BigPads_SDG +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-3_BigPads_SGD +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-3_EBC +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-3_SDG +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-3_SGD +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-4_Bigpads_EBC +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-18-4_EBC +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-39-3_BigPads_EBC +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-39-3_BigPads_SGD +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-39-3_EBC +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-39-3_SGD +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-39-3_Window_EBC +TO-39-3_Window, Window, Alternate KiCad Library +TO-39-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-66_BEC +TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library +TO-66 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-71-6_BigPads_SDG-SDG +TO-71-6, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_Double +TO-71-6_SDG-SDG +TO-71-6, https://www.interfet.com/jfet-datasheets/jfet-to-71-interfet.pdf, Alternate KiCad Library +TO-71-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_Double +TO-72-4_BigPads_DGGS +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-72-4_BigPads_EBC +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-72-4_BigPads_SDG +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-72-4_EBC +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-72-4_SDG +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_Double +TO-78-6_BigPads_CBE-EBC +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_Double +TO-78-6_CBE-EBC +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92-2_AK +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92-2_Horizontal1_KA +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92-2_Horizontal2_KA +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92-2_KA +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92-2_Wide_AK +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92-2_Wide_KA +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92L_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Narrow transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92L_Inline_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92L_Inline_Wide_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92L_Wide_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92S_ECB +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92S_Wide_ECB +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +TO-92S_Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_CBE +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_CEB +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_DGS +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_DSG +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_EBC +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_ECB +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_GDS +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_GSD +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_CBE +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_CEB +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_DGS +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_DSG +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_EBC +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_ECB +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_GDS +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_GSD +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_SDG +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_SGD +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_CBE +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_CEB +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_DGS +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_DSG +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_EBC +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_ECB +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_GDS +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_GSD +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_SDG +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Inline_Wide_SGD +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_SDG +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_SGD +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_CBE +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_CEB +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_DGS +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_DSG +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_EBC +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_ECB +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_GDS +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_GSD +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_SDG +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-92_Wide_SGD +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-2_Vertical_KA +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-2_Vertical_Zener +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabDown_AAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabDown_BCE +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabDown_ECB +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabDown_KAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabUp_AAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabUp_BCE +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabUp_ECB +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Horizontal_TabUp_KAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Vertical_AAG +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Vertical_BCE +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Vertical_ECB +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-126-3_Vertical_KAG +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-202-3_Horizontal_Down_BCE +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-202-3_Horizontal_Tabless_Down_KAG +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-202-3_Horizontal_Tabless_Up_KAG +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-202-3_Horizontal_Up_BCE +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-202-3_Vertical_BCE +TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-202-3_Vertical_Tabless_KAG +TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm Tabless +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-2_Horizontal_TabDown_KA +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-2_Horizontal_TabUp_KA +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-2_Vertical_KA +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabDown_AAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabDown_AKA +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabDown_BCE +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabDown_GDS +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabDown_KAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabUp_AAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabUp_AKA +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabUp_BCE +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabUp_GDS +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Horizontal_TabUp_KAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Vertical_AAG +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Vertical_AKA +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Vertical_BCE +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Vertical_GDS +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-218-3_Vertical_KAG +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-2_Horizontal_TabDown_KA +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-2_Horizontal_TabUp_KA +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-2_Vertical_KA +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_AAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_AKA +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_BCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_GCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_GDS +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_KAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_KAK +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabDown_Series +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_AAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_AKA +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_BCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_GCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_GDS +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_KAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_KAK +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Horizontal_TabUp_Series +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Staggered_Vertical_AAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Staggered_Vertical_BCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Staggered_Vertical_GCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Staggered_Vertical_GDS +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Staggered_Vertical_KAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_AAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_AKA +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_BCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_GCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_GDS +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_KAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_KAK +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220-3_Vertical_Series +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-2_Horizontal_TabDown_KA +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-2_Horizontal_TabUp_KA +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-2_Vertical_KA +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_AAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_AKA +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_BCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_GCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_GDS +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_KAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_KAK +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabDown_Series +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_AAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_AKA +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_BCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_GCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_GDS +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_KAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_KAK +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Horizontal_TabUp_Series +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Staggered_Vertical_AAG +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Staggered_Vertical_BCE +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Staggered_Vertical_GCE +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Staggered_Vertical_GDS +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Staggered_Vertical_KAG +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_AAG +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_AKA +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_BCE +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_GCE +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_GDS +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_KAG +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_KAK +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-220F-3_Vertical_Series +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-2_Horizontal_TabDown_KA +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-2_Horizontal_TabUp_KA +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-2_Vertical_KA +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_AAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_AKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_BCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_GCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_GDS +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_KAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_KAK +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabDown_xKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_AAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_AKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_BCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_GCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_GDS +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_KAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_KAK +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Horizontal_TabUp_xKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_AAG +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_AKA +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_BCE +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_GCE +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_GDS +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_KAG +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_KAK +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-247-3_Vertical_xKA +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-251-3_Vertical_BCE +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-251-3_Vertical_GCE +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-251-3_Vertical_GDS +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-262-2_Vertical_KA +TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Vertical RM 2.54mm IIPAK I2PAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_Double +TO-262-3_Vertical_BCE +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-262-3_Vertical_GCE +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-262-3_Vertical_GDS +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Horizontal_TabDown_BCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Horizontal_TabDown_GCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Horizontal_TabDown_GDS +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Horizontal_TabUp_BCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Horizontal_TabUp_GCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Horizontal_TabUp_GDS +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Vertical_BCE +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Vertical_GCE +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_Double +TO-264-3_Vertical_GDS +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +Fairchild_TO-220F-6L +Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf, Alternate KiCad Library +Fairchild TO-220F-6L +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +Heraeus_TO-92-2 +TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf), Alternate KiCad Library +to-92 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +NEC_Molded_7x4x9mm +Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf, Alternate KiCad Library +Japan transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +PowerIntegrations_TO-220-7C +Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf, Alternate KiCad Library +Power Integration Y Package +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +SIPAK-1EP_Horizontal_TabDown +SIPAK, Horizontal, RM 2.286mm, Alternate KiCad Library +SIPAK Horizontal RM 2.286mm +0 +13 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +SIPAK_Vertical +SIPAK, Vertical, RM 2.286mm, Alternate KiCad Library +SIPAK Vertical RM 2.286mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +SOD-70_P2.54mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf, Alternate KiCad Library +Sod-70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +SOD-70_P5.08mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf , Alternate KiCad Library +Sod-70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +SOT-227 +SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf), Alternate KiCad Library +sot 227 isotop +0 +8 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3 +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3-8_Isolated +TO-3 8-Pin Metal Can Power Package, Alternate KiCad Library +TO-3 TO3 TO-204 +0 +10 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabDown +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabDown_BCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabDown_GCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabDown_GDS +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabDown_KAG +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabUp +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabUp_BCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabUp_GCE +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabUp_GDS +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Horizontal_TabUp_KAG +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Vertical +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Vertical_BCE +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Vertical_GCE +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Vertical_GDS +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3P-3_Vertical_KAG +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Horizontal_TabDown +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Horizontal_TabDown_BCE +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Horizontal_TabDown_GDS +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Horizontal_TabUp +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Horizontal_TabUp_BCE +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Horizontal_TabUp_GDS +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Vertical +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Vertical_BCE +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PB-3_Vertical_GDS +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabDown +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabDown_BCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabDown_GCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabDown_GDS +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabUp +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabUp_BCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabUp_GCE +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Horizontal_TabUp_GDS +TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Vertical +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Vertical_BCE +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Vertical_GCE +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3PF-3_Vertical_GDS +TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library +TO-3PF-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3_BEC +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-3_GSD +Transistor TO-3, Alternate KiCad Library +TR TO-3 TO3 TO-204 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-2 +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-2_AK +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-2_KA +TO-5-2, Alternate KiCad Library +TO-5-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-2_Window +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-2_Window_AK +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-2_Window_KA +TO-5-2_Window, Window, Alternate KiCad Library +TO-5-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-3 +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-3_EBC +TO-5-3, Alternate KiCad Library +TO-5-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-3_Window +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-3_Window_EBC +TO-5-3_Window, Window, Alternate KiCad Library +TO-5-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-4 +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-4_EBC +TO-5-4, Alternate KiCad Library +TO-5-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-4_Window +TO-5-4_Window, Window, Alternate KiCad Library +TO-5-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-6 +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-6_CBE-EBC +TO-5-6, Alternate KiCad Library +TO-5-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-6_Window +TO-5-6_Window, Window, Alternate KiCad Library +TO-5-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-8 +TO-5-8, Alternate KiCad Library +TO-5-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-8_PD5.08 +TO-5-8_PD5.08, Alternate KiCad Library +TO-5-8_PD5.08 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-8_PD5.08_Window +TO-5-8_PD5.08_Window, Window, Alternate KiCad Library +TO-5-8_PD5.08_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-8_Window +TO-5-8_Window, Window, Alternate KiCad Library +TO-5-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-10 +TO-5-10, Alternate KiCad Library +TO-5-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-5-10_Window +TO-5-10_Window, Window, Alternate KiCad Library +TO-5-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-8-2 +TO-8-2, Alternate KiCad Library +TO-8-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-8-2_Window +TO-8-2_Window, Window, Alternate KiCad Library +TO-8-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-8-3 +TO-8-3, Alternate KiCad Library +TO-8-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-8-3_Window +TO-8-3_Window, Window, Alternate KiCad Library +TO-8-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-11-2 +TO-11-2, Alternate KiCad Library +TO-11-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-11-2_Window +TO-11-2_Window, Window, Alternate KiCad Library +TO-11-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-11-3 +TO-11-3, Alternate KiCad Library +TO-11-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-11-3_Window +TO-11-3_Window, Window, Alternate KiCad Library +TO-11-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-12-4 +TO-12-4, Alternate KiCad Library +TO-12-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-12-4_Window +TO-12-4_Window, Window, Alternate KiCad Library +TO-12-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-17-4 +TO-17-4, Alternate KiCad Library +TO-17-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-17-4_Window +TO-17-4_Window, Window, Alternate KiCad Library +TO-17-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2 +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_AK +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_KA +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Lens +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Lens_AK +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Lens_KA +TO-18-2_Lens, Lens, Alternate KiCad Library +TO-18-2_Lens Lens +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Window +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Window_AK +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Window_KA +TO-18-2_Window, Window, Alternate KiCad Library +TO-18-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-2_Zener +TO-18-2, Alternate KiCad Library +TO-18-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3 +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_Board +TO-18-3 Mounted through a board, Alternate KiCad Library +TO-18-3 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_Board_EBC +TO-18-3 Mounted through a board, BJT connections, Alternate KiCad Library +TO-18-3 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_Board_SDG +TO-18-3 Mounted through a board, FET connections, Alternate KiCad Library +TO-18-3 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_EBC +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_Lens +TO-18-3_Lens, Lens, Alternate KiCad Library +TO-18-3_Lens Lens +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_SDG +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_SGD +TO-18-3, Alternate KiCad Library +TO-18-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-3_Window +TO-18-3_Window, Window, Alternate KiCad Library +TO-18-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-4 +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-4_EBC +TO-18-4, Alternate KiCad Library +TO-18-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-4_Lens +TO-18-4_Lens, Lens, Alternate KiCad Library +TO-18-4_Lens Lens +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-18-4_Window +TO-18-4_Window, Window, Alternate KiCad Library +TO-18-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-33-4 +TO-33-4, Alternate KiCad Library +TO-33-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-33-4_Window +TO-33-4_Window, Window, Alternate KiCad Library +TO-33-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-38-2 +TO-38-2, Alternate KiCad Library +TO-38-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-38-2_Window +TO-38-2_Window, Window, Alternate KiCad Library +TO-38-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-38-3 +TO-38-3, Alternate KiCad Library +TO-38-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-38-3_Window +TO-38-3_Window, Window, Alternate KiCad Library +TO-38-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-2 +TO-39-2, Alternate KiCad Library +TO-39-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-2_Window +TO-39-2_Window, Window, Alternate KiCad Library +TO-39-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3 +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3_Board +TO-39-3 Mounted through a board, Alternate KiCad Library +TO-39-3 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3_Board_EBC +TO-39-3 Mounted through a board, BJT connections, Alternate KiCad Library +TO-39-3 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3_EBC +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3_SGD +TO-39-3, Alternate KiCad Library +TO-39-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3_Window +TO-39-3_Window, Window, Alternate KiCad Library +TO-39-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-3_Window_EBC +TO-39-3_Window, Window, Alternate KiCad Library +TO-39-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-4 +TO-39-4, Alternate KiCad Library +TO-39-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-4_Window +TO-39-4_Window, Window, Alternate KiCad Library +TO-39-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-6 +TO-39-6, Alternate KiCad Library +TO-39-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-6_Window +TO-39-6_Window, Window, Alternate KiCad Library +TO-39-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-8 +TO-39-8, Alternate KiCad Library +TO-39-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-8_Window +TO-39-8_Window, Window, Alternate KiCad Library +TO-39-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-10 +TO-39-10, Alternate KiCad Library +TO-39-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-39-10_Window +TO-39-10_Window, Window, Alternate KiCad Library +TO-39-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-2 +TO-46-2, Alternate KiCad Library +TO-46-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-2_Pin2Center +TO-46-2, Pin2 at center of package, Thorlabs photodiodes, Alternate KiCad Library +TO-46-2 Thorlabs +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-2_Pin2Center_Window +TO-46-2, Pin2 at center of package, Thorlabs photodiodes, Alternate KiCad Library +TO-46-2 Thorlabs +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-2_Window +TO-46-2_Window, Window, Alternate KiCad Library +TO-46-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-3 +TO-46-3, Alternate KiCad Library +TO-46-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-3_Pin2Center +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf, Alternate KiCad Library +TO-46-3 Thorlabs +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-3_Pin2Center_Window +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf, Alternate KiCad Library +TO-46-3 Thorlabs +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-3_Window +TO-46-3_Window, Window, Alternate KiCad Library +TO-46-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-4 +TO-46-4, Alternate KiCad Library +TO-46-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-4_ThermalShield +TO-46-4 with LM399 thermal shield, https://www.tme.eu/Document/af285c6dd18bf8b2f9c0aa8c89d237e3/lm399ah.pdf, Alternate KiCad Library +TO-46-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-46-4_Window +TO-46-4_Window, Window, Alternate KiCad Library +TO-46-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-52-2 +TO-52-2, Alternate KiCad Library +TO-52-2 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-52-2_Window +TO-52-2_Window, Window, Alternate KiCad Library +TO-52-2_Window Window +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-52-3 +TO-52-3, Alternate KiCad Library +TO-52-3 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-52-3_Window +TO-52-3_Window, Window, Alternate KiCad Library +TO-52-3_Window Window +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-66 +TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library +TO-66 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-66_BEC +TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library +TO-66 +0 +4 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4 +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4_Board +TO-72-4 Mounted through a board, Alternate KiCad Library +TO-72-4 +0 +5 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4_Board_DGGS +TO-72-4 Mounted through a board, Dual Gate FET connections, Alternate KiCad Library +TO-72-4 +0 +5 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4_Board_EBC +TO-72-4 Mounted through a board, BJT connections, Alternate KiCad Library +TO-72-4 +0 +5 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4_EBC +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4_SDG +TO-72-4, Alternate KiCad Library +TO-72-4 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-72-4_Window +TO-72-4_Window, Window, Alternate KiCad Library +TO-72-4_Window Window +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-75-6 +TO-75-6, Alternate KiCad Library +TO-75-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-75-6_Window +TO-75-6_Window, Window, Alternate KiCad Library +TO-75-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-6 +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-6_CBE-EBC +TO-78-6, Alternate KiCad Library +TO-78-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-6_Window +TO-78-6_Window, Window, Alternate KiCad Library +TO-78-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-8 +TO-78-8, Alternate KiCad Library +TO-78-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-8_Window +TO-78-8_Window, Window, Alternate KiCad Library +TO-78-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-10 +TO-78-10, Alternate KiCad Library +TO-78-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-78-10_Window +TO-78-10_Window, Window, Alternate KiCad Library +TO-78-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92 +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2 +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_AK +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Horizontal1 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Horizontal1_KA +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Horizontal2 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Horizontal2_KA +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_KA +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Wide +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Wide_AK +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92-2_Wide_KA +TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92Flat +TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf), Alternate KiCad Library +to-92Flat hall sensor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Narrow transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Narrow transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_HandSolder +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_Inline +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_Inline_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_Inline_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_Inline_Wide_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Inline Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92L_Wide_ECB +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library +TO-92L Molded Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92Mini-2 +TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf), Alternate KiCad Library +to-92Mini transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92S +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92S-2 +TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92S_ECB +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +to-92S transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92S_Wide +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +TO-92S_Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92S_Wide_ECB +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library +TO-92S_Wide transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_CBE +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_CEB +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_DGS +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_DSG +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_EBC +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_ECB +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_GDS +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_GSD +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_HandSolder +TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Horizontal1 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Horizontal2 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_CBE +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_CEB +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_DGS +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_DSG +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_EBC +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_ECB +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_GDS +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_GSD +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Horizontal1 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Horizontal2 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_SDG +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_SGD +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_CBE +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_CEB +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_DGS +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_DSG +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_EBC +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_ECB +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_GDS +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_GSD +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_SDG +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Inline_Wide_SGD +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_SDG +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_SGD +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_CBE +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_CEB +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_DGS +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_DSG +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_EBC +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_ECB +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_GDS +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_GSD +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_SDG +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-92_Wide_SGD +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-99-6 +TO-99-6, Alternate KiCad Library +TO-99-6 +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-99-6_Window +TO-99-6_Window, Window, Alternate KiCad Library +TO-99-6_Window Window +0 +6 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-99-8 +TO-99-8, Alternate KiCad Library +TO-99-8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-99-8_Window +TO-99-8_Window, Window, Alternate KiCad Library +TO-99-8_Window Window +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-100-10 +TO-100-10, Alternate KiCad Library +TO-100-10 +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-100-10_Window +TO-100-10_Window, Window, Alternate KiCad Library +TO-100-10_Window Window +0 +10 +10 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-2_Horizontal_TabDown +TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-2_Horizontal_TabUp +TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-2_Vertical +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabDown +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabDown_AAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabDown_BCE +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabDown_ECB +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabDown_KAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabUp +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabUp_AAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabUp_BCE +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabUp_ECB +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Horizontal_TabUp_KAG +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Vertical +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Vertical_AAG +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Vertical_BCE +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Vertical_ECB +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-126-3_Vertical_KAG +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Down +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Down_BCE +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Tabless_Down +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Tabless_Down_KAG +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Tabless_Up +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Tabless_Up_KAG +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Up +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Horizontal_Up_BCE +TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Vertical +TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Vertical_BCE +TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Vertical_Tabless +TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm Tabless +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-202-3_Vertical_Tabless_KAG +TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library +TO-202-3 Vertical RM 2.54mm Tabless +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-2_Horizontal_TabDown +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-2_Horizontal_TabDown_KA +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-2_Horizontal_TabUp +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-2_Horizontal_TabUp_KA +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-2_Vertical +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-2_Vertical_KA +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabDown +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabDown_AAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabDown_AKA +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabDown_BCE +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabDown_GDS +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabDown_KAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabUp +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabUp_AAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabUp_AKA +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabUp_BCE +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabUp_GDS +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Horizontal_TabUp_KAG +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Vertical +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Vertical_AAG +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Vertical_AKA +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Vertical_BCE +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Vertical_GDS +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-218-3_Vertical_KAG +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-2_Horizontal_TabDown +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-2_Horizontal_TabDown_KA +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-2_Horizontal_TabUp +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-2_Horizontal_TabUp_KA +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-2_Vertical +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-2_Vertical_KA +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_AAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_AKA +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_BCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_GCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_GDS +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_KAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_KAK +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabDown_Series +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_AAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_AKA +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_BCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_GCE +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_GDS +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_KAG +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_KAK +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Horizontal_TabUp_Series +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Staggered_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Staggered_Vertical_AAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Staggered_Vertical_BCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Staggered_Vertical_GCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Staggered_Vertical_GDS +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Staggered_Vertical_KAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_AAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_AKA +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_BCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_GCE +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_GDS +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_KAG +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_KAK +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-3_Vertical_Series +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_Horizontal_TabDown +TO-220-4, Horizontal, RM 2.54mm, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_Horizontal_TabUp +TO-220-4, Horizontal, RM 2.54mm, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-2, Alternate KiCad Library +TO-220-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-2, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-1, Alternate KiCad Library +TO-220-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-1, Alternate KiCad Library +TO-220-4 Horizontal RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-4_Vertical +TO-220-4, Vertical, RM 2.54mm, Alternate KiCad Library +TO-220-4 Vertical RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_Horizontal_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_Horizontal_TabUp +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-5_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2, Alternate KiCad Library +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1, Alternate KiCad Library +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2, Alternate KiCad Library +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1, Alternate KiCad Library +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-8_Vertical +TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf), Alternate KiCad Library +TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 +0 +8 +8 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2, Alternate KiCad Library +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1, Alternate KiCad Library +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2, Alternate KiCad Library +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1, Alternate KiCad Library +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Horizontal RM 1.7mm staggered type-2 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Vertical RM 1.7mm staggered type-2 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library +TO-220-11 Vertical RM 1.7mm staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf, Alternate KiCad Library +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Vertical RM 1.27mm staggered type-2 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Horizontal RM 1.27mm staggered type-2 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Vertical RM 1.27mm staggered type-1 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library +TO-220-15 Horizontal RM 1.27mm staggered type-1 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-2_Horizontal_TabDown +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-2_Horizontal_TabDown_KA +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-2_Horizontal_TabUp +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-2_Horizontal_TabUp_KA +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-2_Vertical +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-2_Vertical_KA +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_AAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_AKA +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_BCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_GCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_GDS +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_KAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_KAK +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabDown_Series +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_AAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_AKA +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_BCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_GCE +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_GDS +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_KAG +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_KAK +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Horizontal_TabUp_Series +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Staggered_Vertical +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Staggered_Vertical_AAG +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Staggered_Vertical_BCE +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Staggered_Vertical_GCE +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Staggered_Vertical_GDS +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Staggered_Vertical_KAG +TO-220F Staggered Vertical, Alternate KiCad Library +TO-220F vertical staggered +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_AAG +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_AKA +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_BCE +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_GCE +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_GDS +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_KAG +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_KAK +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-3_Vertical_Series +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_Horizontal_TabDown +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_Horizontal_TabUp +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-4_Vertical +TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library +TO-220F-4 Vertical RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_Horizontal_TabDown +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_Horizontal_TabUp +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-5_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-2, Alternate KiCad Library +TO-220F-7 Vertical RM 1.27mm staggered type-2 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-1, Alternate KiCad Library +TO-220F-7 Vertical RM 1.27mm staggered type-1 +0 +7 +7 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-2, Alternate KiCad Library +TO-220F-9 Vertical RM 0.9mm staggered type-2 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-1, Alternate KiCad Library +TO-220F-9 Vertical RM 0.9mm staggered type-1 +0 +9 +9 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf, Alternate KiCad Library +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf, Alternate KiCad Library +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 +0 +11 +11 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2, Alternate KiCad Library +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1, Alternate KiCad Library +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 +0 +15 +15 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-2_Horizontal_TabDown +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-2_Horizontal_TabDown_KA +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-2_Horizontal_TabUp +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-2_Horizontal_TabUp_KA +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-2_Vertical +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-2_Vertical_KA +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_AAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_AKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_BCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_GCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_GDS +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_KAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_KAK +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabDown_xKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_AAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_AKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_BCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_GCE +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_GDS +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_KAG +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_KAK +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Horizontal_TabUp_xKA +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_AAG +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_AKA +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_BCE +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_GCE +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_GDS +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_KAG +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_KAK +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-3_Vertical_xKA +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-4_Horizontal_TabDown +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-4_Horizontal_TabUp +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-4_Vertical +TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library +TO-247-4 Vertical RM 2.54mm +0 +4 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-5_Horizontal_TabDown +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-5_Horizontal_TabUp +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-247-5_Vertical +TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library +TO-247-5 Vertical RM 2.54mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-2-1EP_Horizontal_TabDown +TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-2 Horizontal RM 4.58mm IPAK +0 +12 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-2_Vertical +TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-2 Vertical RM 4.58mm IPAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-3-1EP_Horizontal_TabDown +TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Horizontal RM 2.29mm IPAK +0 +13 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-3_Vertical +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-3_Vertical_BCE +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-3_Vertical_GCE +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-251-3_Vertical_GDS +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-2-1EP_Horizontal_TabDown +TO-262-2, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Horizontal RM 2.54mm IIPAK I2PAK +0 +23 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-2-1EP_Horizontal_TabPin1 +TO-262-2, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Horizontal RM 2.54mm IIPAK I2PAK +0 +23 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-2_Vertical +TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Vertical RM 2.54mm IIPAK I2PAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-2_Vertical_KA +TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-2 Vertical RM 2.54mm IIPAK I2PAK +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-3-1EP_Horizontal_TabDown +TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK +0 +24 +4 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-3_Vertical +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-3_Vertical_BCE +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-3_Vertical_GCE +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-3_Vertical_GDS +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-5-1EP_Horizontal_TabDown +TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf, Alternate KiCad Library +TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK +0 +26 +6 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-262-5_Vertical +TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf, Alternate KiCad Library +TO-262-5 Vertical RM 1.7mm IIPAK I2PAK +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-2_Horizontal_TabDown +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-2_Horizontal_TabUp +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-2_Vertical +TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-2 Vertical RM 10.9mm +0 +2 +2 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabDown +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabDown_BCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabDown_GCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabDown_GDS +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabUp +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabUp_BCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabUp_GCE +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Horizontal_TabUp_GDS +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Vertical +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Vertical_BCE +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Vertical_GCE +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-3_Vertical_GDS +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-5_Horizontal_TabDown +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-5_Horizontal_TabUp +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +TO-264-5_Vertical +TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library +TO-264-5 Vertical RM 3.81mm +0 +5 +5 +PCM_Package_TO_SOT_THT_AKL_OneLayer +Transistor_Universal_CBE +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_ACP_CA6-VSMD_Vertical +Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical ACP CA6-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_ACP_CA6-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical hole ACP CA6-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_ACP_CA9-VSMD_Vertical +Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_ACP_CA9-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_ACP_CA14-VSMD_Vertical +Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_ACP_CA14-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3214G_Horizontal +Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214G +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3214J_Horizontal +Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214J +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3214W_Vertical +Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214W +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3214X_Vertical +Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214X +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3224G_Horizontal +Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224G +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3224J_Horizontal +Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224J +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3224W_Vertical +Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224W +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3224X_Vertical +Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224X +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3269P_Horizontal +Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269P +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3269W_Vertical +Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer vertical Bourns 3269W +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3269X_Horizontal +Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269X +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3314G_Vertical +Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314G +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3314J_Vertical +Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314J +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3314R-1_Vertical_Hole +Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole Bourns 3314R-1 +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3314R-GM5_Vertical +Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314R-GM5 +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_3314S_Horizontal +Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer horizontal Bourns 3314S +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_PRS11S_Vertical +Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf +Potentiometer vertical Bourns PRS11S +0 +5 +5 +PCM_Potentiometer_SMD_AKL +Potentiometer_Bourns_TC33X_Vertical +Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf +Potentiometer Bourns TC33X Vertical +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Vishay_TS53YJ_Vertical +Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YJ +0 +3 +3 +PCM_Potentiometer_SMD_AKL +Potentiometer_Vishay_TS53YL_Vertical +Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YL +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_ACP_CA6-VSMD_Vertical +Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical ACP CA6-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_ACP_CA6-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical hole ACP CA6-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_ACP_CA9-VSMD_Vertical +Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_ACP_CA9-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_ACP_CA14-VSMD_Vertical +Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_ACP_CA14-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3214G_Horizontal +Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214G +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3214J_Horizontal +Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214J +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3214W_Vertical +Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214W +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3214X_Vertical +Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214X +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3224G_Horizontal +Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224G +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3224J_Horizontal +Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224J +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3224W_Vertical +Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224W +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3224X_Vertical +Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224X +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3269P_Horizontal +Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269P +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3269W_Vertical +Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer vertical Bourns 3269W +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3269X_Horizontal +Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269X +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3314G_Vertical +Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314G +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3314J_Vertical +Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314J +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3314R-1_Vertical_Hole +Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole Bourns 3314R-1 +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3314R-GM5_Vertical +Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314R-GM5 +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_3314S_Horizontal +Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer horizontal Bourns 3314S +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_PRS11S_Vertical +Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf +Potentiometer vertical Bourns PRS11S +0 +5 +5 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Bourns_TC33X_Vertical +Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf +Potentiometer Bourns TC33X Vertical +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Vishay_TS53YJ_Vertical +Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YJ +0 +3 +3 +PCM_Potentiometer_SMD_Handsoldering_AKL +Potentiometer_Vishay_TS53YL_Vertical +Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YL +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_ACP_CA6-VSMD_Vertical +Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical ACP CA6-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_ACP_CA6-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical hole ACP CA6-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_ACP_CA9-VSMD_Vertical +Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_ACP_CA9-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_ACP_CA14-VSMD_Vertical +Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_ACP_CA14-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14-VSMD +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3214G_Horizontal +Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214G +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3214J_Horizontal +Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214J +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3214W_Vertical +Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214W +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3214X_Vertical +Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214X +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3224G_Horizontal +Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224G +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3224J_Horizontal +Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224J +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3224W_Vertical +Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224W +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3224X_Vertical +Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224X +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3269P_Horizontal +Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269P +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3269W_Vertical +Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer vertical Bourns 3269W +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3269X_Horizontal +Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269X +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3314G_Vertical +Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314G +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3314J_Vertical +Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314J +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3314R-1_Vertical_Hole +Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole Bourns 3314R-1 +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3314R-GM5_Vertical +Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314R-GM5 +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_3314S_Horizontal +Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer horizontal Bourns 3314S +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_PRS11S_Vertical +Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf +Potentiometer vertical Bourns PRS11S +0 +5 +5 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Bourns_TC33X_Vertical +Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf +Potentiometer Bourns TC33X Vertical +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Vishay_TS53YJ_Vertical +Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YJ +0 +3 +3 +PCM_Potentiometer_SMD_US_Handsoldering_AKL +Potentiometer_Vishay_TS53YL_Vertical +Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YL +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09K_Single_Horizontal +Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer horizontal Alps RK09K Single +0 +5 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09K_Single_Vertical +Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer vertical Alps RK09K Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09L_Double_Horizontal +Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Double +0 +8 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09L_Double_Vertical +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +6 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09L_Single_Horizontal +Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Single +0 +5 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09L_Single_Vertical +Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK097_Dual_Horizontal +Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK097_Single_Horizontal +Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK163_Dual_Horizontal +Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Alps_RK163_Single_Horizontal +Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTA1543_Single_Slide +Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 15.0mm +0 +7 +4 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTA2043_Single_Slide +Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 20.0mm +0 +7 +4 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTA3043_Single_Slide +Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 30.0mm +0 +7 +4 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTA4543_Single_Slide +Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 45.0mm +0 +7 +4 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTA6043_Single_Slide +Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 60.0mm +0 +7 +4 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_D22mm_H12.5mm +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_D22mm_H12.5mm_Hole +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-10-H01_Horizontal +Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H01 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Telpod_CN15.1 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Telpod_CN15.2 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Telpod_TVP1212 +Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 horizontal +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Telpod_TVP1232 +Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 vertical +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +PCM_Potentiometer_THT_AKL +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09K_Single_Horizontal +Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer horizontal Alps RK09K Single +0 +5 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09K_Single_Vertical +Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer vertical Alps RK09K Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09L_Double_Horizontal +Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Double +0 +8 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09L_Double_Vertical +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +6 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09L_Single_Horizontal +Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Single +0 +5 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09L_Single_Vertical +Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK097_Dual_Horizontal +Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK097_Single_Horizontal +Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK163_Dual_Horizontal +Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Alps_RK163_Single_Horizontal +Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_D22mm_H12.5mm +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_D22mm_H12.5mm_Hole +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Telpod_CN15.1 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Telpod_CN15.2 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Telpod_TVP1212 +Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 horizontal +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Telpod_TVP1232 +Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 vertical +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +PCM_Potentiometer_THT_AKL_Double +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09K_Single_Horizontal +Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer horizontal Alps RK09K Single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09K_Single_Vertical +Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer vertical Alps RK09K Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09L_Double_Horizontal +Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Double +0 +8 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09L_Double_Vertical +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +6 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09L_Single_Horizontal +Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09L_Single_Vertical +Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK097_Dual_Horizontal +Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK097_Single_Horizontal +Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK163_Dual_Horizontal +Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Alps_RK163_Single_Horizontal +Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTA1543_Single_Slide +Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 15.0mm +0 +7 +4 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTA2043_Single_Slide +Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 20.0mm +0 +7 +4 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTA3043_Single_Slide +Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 30.0mm +0 +7 +4 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTA4543_Single_Slide +Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 45.0mm +0 +7 +4 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTA6043_Single_Slide +Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 60.0mm +0 +7 +4 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_D22mm_H12.5mm +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_D22mm_H12.5mm_Hole +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-10-H01_Horizontal +Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H01 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Telpod_CN15.1 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Telpod_CN15.2 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Telpod_TVP1212 +Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 horizontal +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Telpod_TVP1232 +Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 vertical +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +PCM_Potentiometer_THT_US_AKL +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09K_Single_Horizontal +Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer horizontal Alps RK09K Single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09K_Single_Vertical +Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html +Potentiometer vertical Alps RK09K Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09L_Double_Horizontal +Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Double +0 +8 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09L_Double_Vertical +Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Double +0 +6 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09L_Single_Horizontal +Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer horizontal Alps RK09L Single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09L_Single_Vertical +Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html +Potentiometer vertical Alps RK09L Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK097_Dual_Horizontal +Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK097_Single_Horizontal +Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK163_Dual_Horizontal +Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Alps_RK163_Single_Horizontal +Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_D22mm_H12.5mm +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_D22mm_H12.5mm_Hole +Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library +potentiometer pot trimpot 22mm diameter +0 +4 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-10-H01_Horizontal +Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H01 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Telpod_CN15.1 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Telpod_CN15.2 +Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer cn15 horizontal cermet +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Telpod_TVP1212 +Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 horizontal +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Telpod_TVP1232 +Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library +potentiometer pot trimpot trimmer tvp12 vertical +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +PCM_Potentiometer_THT_US_AKL_Double +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +PCM_Resistor_SMD_AKL +R_0201_0603Metric +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +resistor +0 +4 +2 +PCM_Resistor_SMD_AKL +R_0201_0603Metric_Pad0.64x0.40mm +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +resistor handsolder +0 +4 +2 +PCM_Resistor_SMD_AKL +R_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library +resistor handsolder +0 +4 +2 +PCM_Resistor_SMD_AKL +R_0402_1005Metric +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0402_1005Metric_Pad0.72x0.64mm +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0402_1005Metric_Pad0.72x0.64mm_HandSolder +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0603_1608Metric +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0603_1608Metric_Pad0.98x0.95mm +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0603_1608Metric_Pad0.98x0.95mm_HandSolder +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0603_1608Metric_Pad1.05x0.95mm +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0612_1632Metric +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0612_1632Metric_Pad1.18x3.40mm +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0612_1632Metric_Pad1.18x3.40mm_HandSolder +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0805_2012Metric +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0805_2012Metric_Pad1.15x1.40mm +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0805_2012Metric_Pad1.20x1.40mm +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0805_2012Metric_Pad1.20x1.40mm_HandSolder +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0815_2038Metric +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0815_2038Metric_Pad1.20x4.05mm +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0815_2038Metric_Pad1.20x4.05mm_HandSolder +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0815_2038Metric_Pad1.53x4.00mm +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.yageo.com/documents/recent/PYu-PRPFPH_521_RoHS_L_0.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_0815_2038Metric_Pad1.53x4.00mm_HandSolder +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.yageo.com/documents/recent/PYu-PRPFPH_521_RoHS_L_0.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_01005_0402Metric +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +resistor +0 +4 +2 +PCM_Resistor_SMD_AKL +R_01005_0402Metric_Pad0.57x0.30mm +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +resistor handsolder +0 +4 +2 +PCM_Resistor_SMD_AKL +R_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library +resistor handsolder +0 +4 +2 +PCM_Resistor_SMD_AKL +R_1020_2550Metric +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1020_2550Metric_Pad1.33x5.20mm +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1020_2550Metric_Pad1.33x5.20mm_HandSolder +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1206_3216Metric +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1206_3216Metric_Pad1.30x1.75mm +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1206_3216Metric_Pad1.30x1.75mm_HandSolder +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1206_3216Metric_Pad1.42x1.75mm +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1210_3225Metric +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1210_3225Metric_Pad1.30x2.65mm +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1210_3225Metric_Pad1.30x2.65mm_HandSolder +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1210_3225Metric_Pad1.42x2.65mm +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1218_3246Metric +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1218_3246Metric_Pad1.22x4.75mm +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1218_3246Metric_Pad1.22x4.75mm_HandSolder +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1806_4516Metric +Resistor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1806_4516Metric_Pad1.57x1.80mm +Resistor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1806_4516Metric_Pad1.57x1.80mm_HandSolder +Resistor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1812_4532Metric +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1812_4532Metric_Pad1.30x3.40mm +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2010_5025Metric +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2010_5025Metric_Pad1.40x2.65mm +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2010_5025Metric_Pad1.40x2.65mm_HandSolder +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2010_5025Metric_Pad1.52x2.65mm +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2512_6332Metric +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2512_6332Metric_Pad1.40x3.35mm +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2512_6332Metric_Pad1.40x3.35mm_HandSolder +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2512_6332Metric_Pad1.52x3.35mm +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2816_7142Metric +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2816_7142Metric_Pad3.20x4.45mm +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_4020_10251Metric +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), Alternate KiCad Library +resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_4020_10251Metric_Pad1.65x5.30mm +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_4020_10251Metric_Pad1.65x5.30mm_HandSolder +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), Alternate KiCad Library +resistor handsolder +0 +2 +2 +PCM_Resistor_SMD_AKL +R_Array_Concave_2x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf), Alternate KiCad Library +resistor array +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Array_Concave_4x0402 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA04P (see cra04p.pdf), Alternate KiCad Library +resistor array +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Array_Concave_4x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf), Alternate KiCad Library +resistor array +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Array_Convex_2x0402 +Chip Resistor Network, ROHM MNR02 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Array_Convex_2x0603 +Chip Resistor Network, ROHM MNR12 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Array_Convex_2x0606 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf), Alternate KiCad Library +resistor array +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Array_Convex_2x1206 +Chip Resistor Network, ROHM MNR32 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Array_Convex_4x0402 +Chip Resistor Network, ROHM MNR04 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Array_Convex_4x0603 +Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Array_Convex_4x0612 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf), Alternate KiCad Library +resistor array +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Array_Convex_4x1206 +Chip Resistor Network, ROHM MNR34 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Array_Convex_5x0603 +Chip Resistor Network, ROHM MNR15 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +10 +10 +PCM_Resistor_SMD_AKL +R_Array_Convex_5x1206 +Chip Resistor Network, ROHM MNR35 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +10 +10 +PCM_Resistor_SMD_AKL +R_Array_Convex_8x0602 +Chip Resistor Network, ROHM MNR18 (see mnr_g.pdf), Alternate KiCad Library +resistor array +0 +16 +16 +PCM_Resistor_SMD_AKL +R_Cat16-2 +SMT resistor net, Bourns CAT16 series, 2 way, Alternate KiCad Library +SMT resistor net Bourns CAT16 series 2 way +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Cat16-4 +SMT resistor net, Bourns CAT16 series, 4 way, Alternate KiCad Library +SMT resistor net Bourns CAT16 series 4 way +0 +8 +8 +PCM_Resistor_SMD_AKL +R_Cat16-8 +SMT resistor net, Bourns CAT16 series, 8 way, Alternate KiCad Library +SMT resistor net Bourns CAT16 series 8 way +0 +16 +16 +PCM_Resistor_SMD_AKL +R_MELF_MMB-0207 +Resistor, MELF, MMB-0207, http://www.vishay.com/docs/28713/melfprof.pdf, Alternate KiCad Library +MELF Resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_MicroMELF_MMU-0102 +Resistor, MicroMELF, MMU-0102, http://www.vishay.com/docs/28713/melfprof.pdf, Alternate KiCad Library +MicroMELF Resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_MiniMELF_MMA-0204 +Resistor, MiniMELF, MMA-0204, http://www.vishay.com/docs/28713/melfprof.pdf, Alternate KiCad Library +MiniMELF Resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_Shunt_Ohmite_LVK12 +4 contact shunt resistor, Alternate KiCad Library +shunt resistor 4 contacts +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Ohmite_LVK20 +4 contacts shunt resistor, https://www.ohmite.com/assets/docs/res_lvk.pdf, Alternate KiCad Library +4 contacts resistor smd +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Ohmite_LVK24 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf, Alternate KiCad Library +4 contacts resistor smd +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Ohmite_LVK25 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf, Alternate KiCad Library +4 contacts resistor smd +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Vishay_WSK2512_6332Metric_T1.19mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 1.19mm, 5 to 200 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf), Alternate KiCad Library +resistor shunt WSK2512 +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Vishay_WSK2512_6332Metric_T2.21mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.21mm, 1 to 4.9 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf), Alternate KiCad Library +resistor shunt WSK2512 +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Vishay_WSK2512_6332Metric_T2.66mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.66mm, 0.5 to 0.99 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf), Alternate KiCad Library +resistor shunt WSK2512 +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Vishay_WSKW0612 +https://www.vishay.com/docs/30332/wskw0612.pdf, Alternate KiCad Library +4-Terminal SMD Shunt +0 +4 +4 +PCM_Resistor_SMD_AKL +R_Shunt_Vishay_WSR2_WSR3 +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf, Alternate KiCad Library +SMD Shunt Resistor +0 +2 +2 +PCM_Resistor_SMD_AKL +R_Shunt_Vishay_WSR2_WSR3_KelvinConnection +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf, Alternate KiCad Library +SMD Shunt Resistor +0 +4 +2 +PCM_Resistor_THT_AKL +R_Array_SIP4 +4-pin Resistor SIP pack +R +0 +4 +4 +PCM_Resistor_THT_AKL +R_Array_SIP4_BigPads +4-pin Resistor SIP pack +R +0 +4 +4 +PCM_Resistor_THT_AKL +R_Array_SIP5 +5-pin Resistor SIP pack +R +0 +5 +5 +PCM_Resistor_THT_AKL +R_Array_SIP5_BigPads +5-pin Resistor SIP pack +R +0 +5 +5 +PCM_Resistor_THT_AKL +R_Array_SIP6 +6-pin Resistor SIP pack +R +0 +6 +6 +PCM_Resistor_THT_AKL +R_Array_SIP6_BigPads +6-pin Resistor SIP pack +R +0 +6 +6 +PCM_Resistor_THT_AKL +R_Array_SIP7 +7-pin Resistor SIP pack +R +0 +7 +7 +PCM_Resistor_THT_AKL +R_Array_SIP7_BigPads +7-pin Resistor SIP pack +R +0 +7 +7 +PCM_Resistor_THT_AKL +R_Array_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +PCM_Resistor_THT_AKL +R_Array_SIP8_BigPads +8-pin Resistor SIP pack +R +0 +8 +8 +PCM_Resistor_THT_AKL +R_Array_SIP9 +9-pin Resistor SIP pack +R +0 +9 +9 +PCM_Resistor_THT_AKL +R_Array_SIP9_BigPads +9-pin Resistor SIP pack +R +0 +9 +9 +PCM_Resistor_THT_AKL +R_Array_SIP10 +10-pin Resistor SIP pack +R +0 +10 +10 +PCM_Resistor_THT_AKL +R_Array_SIP10_BigPads +10-pin Resistor SIP pack +R +0 +10 +10 +PCM_Resistor_THT_AKL +R_Array_SIP11 +11-pin Resistor SIP pack +R +0 +11 +11 +PCM_Resistor_THT_AKL +R_Array_SIP11_BigPads +11-pin Resistor SIP pack +R +0 +11 +11 +PCM_Resistor_THT_AKL +R_Array_SIP12 +12-pin Resistor SIP pack +R +0 +12 +12 +PCM_Resistor_THT_AKL +R_Array_SIP12_BigPads +12-pin Resistor SIP pack +R +0 +12 +12 +PCM_Resistor_THT_AKL +R_Array_SIP13 +13-pin Resistor SIP pack +R +0 +13 +13 +PCM_Resistor_THT_AKL +R_Array_SIP13_BigPads +13-pin Resistor SIP pack +R +0 +13 +13 +PCM_Resistor_THT_AKL +R_Array_SIP14 +14-pin Resistor SIP pack +R +0 +14 +14 +PCM_Resistor_THT_AKL +R_Array_SIP14_BigPads +14-pin Resistor SIP pack +R +0 +14 +14 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_AKL +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_AKL +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +PCM_Resistor_THT_AKL +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_AKL +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_AKL +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +PCM_Resistor_THT_AKL +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_AKL_Double +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_AKL_Double +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +PCM_Resistor_THT_AKL_Double +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_AKL_Double +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_AKL_Double +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +PCM_Resistor_THT_AKL_Double +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Array_SIP4 +4-pin Resistor SIP pack +R +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Array_SIP4_BigPads +4-pin Resistor SIP pack +R +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Array_SIP5 +5-pin Resistor SIP pack +R +0 +5 +5 +PCM_Resistor_THT_US_AKL +R_Array_SIP5_BigPads +5-pin Resistor SIP pack +R +0 +5 +5 +PCM_Resistor_THT_US_AKL +R_Array_SIP6 +6-pin Resistor SIP pack +R +0 +6 +6 +PCM_Resistor_THT_US_AKL +R_Array_SIP6_BigPads +6-pin Resistor SIP pack +R +0 +6 +6 +PCM_Resistor_THT_US_AKL +R_Array_SIP7 +7-pin Resistor SIP pack +R +0 +7 +7 +PCM_Resistor_THT_US_AKL +R_Array_SIP7_BigPads +7-pin Resistor SIP pack +R +0 +7 +7 +PCM_Resistor_THT_US_AKL +R_Array_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +PCM_Resistor_THT_US_AKL +R_Array_SIP8_BigPads +8-pin Resistor SIP pack +R +0 +8 +8 +PCM_Resistor_THT_US_AKL +R_Array_SIP9 +9-pin Resistor SIP pack +R +0 +9 +9 +PCM_Resistor_THT_US_AKL +R_Array_SIP9_BigPads +9-pin Resistor SIP pack +R +0 +9 +9 +PCM_Resistor_THT_US_AKL +R_Array_SIP10 +10-pin Resistor SIP pack +R +0 +10 +10 +PCM_Resistor_THT_US_AKL +R_Array_SIP10_BigPads +10-pin Resistor SIP pack +R +0 +10 +10 +PCM_Resistor_THT_US_AKL +R_Array_SIP11 +11-pin Resistor SIP pack +R +0 +11 +11 +PCM_Resistor_THT_US_AKL +R_Array_SIP11_BigPads +11-pin Resistor SIP pack +R +0 +11 +11 +PCM_Resistor_THT_US_AKL +R_Array_SIP12 +12-pin Resistor SIP pack +R +0 +12 +12 +PCM_Resistor_THT_US_AKL +R_Array_SIP12_BigPads +12-pin Resistor SIP pack +R +0 +12 +12 +PCM_Resistor_THT_US_AKL +R_Array_SIP13 +13-pin Resistor SIP pack +R +0 +13 +13 +PCM_Resistor_THT_US_AKL +R_Array_SIP13_BigPads +13-pin Resistor SIP pack +R +0 +13 +13 +PCM_Resistor_THT_US_AKL +R_Array_SIP14 +14-pin Resistor SIP pack +R +0 +14 +14 +PCM_Resistor_THT_US_AKL +R_Array_SIP14_BigPads +14-pin Resistor SIP pack +R +0 +14 +14 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_US_AKL +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_US_AKL_Double +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +PCM_Resistor_THT_US_AKL_Double +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +PCM_Resistor_THT_US_AKL_Double +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +PCM_SL_3Dmodels +Arduino_UNO_3D + + +0 +0 +0 +PCM_SL_3Dmodels +Raspberry_pi_pico_3D + + +0 +0 +0 +PCM_SL_Breakout_Boards +A4988_Breakout +A4988 Stepper Motor Driver Breakout Board +A4988 +0 +16 +16 +PCM_SL_Breakout_Boards +HC-05_Bluetooth_Module + + +0 +6 +6 +PCM_SL_Breakout_Boards +HC-06_Bluetooth_Module + + +0 +4 +4 +PCM_SL_Breakout_Boards +HC-SR04_Ultrasonic_Sensor + + +0 +4 +4 +PCM_SL_Breakout_Boards +HMC5883L_Breakout +HMC5883L Breakout +HMC5883L Breakout +0 +5 +5 +PCM_SL_Breakout_Boards +LCD-16X4 + + +0 +20 +16 +PCM_SL_Breakout_Boards +MPU6050_Breakout + + +0 +8 +8 +PCM_SL_Breakout_Boards +MPU9250_Breakout + + +0 +10 +10 +PCM_SL_Breakout_Boards +NRF24L01_Adapter__BreakOut + + +0 +8 +8 +PCM_SL_Breakout_Boards +PIR-Sensor + + +0 +3 +3 +PCM_SL_Connectors +PinHeader_1x01_P2.54mm_Vertical + + +0 +1 +1 +PCM_SL_Connectors +PinHeader_1x02_P2.54mm_Vertical + + +0 +2 +2 +PCM_SL_Connectors +PinHeader_1x03_P2.54mm_Vertical + + +0 +3 +3 +PCM_SL_Connectors +PinHeader_1x04_P2.54mm_Vertical + + +0 +4 +4 +PCM_SL_Connectors +PinHeader_1x05_P2.54mm_Vertical + + +0 +5 +5 +PCM_SL_Connectors +PinHeader_1x06_P2.54mm_Vertical + + +0 +6 +6 +PCM_SL_Connectors +PinHeader_1x07_P2.54mm_Vertical + + +0 +7 +7 +PCM_SL_Connectors +PinHeader_1x08_P2.54mm_Vertical + + +0 +8 +8 +PCM_SL_Connectors +PinHeader_1x09_P2.54mm_Vertical + + +0 +9 +9 +PCM_SL_Connectors +PinHeader_1x10_P2.54mm_Vertical + + +0 +10 +10 +PCM_SL_Connectors +PinHeader_1x11_P2.54mm_Vertical + + +0 +11 +11 +PCM_SL_Connectors +PinHeader_1x12_P2.54mm_Vertical + + +0 +12 +12 +PCM_SL_Connectors +PinHeader_1x13_P2.54mm_Vertical + + +0 +13 +13 +PCM_SL_Connectors +PinHeader_1x14_P2.54mm_Vertical + + +0 +14 +14 +PCM_SL_Connectors +PinHeader_1x15_P2.54mm_Vertical + + +0 +15 +15 +PCM_SL_Connectors +PinHeader_1x16_P2.54mm_Vertical + + +0 +16 +16 +PCM_SL_Connectors +PinHeader_1x17_P2.54mm_Vertical + + +0 +17 +17 +PCM_SL_Connectors +PinHeader_1x18_P2.54mm_Vertical + + +0 +18 +18 +PCM_SL_Connectors +PinHeader_1x19_P2.54mm_Vertical + + +0 +19 +19 +PCM_SL_Connectors +PinHeader_1x20_P2.54mm_Vertical + + +0 +20 +20 +PCM_SL_Connectors +PinHeader_2x03_P2.54mm_Vertical + + +0 +6 +6 +PCM_SL_Connectors +PinSocket_1x01_P2.54mm_Vertical + + +0 +1 +1 +PCM_SL_Connectors +PinSocket_1x02_P2.54mm_Vertical + + +0 +2 +2 +PCM_SL_Connectors +PinSocket_1x03_P2.54mm_Vertical + + +0 +3 +3 +PCM_SL_Connectors +PinSocket_1x04_P2.54mm_Vertical + + +0 +4 +4 +PCM_SL_Connectors +PinSocket_1x05_P2.54mm_Vertical + + +0 +5 +5 +PCM_SL_Connectors +PinSocket_1x06_P2.54mm_Vertical + + +0 +6 +6 +PCM_SL_Connectors +PinSocket_1x07_P2.54mm_Vertical + + +0 +7 +7 +PCM_SL_Connectors +PinSocket_1x08_P2.54mm_Vertical + + +0 +8 +8 +PCM_SL_Connectors +PinSocket_1x09_P2.54mm_Vertical + + +0 +9 +9 +PCM_SL_Connectors +PinSocket_1x10_P2.54mm_Vertical + + +0 +10 +10 +PCM_SL_Connectors +PinSocket_1x11_P2.54mm_Vertical + + +0 +11 +11 +PCM_SL_Connectors +PinSocket_1x12_P2.54mm_Vertical + + +0 +12 +12 +PCM_SL_Connectors +PinSocket_1x13_P2.54mm_Vertical + + +0 +13 +13 +PCM_SL_Connectors +PinSocket_1x14_P2.54mm_Vertical + + +0 +14 +14 +PCM_SL_Connectors +PinSocket_1x15_P2.54mm_Vertical + + +0 +15 +15 +PCM_SL_Connectors +PinSocket_1x16_P2.54mm_Vertical + + +0 +16 +16 +PCM_SL_Connectors +PinSocket_1x17_P2.54mm_Vertical + + +0 +17 +17 +PCM_SL_Connectors +PinSocket_1x18_P2.54mm_Vertical + + +0 +18 +18 +PCM_SL_Connectors +PinSocket_1x19_P2.54mm_Vertical + + +0 +19 +19 +PCM_SL_Connectors +PinSocket_1x20_P2.54mm_Vertical + + +0 +20 +20 +PCM_SL_Connectors +ServoPort_01_Vertical + + +0 +3 +3 +PCM_SL_Connectors +ServoPort_02_Vertical + + +0 +6 +4 +PCM_SL_Connectors +ServoPort_03_Vertical + + +0 +9 +5 +PCM_SL_Connectors +ServoPort_04_Vertical + + +0 +12 +6 +PCM_SL_Connectors +ServoPort_05_Vertical + + +0 +15 +7 +PCM_SL_Connectors +ServoPort_06_Vertical + + +0 +18 +8 +PCM_SL_Connectors +ServoPort_07_Vertical + + +0 +21 +9 +PCM_SL_Connectors +ServoPort_08_Vertical + + +0 +24 +10 +PCM_SL_Development_Boards +Arduino_Pro_Mini(with_programming_pins) + + +0 +35 +32 +PCM_SL_Development_Boards +Arduino_pro_mini + + +0 +29 +28 +PCM_SL_Development_Boards +DOIT_ESP32_DEVKIT_30Pins + + +0 +30 +30 +PCM_SL_Development_Boards +DOIT_ESP32_DEVKIT_36Pins + + +0 +36 +36 +PCM_SL_Development_Boards +ESP-32S_Development Board + + +0 +38 +38 +PCM_SL_Development_Boards +ESP32-CAM + + +0 +16 +16 +PCM_SL_Development_Boards +Lolin_NodeMCU_ESP8266 + + +0 +30 +30 +PCM_SL_Development_Boards +STM32_Blue_Pill_DevBoard + + +0 +40 +40 +PCM_SL_Development_Boards +raspberry_pi_pico_SMD + + +0 +40 +40 +PCM_SL_Development_Boards +raspberry_pi_pico_THT + + +0 +40 +40 +PCM_SL_Devices +DIP-8_W7.62mm_IC_Socket + + +0 +8 +8 +PCM_SL_Devices +DIP-14_W7.62mm_Socket_IC + + +0 +14 +14 +PCM_SL_Devices +DIP-16_W7.62mm_IC_Socket + + +0 +16 +16 +PCM_SL_Devices +DIP-28_W7.62mm_Socket_IC + + +0 +28 +28 +PCM_SL_Devices +Glass_Fuse_Socket + + +0 +4 +2 +PCM_SL_Devices +Interlocking_Switch_6-pin_7x7mm + + +0 +6 +6 +PCM_SL_Devices +Mylar_Capacitor + + +0 +2 +2 +PCM_SL_Devices +Potentiometer_RM065 + + +0 +3 +3 +PCM_SL_Devices +Push_Button_W12mm + +Push Button 12mm +0 +4 +2 +PCM_SL_Devices +Slide_Switch_SPDT_P3mm_10x5x10mm + + +0 +3 +3 +PCM_SL_Devices +potentiometer_3362P +potentiometer_3362P StepUp generated footprint + +0 +3 +3 +PCM_SL_Footprints +Mylar_Capacitor + + +0 +2 +2 +PCM_SL_Footprints +Push_Button_W12mm + +Push Button 12mm +0 +4 +2 +PCM_SL_Footprints +potentiometer_3362P +potentiometer_3362P StepUp generated footprint + +0 +3 +3 +PCM_SL_Jumpers +JUP_P5.08mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P10mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P12mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P14mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P16mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P18mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P20mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P22mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P24mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P26mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P28mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P30mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P32mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P34mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P36mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P38mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P40mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P42mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P44mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P46mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P48mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P50mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P52mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P54mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P56mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P58mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P60mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P62mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P64mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P66mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P68mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P70mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P74mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P78mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P80mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P84mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P88mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P90mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P100mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P110mm + + +0 +2 +2 +PCM_SL_Jumpers +JUP_P120mm + + +0 +2 +2 +PCM_SL_Mechanical +MountingHole_3.2mm_Pad + + +0 +1 +1 +PCM_SL_Mechanical +MountingHole_3.2mm_With_Spacer_H10mm + + +0 +1 +1 +PCM_SiFli_MOD +SF32LB52‐MOD‐1 + + +0 +68 +68 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias +Alps/Matias keyswitch +Alps Matias Keyboard Keyswitch Switch Plate Cutout +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_1.00u +Alps/Matias keyswitch Keycap 1.00u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_1.25u +Alps/Matias keyswitch Keycap 1.25u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_1.50u +Alps/Matias keyswitch Keycap 1.50u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_1.75u +Alps/Matias keyswitch Keycap 1.75u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_2.00u +Alps/Matias keyswitch Keycap 2.00u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_2.25u +Alps/Matias keyswitch Keycap 2.25u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_2.50u +Alps/Matias keyswitch Keycap 2.50u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_2.75u +Alps/Matias keyswitch Keycap 2.75u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_3.00u +Alps/Matias keyswitch Keycap 3.00u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_4.00u +Alps/Matias keyswitch Keycap 4.00u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_4.50u +Alps/Matias keyswitch Keycap 4.50u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_5.50u +Alps/Matias keyswitch Keycap 5.50u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_6.00u +Alps/Matias keyswitch Keycap 6.00u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_6.25u +Alps/Matias keyswitch Keycap 6.25u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_6.50u +Alps/Matias keyswitch Keycap 6.50u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_7.00u +Alps/Matias keyswitch Keycap 7.00u +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Alps_Matias +SW_Alps_Matias_ISOEnter +Alps/Matias keyswitch Keycap ISOEnter +Alps Matias Keyboard Keyswitch Switch Plate Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB +Cherry MX keyswitch PCB Mount +Cherry MX Keyboard Keyswitch Switch PCB Cutout +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.00u +Cherry MX keyswitch PCB Mount Keycap 1.00u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.25u +Cherry MX keyswitch PCB Mount Keycap 1.25u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.25u_90deg +Cherry MX keyswitch PCB Mount Keycap 1.25u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.50u +Cherry MX keyswitch PCB Mount Keycap 1.50u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.50u_90deg +Cherry MX keyswitch PCB Mount Keycap 1.50u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.75u +Cherry MX keyswitch PCB Mount Keycap 1.75u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_1.75u_90deg +Cherry MX keyswitch PCB Mount Keycap 1.75u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.00u +Cherry MX keyswitch PCB Mount Keycap 2.00u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.00u_90deg +Cherry MX keyswitch PCB Mount Keycap 2.00u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.25u +Cherry MX keyswitch PCB Mount Keycap 2.25u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.25u_90deg +Cherry MX keyswitch PCB Mount Keycap 2.25u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.50u +Cherry MX keyswitch PCB Mount Keycap 2.50u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.50u_90deg +Cherry MX keyswitch PCB Mount Keycap 2.50u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.75u +Cherry MX keyswitch PCB Mount Keycap 2.75u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_2.75u_90deg +Cherry MX keyswitch PCB Mount Keycap 2.75u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_3.00u +Cherry MX keyswitch PCB Mount Keycap 3.00u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_3.00u_90deg +Cherry MX keyswitch PCB Mount Keycap 3.00u 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_4.00u +Cherry MX keyswitch PCB Mount Keycap 4.00u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_4.50u +Cherry MX keyswitch PCB Mount Keycap 4.50u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_5.50u +Cherry MX keyswitch PCB Mount Keycap 5.50u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_6.00u +Cherry MX keyswitch PCB Mount Keycap 6.00u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_6.00u_Offset +Cherry MX keyswitch PCB Mount Keycap 6.00u Offset +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_6.25u +Cherry MX keyswitch PCB Mount Keycap 6.25u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_6.50u +Cherry MX keyswitch PCB Mount Keycap 6.50u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_7.00u +Cherry MX keyswitch PCB Mount Keycap 7.00u +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_ISOEnter +Cherry MX keyswitch PCB Mount Keycap ISOEnter +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_ISOEnter_90deg +Cherry MX keyswitch PCB Mount Keycap ISOEnter 90deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_ISOEnter_180deg +Cherry MX keyswitch PCB Mount Keycap ISOEnter 180deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_PCB_ISOEnter_270deg +Cherry MX keyswitch PCB Mount Keycap ISOEnter 270deg +Cherry MX Keyboard Keyswitch Switch PCB Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate +Cherry MX keyswitch Plate Mount +Cherry MX Keyboard Keyswitch Switch Plate Cutout +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.00u +Cherry MX keyswitch Plate Mount Keycap 1.00u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.25u +Cherry MX keyswitch Plate Mount Keycap 1.25u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.25u_90deg +Cherry MX keyswitch Plate Mount Keycap 1.25u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.50u +Cherry MX keyswitch Plate Mount Keycap 1.50u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.50u_90deg +Cherry MX keyswitch Plate Mount Keycap 1.50u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.75u +Cherry MX keyswitch Plate Mount Keycap 1.75u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_1.75u_90deg +Cherry MX keyswitch Plate Mount Keycap 1.75u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.00u +Cherry MX keyswitch Plate Mount Keycap 2.00u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.00u_90deg +Cherry MX keyswitch Plate Mount Keycap 2.00u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.25u +Cherry MX keyswitch Plate Mount Keycap 2.25u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.25u_90deg +Cherry MX keyswitch Plate Mount Keycap 2.25u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.50u +Cherry MX keyswitch Plate Mount Keycap 2.50u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.50u_90deg +Cherry MX keyswitch Plate Mount Keycap 2.50u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.75u +Cherry MX keyswitch Plate Mount Keycap 2.75u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_2.75u_90deg +Cherry MX keyswitch Plate Mount Keycap 2.75u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_3.00u +Cherry MX keyswitch Plate Mount Keycap 3.00u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_3.00u_90deg +Cherry MX keyswitch Plate Mount Keycap 3.00u 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_4.00u +Cherry MX keyswitch Plate Mount Keycap 4.00u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_4.50u +Cherry MX keyswitch Plate Mount Keycap 4.50u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_5.50u +Cherry MX keyswitch Plate Mount Keycap 5.50u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_6.00u +Cherry MX keyswitch Plate Mount Keycap 6.00u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_6.00u_Offset +Cherry MX keyswitch Plate Mount Keycap 6.00u Offset +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_6.25u +Cherry MX keyswitch Plate Mount Keycap 6.25u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_6.50u +Cherry MX keyswitch Plate Mount Keycap 6.50u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_7.00u +Cherry MX keyswitch Plate Mount Keycap 7.00u +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_ISOEnter +Cherry MX keyswitch Plate Mount Keycap ISOEnter +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_ISOEnter_90deg +Cherry MX keyswitch Plate Mount Keycap ISOEnter 90deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_ISOEnter_180deg +Cherry MX keyswitch Plate Mount Keycap ISOEnter 180deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Cherry_MX +SW_Cherry_MX_Plate_ISOEnter_270deg +Cherry MX keyswitch Plate Mount Keycap ISOEnter 270deg +Cherry MX Keyboard Keyswitch Switch Plate Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1 +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2 +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.25u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.50u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.75u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_1.75u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.00u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.25u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.50u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.75u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_2.75u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_3.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_3.00u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_4.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_4.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_5.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_6.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_6.00u_Offset +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_6.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_6.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_7.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_ISOEnter +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_ISOEnter_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_ISOEnter_180deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_ISOEnter_270deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.25u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.25u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.25u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.50u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.50u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.75u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.75u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_1.75u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 1.75u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.00u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.00u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.25u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.25u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.25u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.50u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.50u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.75u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.75u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_2.75u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 2.75u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_3.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 3.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_3.00u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 3.00u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_4.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 4.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_4.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 4.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_5.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 5.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_6.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 6.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_6.00u_Offset +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 6.00u Offset +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_6.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 6.25u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_6.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 6.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_7.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap 7.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_ISOEnter +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_ISOEnter_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_ISOEnter_180deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter 180deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1V2_Plated_ISOEnter_270deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Hotswap Plated Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter 270deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.25u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.25u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.50u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.75u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_1.75u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.00u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.25u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.25u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.50u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.75u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_2.75u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_3.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_3.00u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_4.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_4.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_5.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_6.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_6.00u_Offset +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_6.25u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_6.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_7.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_ISOEnter +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_ISOEnter_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_ISOEnter_180deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_ISOEnter_270deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.25u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.25u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.25u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.25u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.50u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.50u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.75u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.75u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_1.75u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 1.75u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.00u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.00u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.25u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.25u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.25u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.25u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.50u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.50u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.75u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.75u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_2.75u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 2.75u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_3.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 3.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_3.00u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 3.00u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_4.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 4.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_4.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 4.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_5.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 5.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_6.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 6.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_6.00u_Offset +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 6.00u Offset +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_6.25u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 6.25u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_6.50u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 6.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_7.00u +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap 7.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_ISOEnter +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap ISOEnter +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_ISOEnter_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap ISOEnter 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_ISOEnter_180deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap ISOEnter 180deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V1_Plated_ISOEnter_270deg +Kailh Choc keyswitch V1 CPG1350 V1 Hotswap Plated Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1350 V1 Hotswap Plated Cutout Keycap ISOEnter 270deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2 +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.25u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.25u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.50u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.75u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_1.75u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.00u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.25u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.25u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.50u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.75u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_2.75u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_3.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_3.00u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_4.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_4.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_5.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_6.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_6.00u_Offset +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_6.25u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_6.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_7.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_ISOEnter +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_ISOEnter_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_ISOEnter_180deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_ISOEnter_270deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.25u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.25u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.25u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.25u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.50u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.50u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.75u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.75u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_1.75u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 1.75u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.00u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.00u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.25u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.25u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.25u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.25u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.50u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.50u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.75u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.75u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_2.75u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 2.75u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_3.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 3.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_3.00u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 3.00u 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_4.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 4.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_4.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 4.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_5.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 5.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_6.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 6.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_6.00u_Offset +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 6.00u Offset +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_6.25u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 6.25u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_6.50u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 6.50u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_7.00u +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap 7.00u +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_ISOEnter +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_ISOEnter_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter 90deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_ISOEnter_180deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter 180deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_Choc_V2_Plated_ISOEnter_270deg +Kailh Choc keyswitch V2 CPG1353 V2 Hotswap Plated Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1353 V2 Hotswap Plated Cutout Keycap ISOEnter 270deg +0 +7 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX +Kailh keyswitch Hotswap Socket +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.00u +Kailh keyswitch Hotswap Socket Keycap 1.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.25u +Kailh keyswitch Hotswap Socket Keycap 1.25u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.25u_90deg +Kailh keyswitch Hotswap Socket Keycap 1.25u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.50u +Kailh keyswitch Hotswap Socket Keycap 1.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.50u_90deg +Kailh keyswitch Hotswap Socket Keycap 1.50u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.75u +Kailh keyswitch Hotswap Socket Keycap 1.75u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_1.75u_90deg +Kailh keyswitch Hotswap Socket Keycap 1.75u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.00u +Kailh keyswitch Hotswap Socket Keycap 2.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.00u_90deg +Kailh keyswitch Hotswap Socket Keycap 2.00u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.25u +Kailh keyswitch Hotswap Socket Keycap 2.25u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.25u_90deg +Kailh keyswitch Hotswap Socket Keycap 2.25u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.50u +Kailh keyswitch Hotswap Socket Keycap 2.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.50u_90deg +Kailh keyswitch Hotswap Socket Keycap 2.50u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.75u +Kailh keyswitch Hotswap Socket Keycap 2.75u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_2.75u_90deg +Kailh keyswitch Hotswap Socket Keycap 2.75u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_3.00u +Kailh keyswitch Hotswap Socket Keycap 3.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_3.00u_90deg +Kailh keyswitch Hotswap Socket Keycap 3.00u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_4.00u +Kailh keyswitch Hotswap Socket Keycap 4.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_4.50u +Kailh keyswitch Hotswap Socket Keycap 4.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_5.50u +Kailh keyswitch Hotswap Socket Keycap 5.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_6.00u +Kailh keyswitch Hotswap Socket Keycap 6.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_6.00u_Offset +Kailh keyswitch Hotswap Socket Keycap 6.00u Offset +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_6.25u +Kailh keyswitch Hotswap Socket Keycap 6.25u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_6.50u +Kailh keyswitch Hotswap Socket Keycap 6.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_7.00u +Kailh keyswitch Hotswap Socket Keycap 7.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_ISOEnter +Kailh keyswitch Hotswap Socket Keycap ISOEnter +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_ISOEnter_90deg +Kailh keyswitch Hotswap Socket Keycap ISOEnter 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_ISOEnter_180deg +Kailh keyswitch Hotswap Socket Keycap ISOEnter 180deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_ISOEnter_270deg +Kailh keyswitch Hotswap Socket Keycap ISOEnter 270deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Relief Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated +Kailh keyswitch Hotswap Socket plated holes +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.00u +Kailh keyswitch Hotswap Socket plated holes Keycap 1.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.25u +Kailh keyswitch Hotswap Socket plated holes Keycap 1.25u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.25u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.25u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 1.25u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.25u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.50u +Kailh keyswitch Hotswap Socket plated holes Keycap 1.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.50u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 1.50u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.50u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.75u +Kailh keyswitch Hotswap Socket plated holes Keycap 1.75u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.75u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_1.75u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 1.75u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 1.75u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.00u +Kailh keyswitch Hotswap Socket plated holes Keycap 2.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.00u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 2.00u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.00u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.25u +Kailh keyswitch Hotswap Socket plated holes Keycap 2.25u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.25u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.25u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 2.25u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.25u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.50u +Kailh keyswitch Hotswap Socket plated holes Keycap 2.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.50u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 2.50u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.50u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.75u +Kailh keyswitch Hotswap Socket plated holes Keycap 2.75u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.75u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_2.75u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 2.75u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 2.75u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_3.00u +Kailh keyswitch Hotswap Socket plated holes Keycap 3.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 3.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_3.00u_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap 3.00u 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 3.00u 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_4.00u +Kailh keyswitch Hotswap Socket plated holes Keycap 4.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 4.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_4.50u +Kailh keyswitch Hotswap Socket plated holes Keycap 4.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 4.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_5.50u +Kailh keyswitch Hotswap Socket plated holes Keycap 5.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 5.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_6.00u +Kailh keyswitch Hotswap Socket plated holes Keycap 6.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 6.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_6.00u_Offset +Kailh keyswitch Hotswap Socket plated holes Keycap 6.00u Offset +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 6.00u Offset +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_6.25u +Kailh keyswitch Hotswap Socket plated holes Keycap 6.25u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 6.25u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_6.50u +Kailh keyswitch Hotswap Socket plated holes Keycap 6.50u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 6.50u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_7.00u +Kailh keyswitch Hotswap Socket plated holes Keycap 7.00u +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap 7.00u +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_ISOEnter +Kailh keyswitch Hotswap Socket plated holes Keycap ISOEnter +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap ISOEnter +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_ISOEnter_90deg +Kailh keyswitch Hotswap Socket plated holes Keycap ISOEnter 90deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap ISOEnter 90deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_ISOEnter_180deg +Kailh keyswitch Hotswap Socket plated holes Keycap ISOEnter 180deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap ISOEnter 180deg +0 +6 +2 +PCM_Switch_Keyboard_Hotswap_Kailh +SW_Hotswap_Kailh_MX_Plated_ISOEnter_270deg +Kailh keyswitch Hotswap Socket plated holes Keycap ISOEnter 270deg +Kailh Keyboard Keyswitch Switch Hotswap Socket Plated Relief Cutout Keycap ISOEnter 270deg +0 +6 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps +Cherry MX / Alps keyswitch hybrid +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_1.00u +Cherry MX / Alps keyswitch hybrid Keycap 1.00u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 1.00u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_1.25u +Cherry MX / Alps keyswitch hybrid Keycap 1.25u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 1.25u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_1.50u +Cherry MX / Alps keyswitch hybrid Keycap 1.50u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 1.50u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_1.75u +Cherry MX / Alps keyswitch hybrid Keycap 1.75u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 1.75u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_2.00u +Cherry MX / Alps keyswitch hybrid Keycap 2.00u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 2.00u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_2.25u +Cherry MX / Alps keyswitch hybrid Keycap 2.25u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 2.25u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_2.50u +Cherry MX / Alps keyswitch hybrid Keycap 2.50u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 2.50u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_2.75u +Cherry MX / Alps keyswitch hybrid Keycap 2.75u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 2.75u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_3.00u +Cherry MX / Alps keyswitch hybrid Keycap 3.00u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 3.00u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_4.00u +Cherry MX / Alps keyswitch hybrid Keycap 4.00u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 4.00u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_4.50u +Cherry MX / Alps keyswitch hybrid Keycap 4.50u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 4.50u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_5.50u +Cherry MX / Alps keyswitch hybrid Keycap 5.50u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 5.50u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_6.00u +Cherry MX / Alps keyswitch hybrid Keycap 6.00u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 6.00u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_6.25u +Cherry MX / Alps keyswitch hybrid Keycap 6.25u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 6.25u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_6.50u +Cherry MX / Alps keyswitch hybrid Keycap 6.50u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 6.50u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_7.00u +Cherry MX / Alps keyswitch hybrid Keycap 7.00u +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap 7.00u +0 +3 +2 +PCM_Switch_Keyboard_Hybrid +SW_Hybrid_Cherry_MX_Alps_ISOEnter +Cherry MX / Alps keyswitch hybrid Keycap ISOEnter +Cherry MX Alps Matias Hybrid Keyboard Keyswitch Switch PCB Keycap ISOEnter +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini +Kailh Choc Mini CPG1232 low profile keyswitch +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.00u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.00u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.25u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.25u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.25u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.25u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.50u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.50u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.50u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.50u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.75u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.75u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_1.75u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 1.75u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.00u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.00u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.00u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.00u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.25u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.25u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.25u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.25u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.50u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.50u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.50u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.50u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.75u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.75u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_2.75u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 2.75u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_3.00u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 3.00u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_3.00u_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 3.00u 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_4.00u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 4.00u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_4.50u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 4.50u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_5.50u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 5.50u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_6.00u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 6.00u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_6.00u_Offset +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 6.00u Offset +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_6.25u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 6.25u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_6.50u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 6.50u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_7.00u +Kailh Choc Mini CPG1232 low profile keyswitch Keycap 7.00u +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_ISOEnter +Kailh Choc Mini CPG1232 low profile keyswitch Keycap ISOEnter +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_ISOEnter_90deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap ISOEnter 90deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_ISOEnter_180deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap ISOEnter 180deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_Mini_ISOEnter_270deg +Kailh Choc Mini CPG1232 low profile keyswitch Keycap ISOEnter 270deg +Kailh Choc Mini CPG1232 Keyboard Low Profile Keyswitch Switch Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1 +Kailh Choc keyswitch V1 CPG1350 V1 +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2 +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.25u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.25u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.25u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.50u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.50u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.75u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.75u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_1.75u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 1.75u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.00u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.00u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.25u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.25u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.25u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.50u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.50u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.75u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.75u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_2.75u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 2.75u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_3.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 3.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_3.00u_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 3.00u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_4.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 4.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_4.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 4.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_5.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 5.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_6.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 6.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_6.00u_Offset +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 6.00u Offset +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_6.25u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 6.25u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_6.50u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 6.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_7.00u +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap 7.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_ISOEnter +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap ISOEnter +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_ISOEnter_90deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap ISOEnter 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_ISOEnter_180deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap ISOEnter 180deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1V2_ISOEnter_270deg +Kailh Choc keyswitch V1V2 CPG1350 V1 CPG1353 V2 Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1350 V1 CPG1353 V2 Cutout Keycap ISOEnter 270deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.00u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.25u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.25u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.50u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.50u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.75u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_1.75u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.00u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.00u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.25u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.25u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.50u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.50u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.75u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_2.75u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_3.00u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_3.00u_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_4.00u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_4.50u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_5.50u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_6.00u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_6.00u_Offset +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_6.25u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_6.50u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_7.00u +Kailh Choc keyswitch V1 CPG1350 V1 Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_ISOEnter +Kailh Choc keyswitch V1 CPG1350 V1 Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_ISOEnter_90deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_ISOEnter_180deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V1_ISOEnter_270deg +Kailh Choc keyswitch V1 CPG1350 V1 Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1350 V1 Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2 +Kailh Choc keyswitch V2 CPG1353 V2 +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.00u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.25u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.25u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.25u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.25u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.25u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.50u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.50u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.50u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.50u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.75u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.75u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.75u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_1.75u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 1.75u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 1.75u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.00u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.00u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.00u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.00u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.25u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.25u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.25u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.25u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.25u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.50u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.50u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.50u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.50u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.75u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.75u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.75u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_2.75u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 2.75u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 2.75u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_3.00u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 3.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 3.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_3.00u_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 3.00u 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 3.00u 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_4.00u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 4.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 4.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_4.50u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 4.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 4.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_5.50u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 5.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 5.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_6.00u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 6.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 6.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_6.00u_Offset +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 6.00u Offset +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 6.00u Offset +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_6.25u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 6.25u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 6.25u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_6.50u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 6.50u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 6.50u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_7.00u +Kailh Choc keyswitch V2 CPG1353 V2 Keycap 7.00u +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap 7.00u +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_ISOEnter +Kailh Choc keyswitch V2 CPG1353 V2 Keycap ISOEnter +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap ISOEnter +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_ISOEnter_90deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap ISOEnter 90deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap ISOEnter 90deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_ISOEnter_180deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap ISOEnter 180deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap ISOEnter 180deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_Choc_V2_ISOEnter_270deg +Kailh Choc keyswitch V2 CPG1353 V2 Keycap ISOEnter 270deg +Kailh Choc Keyswitch Switch CPG1353 V2 Cutout Keycap ISOEnter 270deg +0 +3 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH +Kailh KH CPG1280 keyswitch +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.00u +Kailh KH CPG1280 keyswitch Keycap 1.00u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.25u +Kailh KH CPG1280 keyswitch Keycap 1.25u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.25u_90deg +Kailh KH CPG1280 keyswitch Keycap 1.25u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.50u +Kailh KH CPG1280 keyswitch Keycap 1.50u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.50u_90deg +Kailh KH CPG1280 keyswitch Keycap 1.50u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.75u +Kailh KH CPG1280 keyswitch Keycap 1.75u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_1.75u_90deg +Kailh KH CPG1280 keyswitch Keycap 1.75u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 1.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.00u +Kailh KH CPG1280 keyswitch Keycap 2.00u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.00u_90deg +Kailh KH CPG1280 keyswitch Keycap 2.00u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.25u +Kailh KH CPG1280 keyswitch Keycap 2.25u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.25u_90deg +Kailh KH CPG1280 keyswitch Keycap 2.25u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.25u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.50u +Kailh KH CPG1280 keyswitch Keycap 2.50u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.50u_90deg +Kailh KH CPG1280 keyswitch Keycap 2.50u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.50u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.75u +Kailh KH CPG1280 keyswitch Keycap 2.75u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_2.75u_90deg +Kailh KH CPG1280 keyswitch Keycap 2.75u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 2.75u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_3.00u +Kailh KH CPG1280 keyswitch Keycap 3.00u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_3.00u_90deg +Kailh KH CPG1280 keyswitch Keycap 3.00u 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 3.00u 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_4.00u +Kailh KH CPG1280 keyswitch Keycap 4.00u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_4.50u +Kailh KH CPG1280 keyswitch Keycap 4.50u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_5.50u +Kailh KH CPG1280 keyswitch Keycap 5.50u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_6.00u +Kailh KH CPG1280 keyswitch Keycap 6.00u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_6.00u_Offset +Kailh KH CPG1280 keyswitch Keycap 6.00u Offset +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 6.00u Offset +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_6.25u +Kailh KH CPG1280 keyswitch Keycap 6.25u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_6.50u +Kailh KH CPG1280 keyswitch Keycap 6.50u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_7.00u +Kailh KH CPG1280 keyswitch Keycap 7.00u +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_ISOEnter +Kailh KH CPG1280 keyswitch Keycap ISOEnter +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap ISOEnter +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_ISOEnter_90deg +Kailh KH CPG1280 keyswitch Keycap ISOEnter 90deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap ISOEnter 90deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_ISOEnter_180deg +Kailh KH CPG1280 keyswitch Keycap ISOEnter 180deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap ISOEnter 180deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_KH_ISOEnter_270deg +Kailh KH CPG1280 keyswitch Keycap ISOEnter 270deg +Kailh KH CPG1280 Keyboard Keyswitch Switch Cutout Keycap ISOEnter 270deg +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB +Kailh KH CPG1425 low profile notebook keyswitch +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_1.00u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 1.00u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 1.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_1.25u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 1.25u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 1.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_1.50u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 1.50u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 1.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_1.75u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 1.75u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 1.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_2.00u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 2.00u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 2.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_2.25u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 2.25u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 2.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_2.50u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 2.50u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 2.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_2.75u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 2.75u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 2.75u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_3.00u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 3.00u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 3.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_4.00u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 4.00u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 4.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_4.50u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 4.50u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 4.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_5.50u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 5.50u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 5.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_6.00u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 6.00u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 6.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_6.25u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 6.25u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 6.25u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_6.50u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 6.50u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 6.50u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_7.00u +Kailh KH CPG1425 low profile notebook keyswitch Keycap 7.00u +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap 7.00u +0 +2 +2 +PCM_Switch_Keyboard_Kailh +SW_Kailh_NB_ISOEnter +Kailh KH CPG1425 low profile notebook keyswitch Keycap ISOEnter +Kailh KH CPG1425 Keyboard Low Profile Notebook Keyswitch Switch Cutout Keycap ISOEnter +0 +2 +2 +PCM_arduino-library +Arduino_101_Shield +https://docs.arduino.cc/retired/boards/arduino-101-619 + +0 +38 +38 +PCM_arduino-library +Arduino_Due_Shield +https://docs.arduino.cc/hardware/due + +0 +92 +91 +PCM_arduino-library +Arduino_Giga_R1_WiFi_Shield +https://docs.arduino.cc/hardware/giga-r1-wifi + +0 +92 +91 +PCM_arduino-library +Arduino_Leonardo_Shield +https://docs.arduino.cc/hardware/leonardo + +0 +38 +37 +PCM_arduino-library +Arduino_M0_Pro_Shield +https://docs.arduino.cc/retired/boards/arduino-m0-pro + +0 +38 +37 +PCM_arduino-library +Arduino_MKR_1000_WiFi_Socket +https://docs.arduino.cc/hardware/mkr-1000-wifi + +0 +28 +28 +PCM_arduino-library +Arduino_MKR_FOX_1200_Socket +https://docs.arduino.cc/hardware/mkr-fox-1200 + +0 +28 +28 +PCM_arduino-library +Arduino_MKR_Vidor_4000_Socket +https://docs.arduino.cc/hardware/mkr-vidor-4000 + +0 +28 +28 +PCM_arduino-library +Arduino_MKR_WiFi_1010_Socket +https://docs.arduino.cc/hardware/mkr-wifi-1010 + +0 +28 +28 +PCM_arduino-library +Arduino_MKR_Zero_Socket +https://docs.arduino.cc/hardware/mkr-zero + +0 +28 +28 +PCM_arduino-library +Arduino_Mega2560_R3_Shield +https://docs.arduino.cc/hardware/mega-2560 + +0 +92 +91 +PCM_arduino-library +Arduino_Micro_Socket +https://docs.arduino.cc/hardware/micro + +0 +34 +32 +PCM_arduino-library +Arduino_Mini_Socket +https://docs.arduino.cc/retired/boards/arduino-mini-05 + +0 +35 +35 +PCM_arduino-library +Arduino_Mini_Socket_NoSPH +https://docs.arduino.cc/retired/boards/arduino-mini-05 + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_33_IoT_Socket +https://docs.arduino.cc/hardware/nano-33-iot + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_33_IoT_Tile +https://docs.arduino.cc/hardware/nano-33-iot + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_ESP32_Socket +https://docs.arduino.cc/hardware/nano-esp32 + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_ESP32_Tile +https://docs.arduino.cc/hardware/nano-esp32 + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_Every_Socket +https://docs.arduino.cc/hardware/nano-every + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_Every_Tile +https://docs.arduino.cc/hardware/nano-every + +0 +30 +30 +PCM_arduino-library +Arduino_Nano_Socket +https://docs.arduino.cc/hardware/nano + +0 +30 +30 +PCM_arduino-library +Arduino_Nicla_Vision_Socket +https://docs.arduino.cc/hardware/nicla-vision + +0 +19 +18 +PCM_arduino-library +Arduino_Nicla_Vision_Tile +https://docs.arduino.cc/hardware/nicla-vision + +0 +19 +18 +PCM_arduino-library +Arduino_Nicla_Voice_Socket +https://docs.arduino.cc/hardware/nicla-voice + +0 +19 +17 +PCM_arduino-library +Arduino_Nicla_Voice_Tile +https://docs.arduino.cc/hardware/nicla-voice + +0 +19 +17 +PCM_arduino-library +Arduino_Pro_Mini_Socket +https://docs.arduino.cc/retired/boards/arduino-pro-mini + +0 +34 +34 +PCM_arduino-library +Arduino_Pro_Mini_Socket_NoSPH +https://docs.arduino.cc/retired/boards/arduino-pro-mini + +0 +28 +28 +PCM_arduino-library +Arduino_Uno_R2_Shield +https://startingelectronics.org/articles/arduino/uno-r3-r2-differences/ + +0 +34 +34 +PCM_arduino-library +Arduino_Uno_R3_Shield +https://docs.arduino.cc/hardware/uno-rev3 + +0 +38 +37 +PCM_arduino-library +Arduino_Uno_R4_Minima_Shield +https://docs.arduino.cc/hardware/uno-r4-minima + +0 +38 +38 +PCM_arduino-library +Arduino_Uno_R4_WiFi_Shield +https://docs.arduino.cc/hardware/uno-r4-wifi + +0 +47 +46 +PCM_arduino-library +Arduino_Zero_Shield +https://docs.arduino.cc/hardware/zero + +0 +38 +38 +PCM_arduino-library +Clone_Mega2560_Pro_Socket +https://docs.arduino.cc/hardware/mega-2560 + +0 +86 +86 +PCM_arduino-library +Clone_Pro_Mini_Socket +https://www.addicore.com/Pro-Mini-p/ad249.htm + +0 +35 +35 +PCM_arduino-library +Clone_Pro_Mini_Socket_NoSPH +https://www.addicore.com/Pro-Mini-p/ad249.htm + +0 +29 +29 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_1wire +MeshAnchor_1W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 1 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +4 +4 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_2wire +MeshAnchor_2W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 2 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +8 +8 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_3wire +MeshAnchor_3W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 3 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +12 +12 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_4wire +MeshAnchor_4W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 4 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +16 +16 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_5wire +MeshAnchor_5W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 5 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +20 +20 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_6wire +MeshAnchor_6W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 6 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +24 +24 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_7wire +MeshAnchor_7W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 7 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +28 +28 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.100mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.100 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.120mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.120 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.150mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.150 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.200mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.200 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.250mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.250 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.300mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.300 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.350mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.350 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.400mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.400 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.500mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.500 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.600mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.600 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.700mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.700 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T0.800mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 0.800 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.000mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 1.000 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.200mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 1.200 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.500mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 1.500 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.100mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.100 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.120mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.120 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.150mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.150 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.200mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.200 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.300mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.300 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.400mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.400 mm clearance +net tie +0 +32 +32 +PCM_kimesh_anchors_8wire +MeshAnchor_8W_T1.800mm_S0.500mm +KiMesh mesh anchor footprint, 8 wires, 1.800 mm trace width, 0.500 mm clearance +net tie +0 +32 +32 +PCM_marbastlib-choc +LED_choc_1206R +Add-on for regular choc-footprints with MHT151RGBCT 1206 reverse mount LED +kailh choc 1206 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-choc +LED_choc_1206R-ROT +Add-on for regular choc-footprints with MHT151RGBCT 1206 reverse mount LED +kailh choc 1206 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-choc +LED_choc_6028R +Add-on for regular choc-footprints with 6028 reverse mount LED +kailh choc 6028 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-choc +LED_choc_6028R-ROT +Add-on for regular choc-footprints with 6028 reverse mount LED +kailh choc 6028 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-choc +SW_choc_v1_1.5u +Footprint for Kailh Choc style switches + +0 +2 +2 +PCM_marbastlib-choc +SW_choc_v1_1.25u +Footprint for Kailh Choc style switches + +0 +2 +2 +PCM_marbastlib-choc +SW_choc_v1_1.75u +Footprint for Kailh Choc style switches + +0 +2 +2 +PCM_marbastlib-choc +SW_choc_v1_1u +Footprint for Kailh Choc style switches + +0 +2 +2 +PCM_marbastlib-choc +SW_choc_v1_HS_CPG135001S30_1.5u +Hotswap footprint for Kailh Choc style switches + +0 +6 +2 +PCM_marbastlib-choc +SW_choc_v1_HS_CPG135001S30_1.25u +Hotswap footprint for Kailh Choc style switches + +0 +6 +2 +PCM_marbastlib-choc +SW_choc_v1_HS_CPG135001S30_1.75u +Hotswap footprint for Kailh Choc style switches + +0 +6 +2 +PCM_marbastlib-choc +SW_choc_v1_HS_CPG135001S30_1u +Hotswap footprint for Kailh Choc style switches + +0 +6 +2 +PCM_marbastlib-choc +SW_choc_v1_HS_CPG135001S30_2.25u +Hotswap footprint for Kailh Choc style switches + +0 +6 +2 +PCM_marbastlib-he +SW_MX_HE_0deg_1.5u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_0deg_1.25u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_0deg_1.75u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_0deg_1.75u_STP_1.5 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_0deg_1.75u_STP_1.25 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_0deg_1u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_90deg_1.5u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_90deg_1.25u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_90deg_1.75u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_90deg_1.75u_STP_1.5 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_90deg_1.75u_STP_1.25 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_90deg_1u +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_180deg_1.75u_STP_1.5 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_180deg_1.75u_STP_1.25 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_270deg_1.75u_STP_1.5 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-he +SW_MX_HE_270deg_1.75u_STP_1.25 +Footprint for Cherry MX style hall effect switches (Gateron Jade) and A110x/MT910xET/HAL9303SO pinout compatible sensors +cherry mx switch hall effect he +0 +4 +3 +PCM_marbastlib-hitek +SW_HiTek_1.5u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_1.25u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_1.75u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_1.75u_STP_1.5 +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_1.75u_STP_1.25 +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_1u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_2.25u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_2.75u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_2u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-hitek +SW_HiTek_7u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-mx +LED_MX_3mm +Add-on for regular MX-footprints with 3mm LED +cherry MX 3mm led backlight +0 +2 +2 +PCM_marbastlib-mx +LED_MX_3mm-ROT +Add-on for regular MX-footprints with 3mm LED +cherry MX 3mm led backlight +0 +2 +2 +PCM_marbastlib-mx +LED_MX_1206R +Add-on for regular MX-footprints with MHT151RGBCT 1206 reverse mount LED +cherry MX 1206 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-mx +LED_MX_1206R-ROT +Add-on for regular MX-footprints with MHT151RGBCT 1206 reverse mount LED +cherry MX 1206 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-mx +LED_MX_6028R +Add-on for regular MX-footprints with 6028 reverse mount LED +cherry MX 6028 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-mx +LED_MX_6028R-ROT +Add-on for regular MX-footprints with 6028 reverse mount LED +cherry MX 6028 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-mx +STAB_MX_2.25u +Footprint for Cherry Clip/Screw in type stabilizers, 2.25u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_2.75u +Footprint for Cherry Clip/Screw in type stabilizers, 2.75u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_2u +Footprint for Cherry Clip/Screw in type stabilizers, 2u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_3u +Footprint for Cherry Clip/Screw in type stabilizers, 3u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_4.5u +Footprint for Cherry Clip/Screw in type stabilizers, 4.5u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_4u +Footprint for Cherry Clip/Screw in type stabilizers, 4u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_5u +Footprint for Cherry Clip/Screw in type stabilizers, 5u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_6.25u +Footprint for Cherry Clip/Screw in type stabilizers, 6.25u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_6u +Footprint for Cherry Clip/Screw in type stabilizers, 6u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_7u +Footprint for Cherry Clip/Screw in type stabilizers, 7u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_8u +Footprint for Cherry Clip/Screw in type stabilizers, 10u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_9u +Footprint for Cherry Clip/Screw in type stabilizers, 10u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_10u +Footprint for Cherry Clip/Screw in type stabilizers, 10u + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_ISO +Footprint for Cherry Clip/Screw in type stabilizers, ISO Enter + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_ISO-ROT +Footprint for Cherry Clip/Screw in type stabilizers, ISO Enter + +0 +0 +0 +PCM_marbastlib-mx +STAB_MX_P_2.25u +Footprint for Cherry Clip/Screw in type stabilizers, 2.25u, plated + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_2.75u +Footprint for Cherry Clip/Screw in type stabilizers, 2.75u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_2u +Footprint for Cherry Clip/Screw in type stabilizers, 2u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_3u +Footprint for Cherry Clip/Screw in type stabilizers, 3u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_4.5u +Footprint for Cherry Clip/Screw in type stabilizers, 4.5u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_4u +Footprint for Cherry Clip/Screw in type stabilizers, 4u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_5u +Footprint for Cherry Clip/Screw in type stabilizers, 5u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_6.25u +Footprint for Cherry Clip/Screw in type stabilizers, 6.25u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_6u +Footprint for Cherry Clip/Screw in type stabilizers, 6u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_7u +Footprint for Cherry Clip/Screw in type stabilizers, 7u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_8u +Footprint for Cherry Clip/Screw in type stabilizers, 10u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_9u +Footprint for Cherry Clip/Screw in type stabilizers, 10u + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_10u +Footprint for Cherry Clip/Screw in type stabilizers, 10u + +0 +4 +0 +PCM_marbastlib-mx +STAB_MX_P_ISO +Footprint for Cherry Clip/Screw in type stabilizers, ISO Enter + +0 +2 +0 +PCM_marbastlib-mx +STAB_MX_P_ISO-ROT +Footprint for Cherry Clip/Screw in type stabilizers, ISO Enter + +0 +2 +0 +PCM_marbastlib-mx +SW_MX_1.5u +Footprint for Cherry MX style switches + +0 +2 +2 +PCM_marbastlib-mx +SW_MX_1.25u +Footprint for Cherry MX style switches + +0 +2 +2 +PCM_marbastlib-mx +SW_MX_1.75u +Footprint for Cherry MX style switches + +0 +2 +2 +PCM_marbastlib-mx +SW_MX_1.75u_STP_1.5 +Footprint for Cherry MX style switches + +0 +2 +2 +PCM_marbastlib-mx +SW_MX_1.75u_STP_1.25 +Footprint for Cherry MX style switches + +0 +2 +2 +PCM_marbastlib-mx +SW_MX_1u +Footprint for Cherry MX style switches +cherry mx switch +0 +2 +2 +PCM_marbastlib-mx +SW_MX_HS_CPG151101S11_1.5u +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-mx +SW_MX_HS_CPG151101S11_1.25u +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-mx +SW_MX_HS_CPG151101S11_1.75u +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-mx +SW_MX_HS_CPG151101S11_1.75u_STP_1.5 +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-mx +SW_MX_HS_CPG151101S11_1.75u_STP_1.25 +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-mx +SW_MX_HS_CPG151101S11_1u +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-mx +SW_MX_HS_S_CPG151101S11_1u +Footprint for Cherry MX style switches with Kailh hotswap socket + +0 +6 +2 +PCM_marbastlib-various +CON_FH33J-4S-0.5SH +Hirose FH33J FFC/FPC connector, FH33J-4S-0.5SH, 4 Pins per row (https://www.hirose.com/product/series/FH33#) +connector Hirose FH33J horizontal +0 +6 +5 +PCM_marbastlib-various +CON_FH33J-10S-0.5SH +Hirose FH33J FFC/FPC connector, FH33J-10S-0.5SH, 10 Pins per row (https://www.hirose.com/product/series/FH33#) +connector Hirose FH33J horizontal +0 +12 +11 +PCM_marbastlib-various +CON_FH33J-12S-0.5SH +Hirose FH33J FFC/FPC connector, FH33J-12S-0.5SH, 12 Pins per row (https://www.hirose.com/product/series/FH33#) +connector Hirose FH33J horizontal +0 +14 +13 +PCM_marbastlib-various +CON_HytePro_M411P_Plug_1x04-P2.20mm_Horizontal +HytePro M411P magnetic connector footprint (4 pin) Link: https://www.hyte.pro/product/m411p.html +HytePro magnetic connector +0 +4 +4 +PCM_marbastlib-various +CON_HytePro_M411P_Plug_1x04-P2.20mm_Horizontal_FlushMount +HytePro M411P magnetic connector footprint (4 pin) Link: https://www.hyte.pro/product/m411p.html +HytePro magnetic connector +0 +4 +4 +PCM_marbastlib-various +CON_HytePro_M411P_Receptacle_1x04-P2.20mm_Horizontal +HytePro M411P magnetic connector footprint (4 pin) Link: https://www.hyte.pro/product/m411p.html +HytePro magnetic connector +0 +4 +4 +PCM_marbastlib-various +CON_HytePro_M411P_Receptacle_1x04-P2.20mm_Horizontal_FlushMount +HytePro M411P magnetic connector footprint (4 pin) Link: https://www.hyte.pro/product/m411p.html +HytePro magnetic connector +0 +4 +4 +PCM_marbastlib-various +CON_JST_ACH_BM02B +JST ACH series connector, BM02B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +4 +3 +PCM_marbastlib-various +CON_TC2030_outlined +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC-NL.pdf +tag connect programming header pogo pins +0 +6 +6 +PCM_marbastlib-various +LED_1206R +rear-mount SMD MHT151RGBCT 1206 RGB LED +LED RGB 1206 rear mount reverse +0 +4 +4 +PCM_marbastlib-various +LED_6028R +rear-mount SMD 6028 RGB LED +LED RGB 6028 rear mount reverse +0 +4 +4 +PCM_marbastlib-various +LED_WS2812_2020 +2020 SMD adressable RGB LED with integrated controller +LED RGB NeoPixel +0 +4 +4 +PCM_marbastlib-various +L_Bourns_SRP6050CA_6.6x6.4mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf) +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +PCM_marbastlib-various +L_Bourns_SRP6060FA_6.6x6.4mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf) +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +PCM_marbastlib-various +L_Cenker_CKST353220 +Inductor, Cenker, CKCS3012, 3.0x3.0x1.3mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +PCM_marbastlib-various +Molex_Pico-EZmate_78171-0002_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0002 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf) +connector Molex Pico-EZmate side entry +0 +14 +3 +PCM_marbastlib-various +Molex_Pico-EZmate_78171-0003_1x03-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0003 (http://www.molex.com/pdm_docs/sd/781710003_sd.pdf) +connector Molex Pico-EZmate side entry +0 +15 +4 +PCM_marbastlib-various +Molex_Pico-EZmate_78171-0004_1x04-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0004 (http://www.molex.com/pdm_docs/sd/781710004_sd.pdf) +connector Molex Pico-EZmate side entry +0 +16 +5 +PCM_marbastlib-various +Molex_Pico-EZmate_78171-0005_1x05-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0005 (http://www.molex.com/pdm_docs/sd/781710005_sd.pdf) +connector Molex Pico-EZmate side entry +0 +17 +6 +PCM_marbastlib-various +Molex_Pico-EZmate_78171-5006_1x06-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-5006 (http://www.molex.com/pdm_docs/sd/781715006_sd.pdf) +connector Molex Pico-EZmate side entry +0 +18 +7 +PCM_marbastlib-various +Molex_Pico-EZmate_HC_208294-0020_1x02-1MP_P1.80mm_Vertical +Molex Pico-EZmate series connector, 208294-0020 (https://www.molex.com/en-us/products/part-detail/2082940020) +connector Molex Pico-EZmate side entry +0 +16 +3 +PCM_marbastlib-various +Molex_Pico-EZmate_HC_208294-0030_1x03-1MP_P1.80mm_Vertical +Molex Pico-EZmate series connector, 208294-0030 (https://www.molex.com/en-us/products/part-detail/2082940030) +connector Molex Pico-EZmate side entry +0 +17 +4 +PCM_marbastlib-various +Molex_Pico-EZmate_HC_208294-0040_1x04-1MP_P1.80mm_Vertical +Molex Pico-EZmate series connector, 208294-0030 (https://www.molex.com/en-us/products/part-detail/2082940040) +connector Molex Pico-EZmate side entry +0 +18 +5 +PCM_marbastlib-various +Molex_Pico-EZmate_HC_208294-0050_1x05-1MP_P1.80mm_Vertical +Molex Pico-EZmate series connector, 208294-0030 (https://www.molex.com/en-us/products/part-detail/2082940040) +connector Molex Pico-EZmate side entry +0 +19 +6 +PCM_marbastlib-various +Molex_Pico-EZmate_PLUS_212134-0002_1x02-1MP_P1.00mm_Vertical +Molex Pico-EZmate series connector, 212134-0002 (http://www.molex.com/pdm_docs/sd/2121340002_sd.pdf) +connector Molex Pico-EZmate side entry +0 +14 +3 +PCM_marbastlib-various +Molex_Pico-EZmate_PLUS_212134-0003_1x03-1MP_P1.00mm_Vertical +Molex Pico-EZmate series connector, 212134-0003 (http://www.molex.com/pdm_docs/sd/2121340003_sd.pdf) +connector Molex Pico-EZmate side entry +0 +15 +4 +PCM_marbastlib-various +Molex_Pico-EZmate_PLUS_212134-0004_1x04-1MP_P1.00mm_Vertical +Molex Pico-EZmate series connector, 212134-0004 (http://www.molex.com/pdm_docs/sd/2121340004_sd.pdf) +connector Molex Pico-EZmate side entry +0 +16 +5 +PCM_marbastlib-various +Molex_Pico-EZmate_PLUS_212134-0005_1x05-1MP_P1.00mm_Vertical +Molex Pico-EZmate series connector, 212134-0005 (http://www.molex.com/pdm_docs/sd/2121340005_sd.pdf) +connector Molex Pico-EZmate side entry +0 +17 +6 +PCM_marbastlib-various +Molex_Pico-EZmate_PLUS_212134-0006_1x06-1MP_P1.00mm_Vertical +Molex Pico-EZmate series connector, 212134-0006 (http://www.molex.com/pdm_docs/sd/2121340006_sd.pdf) +connector Molex Pico-EZmate side entry +0 +18 +7 +PCM_marbastlib-various +PDFN3.3x3.3-8L_2 + + +0 +10 +6 +PCM_marbastlib-various +PNT_RKJXU1210006 + + +0 +3 +1 +PCM_marbastlib-various +QFN-13_3x4mm_P0.5mm +21A, High-Efficiency, Fully Integrated, Synchronous, Boost Converter with Programmable Input Current Limit + +0 +13 +13 +PCM_marbastlib-various +QFN-22_MP2722_2.5x3.5mm_P0.4mm +QFN, 22pin, Monolithic Power MP2722 https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2722GRH/document_id/10035/ +MPS Monolithic Power QFN 22 battery charging buck boost dc-dc usb-c cc bc1.2 +0 +22 +22 +PCM_marbastlib-various +QFN-60_EP_7x7_Pitch0.4mm +QFN-60 package accroding to IS31FL3741A datasheets + +0 +86 +61 +PCM_marbastlib-various +ROT_Alps_EC11E-Switch +Alps rotary encoder, EC11E/EC11N with switch, vertical shaft +rotary encoder +0 +7 +6 +PCM_marbastlib-various +ROT_SKYLOONG_HS-Switch +SKYLOONG hotswap knob module with internal switch + +0 +4 +4 +PCM_marbastlib-various +SOT-23-6-routable +SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +6 +6 +PCM_marbastlib-various +SW_ESP3020 +ECE ESP3020 SMD slide switch +slide switch smd ece +0 +3 +3 +PCM_marbastlib-various +SW_MSK12C02-HB +12V 50mA SMD toggle switch, available at LCSC/JLCPCB (C431541) +switch toggle smd +0 +7 +4 +PCM_marbastlib-various +SW_SKHLLCA010 +alps SKHLLCA010 DIP pushbutton +alps tht dip pushbutton SPST +0 +4 +3 +PCM_marbastlib-various +SW_SPST_SKQG_WithStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html +SPST Button Switch +0 +4 +2 +PCM_marbastlib-various +SW_SSSS213100 +alps SKHLLCA010 DIP 1-pole, 2-position switch +alps dip tht SPDT +0 +3 +3 +PCM_marbastlib-various +SW_SSSS223900 +alps SKHLLCA010 DIP 2-pole, 3-position switch +alps tht dip DP3T +0 +8 +8 +PCM_marbastlib-various +SW_T1A2QR +12V 50mA SMD pushbutton, available at LCSC/JLCPCB (C100056) +SMD pushbutton +0 +4 +2 +PCM_marbastlib-various +SW_kailh_big_1u +Footprint for Kailh "Big Switch Series" style switches + +0 +2 +2 +PCM_marbastlib-various +SplitkbTentingPuck +https://splitkb.com/products/tenting-puck +split kb tenting puck mechanical mounting +0 +5 +1 +PCM_marbastlib-various +USB_C_Receptacle_HRO_TYPE-C-31-M-12 +USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf +usb usb-c 2.0 pd +0 +20 +17 +PCM_marbastlib-various +USB_C_Receptacle_HRO_TYPE-C-31-M-14 +USB Type-C receptacle for USB 2.0 and PD +usb usb-c 2.0 pd +0 +20 +17 +PCM_marbastlib-various +USB_C_Receptacle_HRO_TYPE-C-31-M-23 +USB Type-C receptacle for USB 2.0 and PD, https://en.krhro.com/Product-Details/719.html +usb usb-c 2.0 pd +0 +20 +17 +PCM_marbastlib-various +XUNPU_FPC-0.5AL-20PB_1x20-1MP_P0.5mm_Vertical +XUNPU FPC connector, 20 bottom-side contacts, 0.5mm pitch, SMT, https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2206301715_XUNPU-FPC-0-5AD-20PB_C3446061.pdf +XUNPU fpc FPC-0.5AL vertical +0 +22 +21 +PCM_marbastlib-various +XUNPU_FPC-05F-16PH20_1x16-1MP_P0.5mm_Horizontal +XUNPU FPC connector, 16 bottom-side contacts, 0.5mm pitch, SMT, https://datasheet.lcsc.com/lcsc/2109221030_XUNPU-FPC-05F-16PH20_C2856801.pdf +XUNPU fpc FPC-05F-16PH20 +0 +18 +17 +PCM_marbastlib-various +XUNPU_FPC-05F-20PH20_1x20-1MP_P0.5mm_Horizontal +XUNPU FPC connector, 20 bottom-side contacts, 0.5mm pitch, SMT, https://datasheet.lcsc.com/lcsc/2109221030_XUNPU-FPC-05F-16PH20_C2856801.pdf +XUNPU fpc FPC-05F-20PH20 +0 +22 +21 +PCM_marbastlib-various +XUNPU_FPC-05F-24PH20_1x24-1MP_P0.5mm_Horizontal +XUNPU FPC connector, 24 bottom-side contacts, 0.5mm pitch, SMT, https://datasheet.lcsc.com/lcsc/2109221030_XUNPU-FPC-05F-16PH20_C2856801.pdf +XUNPU fpc FPC-05F-24PH20 +0 +26 +25 +PCM_marbastlib-various +mousebites_1mm + + +0 +0 +0 +PCM_marbastlib-various +mousebites_2.5mm + + +0 +0 +0 +PCM_marbastlib-various +mousebites_2mm + + +0 +0 +0 +PCM_marbastlib-various +mousebites_5p5mm_easysnap +Mousebites designed to break easier on one side than the other, with hole to apply leverage +mousebites hex +0 +0 +0 +PCM_marbastlib-various +nRF52840_E73-2G4M08S1C +Module containing a nRF52840 and most passives and antenna +ebyte e73 2G4M08S1C nRF52840 bluetooth low energy +0 +43 +43 +PCM_marbastlib-various +nRF52840_E73-2G4M08S1C_simple +Module containing a nRF52840 and most passives and antenna +ebyte e73 2G4M08S1C nRF52840 bluetooth low energy +0 +28 +28 +PCM_marbastlib-various +nRF52840_holyiot_18010 +Module containing a nRF52840 and most passives and antenna +holyiot 18010 nRF52840 bluetooth low energy +0 +55 +55 +PCM_marbastlib-various +nRF52840_holyiot_18010_HS_simple +Module containing a nRF52840 and most passives and antenna, with only hand solderable pads +holyiot 18010 nRF52840 bluetooth low energy +0 +37 +37 +PCM_marbastlib-various +nRF52840_moko_mk08 +Module containing a nRF52840 and most passives and antenna +moko mk08a mk08b nRF52840 bluetooth low energy +0 +60 +58 +PCM_marbastlib-xp-alps +SW_Alps_1.5u +Footprint for Alps SKCx style switches +alps skcm skcl switch +0 +2 +2 +PCM_marbastlib-xp-alps +SW_Alps_1.25u +Footprint for Alps SKCx style switches +alps skcm skcl switch +0 +2 +2 +PCM_marbastlib-xp-alps +SW_Alps_1.75u +Footprint for Alps SKCx style switches +alps skcm skcl switch +0 +2 +2 +PCM_marbastlib-xp-alps +SW_Alps_1.75u_STP_1.5 +Footprint for Alps SKCx style switches +alps skcm skcl switch +0 +2 +2 +PCM_marbastlib-xp-alps +SW_Alps_1.75u_STP_1.25 +Footprint for Alps SKCx style switches +alps skcm skcl switch +0 +2 +2 +PCM_marbastlib-xp-alps +SW_Alps_1u +Footprint for Alps SKCx style switches +alps skcm skcl switch +0 +2 +2 +PCM_marbastlib-xp-alps +SW_Alps_MX_1.5u +Combo Footprint for Alps SKCx and Cherry MX style switches +cherry mx alps SKCM SKCL switch +0 +4 +2 +PCM_marbastlib-xp-alps +SW_Alps_MX_1.25u +Combo Footprint for Alps SKCx and Cherry MX style switches +cherry mx alps SKCM SKCL switch +0 +4 +2 +PCM_marbastlib-xp-alps +SW_Alps_MX_1.75u +Combo Footprint for Alps SKCx and Cherry MX style switches +cherry mx alps SKCM SKCL switch +0 +4 +2 +PCM_marbastlib-xp-alps +SW_Alps_MX_1.75u_STP_1.5 +Combo Footprint for Alps SKCx and Cherry MX style switches +cherry mx alps SKCM SKCL switch +0 +4 +2 +PCM_marbastlib-xp-alps +SW_Alps_MX_1.75u_STP_1.25 +Combo Footprint for Alps SKCx and Cherry MX style switches +cherry mx alps SKCM SKCL switch +0 +4 +2 +PCM_marbastlib-xp-alps +SW_Alps_MX_1u +Combo Footprint for Alps SKCx and Cherry MX style switches +cherry mx alps SKCM SKCL switch +0 +4 +2 +PCM_marbastlib-xp-choc +LED_choc_WS2812_2020 +Add-on for regular choc-footprints with WS2812_2020 +kailh choc WS2812 2020 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-choc +LED_choc_WS2812_2020-ROT +Add-on for regular choc-footprints with WS2812 2020 +kailh choc WS2812 2020 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-choc +PLATE_choc +Break-out tabs for switch and plate multi-purpose-PCBs (kailh choc footprints) +kailh choc pcb plate break +0 +0 +0 +PCM_marbastlib-xp-choc +STAB_choc_2u +Footprint for Kailh Choc style switches + +0 +0 +0 +PCM_marbastlib-xp-choc +STAB_choc_6.25u +Footprint for Kailh Choc style switches + +0 +0 +0 +PCM_marbastlib-xp-choc +SW_PG1316S +Footprint for Kailh PG1316S low profile switch +Kailh PG1316 Switch +0 +6 +3 +PCM_marbastlib-xp-choc +SW_choc_MxCombo_1u +Combined footprint for Kailh Choc and Cherry MX style switches + +0 +4 +2 +PCM_marbastlib-xp-choc +SW_choc_Reversible_1u +Reversible dootprint for Kailh Choc style switches + +0 +3 +2 +PCM_marbastlib-xp-choc +SW_choc_v1+v2_1.5u +Combined footprint for Kailh Choc v1 and v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v1+v2_1.25u +Combined footprint for Kailh Choc v1 and v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v1+v2_1.75u +Combined footprint for Kailh Choc v1 and v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v1+v2_1u +Combined footprint for Kailh Choc v1 and v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_1.5u +Footprint for Kailh Choc v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_1.25u +Footprint for Kailh Choc v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_1.75u +Footprint for Kailh Choc v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_1u +Footprint for Kailh Choc v2 style switches + +0 +3 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_HS_CPG135001S30_1.5u +Hotswap footprint for Kailh Choc v2 style switches + +0 +7 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_HS_CPG135001S30_1.25u +Hotswap footprint for Kailh Choc v2 style switches + +0 +7 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_HS_CPG135001S30_1.75u +Hotswap footprint for Kailh Choc v2 style switches + +0 +7 +3 +PCM_marbastlib-xp-choc +SW_choc_v2_HS_CPG135001S30_1u +Hotswap footprint for Kailh Choc v2 style switches + +0 +7 +3 +PCM_marbastlib-xp-gateron_lp +LED_KS33_1206R +Add-on for Gateron KS33 footprints with MHT151RGBCT 1206 reverse mount LED +Gateron KS33 1206 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-gateron_lp +LED_KS33_1206R-ROT +Add-on for Gateron KS33 footprints with MHT151RGBCT 1206 reverse mount LED +Gateron KS33 1206 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-gateron_lp +LED_KS33_6028R +Add-on for Gateron KS33 footprints with with 6028 reverse mount LED +Gateron KS33 6028 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-gateron_lp +LED_KS33_6028R-ROT +Add-on for Gateron KS33 footprints with with 6028 reverse mount LED +Gateron KS33 6028 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-gateron_lp +LED_KS33_WS2812_2020 +Add-on for Gateron KS33 footprints with WS2812-2020 reverse mount LED (handsolder only) +Gateron KS33 WS2812 2020 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-gateron_lp +LED_KS33_WS2812_2020-ROT +Add-on for Gateron KS33 footprints with WS2812-2020 reverse mount LED (handsolder only) +Gateron KS33 WS2812 2020 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-gateron_lp +SW_KS33_1.5u +Footprint for Gateron KS33 switches + +0 +2 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_1.25u +Footprint for Gateron KS33 switches + +0 +2 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_1.75u +Footprint for Gateron KS33 switches + +0 +2 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_1u +Footprint for Gateron KS33 switches + +0 +2 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_HS_KS-2P02B01-02_1.5u +Hotswap footprint for Gateron KS33 switches + +0 +6 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_HS_KS-2P02B01-02_1.25u +Hotswap footprint for Gateron KS33 switches + +0 +6 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_HS_KS-2P02B01-02_1.75u +Hotswap footprint for Gateron KS33 switches + +0 +6 +2 +PCM_marbastlib-xp-gateron_lp +SW_KS33_HS_KS-2P02B01-02_HS_1u +Hotswap footprint for Gateron KS33 switches + +0 +6 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_1.5u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_1.25u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_1.75u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_1.75u_STP_1.5 +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_1.75u_STP_1.25 +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_1u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_2.25u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_2.75u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_2u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-hitek +SW_HiTek_Mount_7u +Footprint for Hi-Tek Series 725 ("Space Invader") Switches +Hi-Tek hitek space invader switch keyboard 725 +0 +4 +2 +PCM_marbastlib-xp-mx +LED_MX_WS2812_2020 +Add-on for regular MX-footprints with WS2812_2020 +cherry MX WS2812 2020 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-mx +LED_MX_WS2812_2020-ROT +Add-on for regular MX-footprints with WS2812_2020 +cherry MX WS2812 2020 rearmount rear mount led rgb backlight +0 +4 +4 +PCM_marbastlib-xp-mx +PLATE_MX +Break-out tabs for switch and plate multi-purpose-PCBs cherry MX footprints) +cherry mx pcb plate break +0 +0 +0 +PCM_marbastlib-xp-mx +SW_MX_HS_KS-2P02B01-01_1.5u +Footprint for Cherry MX style switches with Gateron KS-2P02B01-01 hotswap socket + +0 +6 +2 +PCM_marbastlib-xp-mx +SW_MX_HS_KS-2P02B01-01_1.25u +Footprint for Cherry MX style switches with Gateron KS-2P02B01-01 hotswap socket + +0 +6 +2 +PCM_marbastlib-xp-mx +SW_MX_HS_KS-2P02B01-01_1.75u +Footprint for Cherry MX style switches with Gateron KS-2P02B01-01 hotswap socket + +0 +6 +2 +PCM_marbastlib-xp-mx +SW_MX_HS_KS-2P02B01-01_1.75u_STP_1.5 +Footprint for Cherry MX style switches with Gateron KS-2P02B01-01 hotswap socket + +0 +6 +2 +PCM_marbastlib-xp-mx +SW_MX_HS_KS-2P02B01-01_1.75u_STP_1.25 +Footprint for Cherry MX style switches with Gateron KS-2P02B01-01 hotswap socket + +0 +6 +2 +PCM_marbastlib-xp-mx +SW_MX_HS_KS-2P02B01-01_1u +Footprint for Cherry MX style switches with Gateron KS-2P02B01-01 hotswap socket + +0 +6 +2 +PCM_marbastlib-xp-mx +SW_MX_Reversible_1u +Reversible footprint for Cherry MX style switches +cherry mx switch +0 +4 +2 +PCM_marbastlib-xp-mx +SW_MX_ULP_1u +Footprint for Cherry MX Ultra Low Profile switches +Cherry MX ULP +0 +7 +3 +PCM_marbastlib-xp-mx +SW_MX_ULP_1u_handsolder +Footprint for Cherry MX Ultra Low Profile switches +Cherry MX ULP HS +0 +7 +3 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_1.5u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_1.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_1.75u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_1.75u_STP_1.5 + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_1.75u_STP_1.25 + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_1u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_2.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_2.75u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_2u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_3u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_6.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_6u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_7u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_8u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_9u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_10u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_ANSI-ISO-ENTER + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_ANSI-ISO-LSHIFT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_ISO + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_ISO-ROT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_SPLIT-BS + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_SPLIT-RSHIFT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-MP_MX_STP-CAPS + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_1.5u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_1.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_1.75u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_1.75u_STP_1.5 + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_1.75u_STP_1.25 + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_1u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_2.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_2.75u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_2u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_3u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_6.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_6u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_7u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_8u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_9u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_10u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_ANSI-ISO-ENTER + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_ANSI-ISO-SHIFT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_ISO + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_ISO-ROT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_SPLIT-BS + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_SPLIT-RSHIFT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate-M_MX_STP-CAPS + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_1.5u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_1.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_1.75u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_1.75u_STP_1.5 + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_1.75u_STP_1.25 + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_1u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_2.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_2.75u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_2u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_3u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_6.25u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_6u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_7u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_8u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_9u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_10u + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_ANSI-ISO-ENTER + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_ANSI-ISO-SHIFT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_ISO + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_ISO-ROT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_SPLIT-BS + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_SPLIT-RSHIFT + + +0 +0 +0 +PCM_marbastlib-xp-plate-mx +Plate_MX_STP-CAPS + + +0 +0 +0 +PCM_marbastlib-xp-promicroish +Elite-C_AC +Footprint for Elite-C controllers, castellated pads only + +0 +30 +30 +PCM_marbastlib-xp-promicroish +Elite-C_ACH +Footprint for Elite-C controllers, through hole and castellated pads + +0 +59 +30 +PCM_marbastlib-xp-promicroish +Elite-C_AH_Reversible +Footprint for Elite-C controllers, through hole pads only, USB pointing away from PCB + +0 +30 +30 +PCM_marbastlib-xp-promicroish +Elite-C_AH_USBdn +Footprint for Elite-C controllers, through hole pads only, USB facing PCB + +0 +30 +30 +PCM_marbastlib-xp-promicroish +Elite-C_AH_USBup +Footprint for Elite-C controllers, through hole pads only, USB pointing away from PCB + +0 +30 +30 +PCM_marbastlib-xp-promicroish +Elite-C_C +Footprint for Elite-C controllers (pro-micro-pins only), castellated pads only + +0 +25 +25 +PCM_marbastlib-xp-promicroish +Elite-C_CH +Footprint for Elite-C controllers (pro-micro-pins only), castellated and through hole pads + +0 +49 +25 +PCM_marbastlib-xp-promicroish +Helios_AC +Footprint for 0xCB Helios controllers, USB pointing away from PCB + +0 +34 +34 +PCM_marbastlib-xp-promicroish +Helios_ACH +Footprint for 0xCB Helios controllers, USB pointing away from PCB + +0 +65 +34 +PCM_marbastlib-xp-promicroish +Helios_AH_Reversible +Footprint for 0xCB Helios controllers, USB pointing away from PCB + +0 +34 +34 +PCM_marbastlib-xp-promicroish +Helios_AH_USBdn +Footprint for 0xCB Helios controllers, USB facing PCB + +0 +34 +34 +PCM_marbastlib-xp-promicroish +Helios_AH_USBup +Footprint for 0xCB Helios controllers, USB pointing away from PCB + +0 +34 +34 +PCM_marbastlib-xp-promicroish +Liatris_AH_Reversible +Footprint for Splitkb Liatris controllers, through hole pads only + +0 +29 +29 +PCM_marbastlib-xp-promicroish +Liatris_AH_USBdn +Footprint for Splitkb Liatris controllers, through hole pads only + +0 +29 +29 +PCM_marbastlib-xp-promicroish +Liatris_AH_USBup +Footprint for Splitkb Liatris controllers, through hole pads only + +0 +29 +29 +PCM_marbastlib-xp-promicroish +Liatris_H_USBdn +Footprint for Splitkb Liatris controllers (pro-micro-pins only), through hole pads only + +0 +24 +24 +PCM_marbastlib-xp-promicroish +Liatris_H_USBup +Footprint for Splitkb Liatris controllers (pro-micro-pins only), through hole pads only + +0 +24 +24 +PCM_marbastlib-xp-promicroish +Pluto_AH_Reversible +Footprint for 0xCB Pluto controllers, Reversible + +0 +33 +33 +PCM_marbastlib-xp-promicroish +Pluto_AH_USBdn +Footprint for 0xCB Pluto controllers, USB facing PCB + +0 +33 +33 +PCM_marbastlib-xp-promicroish +Pluto_AH_USBup +Footprint for 0xCB Pluto controllers, USB pointing away from PCB + +0 +33 +33 +PCM_marbastlib-xp-promicroish +ProMicro_Reversible +Footprint for Arduino Pro Micro and compatible boards, Reversible with 2 staggered footprints + +0 +48 +24 +PCM_marbastlib-xp-promicroish +ProMicro_Reversible_Single +Footprint for Arduino Pro Micro and compatible boards, Reversible with single footprint + +0 +24 +24 +PCM_marbastlib-xp-promicroish +ProMicro_USBdn +Footprint for Arduino Pro Micro and compatible boards, USB facing PCB + +0 +24 +24 +PCM_marbastlib-xp-promicroish +ProMicro_USBup +Footprint for Arduino Pro Micro and compatible boards, USB pointing away from PCB + +0 +24 +24 +PCM_marbastlib-xp-promicroish +RP2040-Matrix_AC +Footprint for Waveshare RP2040-Matrix controllers, castellated pads only + +0 +23 +23 +PCM_marbastlib-xp-promicroish +RP2040-Matrix_ACH +Footprint for Waveshare RP2040-Matrix controllers, through hole and castellated pads + +0 +46 +23 +PCM_marbastlib-xp-promicroish +RP2040-Matrix_AH +Footprint for Waveshare RP2040-Matrix controllers, through hole + +0 +23 +23 +PCM_marbastlib-xp-promicroish +SuperMini_nRF52840_AH_Reversible +Footprint for SuperMini nRF52840 (nRF52850 pro-micro compatible controller), Reversible + +0 +29 +29 +PCM_marbastlib-xp-promicroish +SuperMini_nRF52840_AH_USBdn +Footprint for SuperMini nRF52840 (nRF52850 pro-micro compatible controller), USB facing PCB + +0 +29 +29 +PCM_marbastlib-xp-promicroish +SuperMini_nRF52840_AH_USBup +Footprint for SuperMini nRF52840 (nRF52850 pro-micro compatible controller), USB pointing away from PCB + +0 +29 +29 +PCM_marbastlib-xp-promicroish +SuperMini_nRF52840_H_USBdn +Footprint for SuperMini nRF52840 (nRF52850 pro-micro compatible controller), pro-micro compatible pads only, USB facing PCB + +0 +24 +24 +PCM_marbastlib-xp-promicroish +SuperMini_nRF52840_H_USBup +Footprint for SuperMini nRF52840 (nRF52850 pro-micro compatible controller), pro-micro compatible pads only, USB pointing away from PCB + +0 +24 +24 +PCM_marbastlib-xp-promicroish +Xiao_nRF52840_ACH +Footprint for Seeduino Xiao nRF52840 controllers, through hole and castellated pads + +0 +40 +22 +PCM_marbastlib-xp-promicroish +Xiao_nRF52840_AC_Reflow +Footprint for Seeduino Xiao nRF52840 controllers, made for SMD reflow + +0 +22 +22 +PCM_marbastlib-xp-promicroish +Xiao_nRF52840_AH_Pogo +Footprint for Seeduino Xiao nRF52840 controllers, made for pin headers and pogo pins for the bottom pads + +0 +22 +22 +PCM_marbastlib-xp-promicroish +Xiao_rp2040_ACH +Footprint for Seeduino Xiao RP2040 controllers, through hole and castellated pads + +0 +36 +20 +PCM_marbastlib-xp-promicroish +Xiao_rp2040_AC_Reflow +Footprint for Seeduino Xiao RP2040 controllers, made for SMD reflow + +0 +20 +20 +PCM_marbastlib-xp-promicroish +Xiao_rp2040_AH_Pogo +Footprint for Seeduino Xiao RP2040 controllers, made for pin headers and pogo pins for the bottom pads + +0 +20 +20 +PCM_marbastlib-xp-promicroish +nice_nano_AH_Reversible +Footprint for nice!nano (nRF52850 pro-micro compatible controller), Reversible + +0 +29 +29 +PCM_marbastlib-xp-promicroish +nice_nano_AH_USBdn +Footprint for nice!nano (nRF52850 pro-micro compatible controller), USB facing PCB + +0 +29 +29 +PCM_marbastlib-xp-promicroish +nice_nano_AH_USBup +Footprint for nice!nano (nRF52850 pro-micro compatible controller), USB pointing away from PCB + +0 +29 +29 +PCM_marbastlib-xp-promicroish +nice_nano_H_USBdn +Footprint for nice!nano (nRF52850 pro-micro compatible controller), pro-micro compatible pads only, USB facing PCB + +0 +24 +24 +PCM_marbastlib-xp-promicroish +nice_nano_H_USBup +Footprint for nice!nano (nRF52850 pro-micro compatible controller), pro-micro compatible pads only, USB pointing away from PCB + +0 +24 +24 +PCM_marbastlib-xp-various +ANT_2.4_IFA_1 +Inverted F BLE antenna designed following cypress' guide: https://www.cypress.com/file/136236/download +PCB antenna IFA inverted F bluetooth 2.4 GHz +0 +51 +2 +PCM_marbastlib-xp-various +ANT_2.4_IFA_2 +Inverted F BLE antenna designed following cypress' guide: https://www.cypress.com/file/136236/download +PCB antenna IFA inverted F bluetooth 2.4 GHz +0 +51 +2 +PCM_marbastlib-xp-various +CON_MJ-4PP-9 +TRRS Jack +TRRS jack 3.5mm headphone connector +0 +4 +4 +PCM_marbastlib-xp-various +CON_MJ-4PP-9_Reversible +Reversible TRRS Jack +TRRS jack 3.5mm headphone connector +0 +8 +4 +PCM_marbastlib-xp-various +Diodes_UDFN2020-6_Type-F +U-DFN2020-6 (Type F) (https://www.diodes.com/assets/Package-Files/U-DFN2020-6-Type-F.pdf) +U-DFN2020-6 (Type F) +0 +8 +8 +PCM_marbastlib-xp-various +HC-PBB40C-10DP-0.4V-02 +10 pin Mezzanine style connector, multiple mating heights available + +0 +14 +11 +PCM_marbastlib-xp-various +HC-PBB40C-10DS-0.4V-2.0-02 +10 pin Mezzanine style connector, 2mm mating height +mezzanine +0 +10 +10 +PCM_marbastlib-xp-various +LED_WS2812_2020_rearmount +2020 SMD adressable RGB LED with integrated controller +LED RGB NeoPixel +0 +4 +4 +PCM_marbastlib-xp-various +LED_WS2812_4020 +2040 side-firing SMD adressable RGB LED with integrated controller +LED RGB NeoPixel +0 +4 +4 +PCM_marbastlib-xp-various +MAX77751 +3A 1S LiXx battery charging IC with USB (DP/DP + CC) current negotiation and power path +LiIon LiPo battery charger management usb power path switch-mode step-down buck +0 +24 +24 +PCM_marbastlib-xp-various +PDFN3.3x3.3_EP + + +0 +9 +9 +PCM_marbastlib-xp-various +PNT_psp1000 +Footprint for a PSP-1000 joystick +psp joystick analog +0 +6 +5 +PCM_marbastlib-xp-various +QFN-44_EP_5x5_Pitch0.4mm + + +0 +66 +45 +PCM_marbastlib-xp-various +STM32WB5MMG +Bluetooth capable ARM Microcontroller +stm32 arm wireless bluetooth low energy ble zigbee +0 +86 +86 +PCM_marbastlib-xp-various +nRF52840_holyiot_18010_HS +Module containing a nRF52840 and most passives and antenna +holyiot 18010 nRF52840 bluetooth low energy +0 +55 +55 +PCM_marbastlib-xp-various +nRF52840_holyiot_18010_HS_all +Module containing a nRF52840 and most passives and antenna, with a cutout for hand soldering of the bottom IO +holyiot 18010 nRF52840 bluetooth low energy +0 +55 +55 +PCM_marbastlib-xp-various +nRF52840_moko_mk08_HS +Module containing a nRF52840 and most passives and antenna +moko mk08a mk08b nRF52840 bluetooth low energy +0 +60 +58 +PCM_openinput +PXI-DIP-16 +Optical Gaming Navigation Chip +Optical Sensor Gaming Navigation Chip Tracking +0 +16 +16 +PCM_openinput +RotaryEncoder_Horizontal +Rotary Encoder +Rotary Encoder Gaming Mouse +0 +5 +4 +PCM_openinput +SW_Micro_Switch +Micro Switch +Ultra Subminiature Basic Micro Switch D2F +0 +3 +3 +Type-C.pretty-master +12401598E4#2A + + +0 +28 +28 +Type-C.pretty-master +HRO-TYPE-C-31-M-12 + + +0 +16 +13 +Type-C.pretty-master +HRO-TYPE-C-31-M-12-Assembly + + +0 +16 +13 +Type-C.pretty-master +HRO-TYPE-C-31-M-12-HandSoldering + + +0 +16 +13 +Type-C.pretty-master +HRO-TYPE-C-31-M-13 + + +0 +16 +13 +Type-C.pretty-master +USB_C_GCT_USB4085 + + +0 +20 +17 +Type-C.pretty-master +Wurth-632723300011 + + +0 +32 +27 +Type-C.pretty-master +Wurth-632723300011-HandSoldering + + +0 +30 +26 +Type-C.pretty-master +Wurth-632723300011-MaximumExtensionMount + + +0 +32 +27 +footprints +LQFP64-10x10mm + +STM32F446RET6 +0 +64 +64 diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-04_154852.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-04_154852.zip deleted file mode 100644 index 88470eab..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-04_154852.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-04_155900.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-04_155900.zip deleted file mode 100644 index e331a400..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-04_155900.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_222646.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_222646.zip deleted file mode 100644 index 0c3df072..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_222646.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_223652.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_223652.zip deleted file mode 100644 index dc10b9d2..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_223652.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_224824.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_224824.zip deleted file mode 100644 index 7c5638a5..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_224824.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_225922.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_225922.zip deleted file mode 100644 index aaa699c0..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_225922.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_231138.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_231138.zip deleted file mode 100644 index 5e778936..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-08_231138.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-09_200048.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-09_200048.zip deleted file mode 100644 index 3d1adf0e..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-09_200048.zip and /dev/null differ diff --git a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-09_201414.zip b/hardware/numpad/numpad/numpad-backups/numpad-2025-09-09_201414.zip deleted file mode 100644 index 51f2119d..00000000 Binary files a/hardware/numpad/numpad/numpad-backups/numpad-2025-09-09_201414.zip and /dev/null differ diff --git a/hardware/numpad/numpad/~numpad.kicad_sch.lck b/hardware/numpad/numpad/~numpad.kicad_sch.lck deleted file mode 100644 index cf7e3025..00000000 --- a/hardware/numpad/numpad/~numpad.kicad_sch.lck +++ /dev/null @@ -1 +0,0 @@ -{"hostname":"framework16","username":"ukim"} \ No newline at end of file