Compare commits

...

3 Commits

4 changed files with 6 additions and 3 deletions

View File

@ -33,6 +33,9 @@ static inline void kputc(char c)
while ((int32_t)(*tx) < 0);
*tx = c;
#endif
volatile uint32_t *term = (void *) 0x64003000; // Terminal (32 bit)
while ((int32_t)(*term) < 0);
*term = c;
}
extern void kputs(const char *);

View File

@ -12,7 +12,7 @@
#define PAYLOAD_SIZE (16 << 11)
#define F_CLK 50000000UL
#define F_CLK 60000000UL
static volatile uint32_t * const spi = (void *)(SPI_CTRL_ADDR);

View File

@ -21,7 +21,7 @@ class FreedomUML507Config extends Config(
new WithoutTLMonitors ++
new WithJtagDTM ++
new WithNMemoryChannels(1) ++
new WithNBigCores(1) ++
new WithNSmallLinuxCores(1) ++
new BaseConfig
)