Skip to content

Instantly share code, notes, and snippets.

View CarpeNecopinum's full-sized avatar

Christian Mattes CarpeNecopinum

View GitHub Profile
@ChipCE
ChipCE / readme.md
Last active May 2, 2024 08:38
Klipper bed mesh on print area only macro install guide

READ THIS FIRST

Adaptive bed mesh is merged into klipper master branch. You can use this feature without this custom macro. Official klipper adaptive bed mesh

Klipper mesh on print area only install guide

What this macro do

  • This macro will dynamically changing the bed mesh area based on the size of the parts will be printed. The fw will only probe on the area that the part will be printed (plus mesh_area_offset value)
@MasterQ32
MasterQ32 / event_loop.zig
Created October 25, 2020 19:39
Embedded Device Event Loop
pub fn main() !void {
SysTick.init(1_000);
EventLoop.init();
var serial_frame = async doSerialLoop();
var blinky_frame = async doBlinkyLoop();
EventLoop.run();
#include <optix.h>
#include <optix_stubs.h>
#include <optix_function_table_definition.h>
#include <cuda.h>
namespace Denoiser
{
static void CUDA_CHECK(CUresult result)
{