// This file is part of the 64k demo project. // It defines constants and interface for windowing functions. // Primary implementation is a 512-point Hamming window. #pragma once #define WINDOW_SIZE 512 void hamming_window_512(float *window);