This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct IntConverter { | |
template <typename T> | |
static inline std::array<uint8_t, sizeof(T)> to_array(T integer, std::endian e) { | |
std::array<uint8_t, sizeof(T)> result{0}; | |
// this is a bit old and dirty maybe, but it will do | |
if (e == std::endian::little) { | |
for (uint32_t i = 0; i < sizeof(T); ++i) { | |
result[i] = static_cast<uint8_t>(integer >> (i * 8)); | |
} | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
namespace netlib::http { | |
using http_header_entry = std::pair<std::string, std::string>; | |
using http_headers = std::vector<http_header_entry>; | |
struct http_response { | |
http_headers headers; | |
uint32_t response_code; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I recently bought a KSGER T12 iron due to its good reviews. The PCB itself is already pretty good, but I did two things additionally. | |
#Adding a ground connection to the case | |
If using a connector with ground capabilities (which should be standard for metal cased and not double insulated devices such as this), the device grounds the tip for ESD safety. The case is not grounded though, so I recommend a small modification. | |
#Increase isolation distance between heatsink and trace | |
As title suggests, I cut away a small part of the heatsink for the mosfet, so there's a larger distance to the live trace. |